html {
    position: relative;
    scroll-padding-top: 80px;
    overflow-x: hidden;
}

/* Skip navigation link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: #0d47a1;
    color: #fff;
    padding: 10px 20px;
    border-radius: 0 0 8px 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    z-index: 9999;
    transition: top 0.2s;
}
.skip-link:focus {
    top: 0;
}

/* Global focus ring */
:focus-visible {
    outline: 3px solid #42a5f5;
    outline-offset: 3px;
    border-radius: 3px;
}

html::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: radial-gradient(circle, rgba(13, 71, 161, 0.07) 1px, transparent 1px);
    background-size: 36px 36px;
    animation: dotsDrift 50s linear infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes dotsDrift {
    0%   { background-position: 0 0; }
    100% { background-position: 36px 36px; }
}

body {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    background: linear-gradient(-45deg, #f5f8ff, #edf2ff, #e8f0fe, #f0f7ff);
    background-size: 400% 400%;
    animation: gradientFlow 18s ease infinite;
    position: relative;
    overflow-x: hidden;
}

@keyframes gradientFlow {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

body::before,
body::after {
    content: '';
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

body::before {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(21, 101, 192, 0.12) 0%, transparent 70%);
    top: -250px;
    right: -200px;
    animation: floatOrb1 22s ease-in-out infinite;
}

body::after {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13, 71, 161, 0.10) 0%, transparent 70%);
    bottom: -150px;
    left: -180px;
    animation: floatOrb2 28s ease-in-out infinite;
}

@keyframes floatOrb1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%       { transform: translate(-60px, 120px) scale(1.1); }
    66%       { transform: translate(60px, -60px) scale(0.92); }
}

@keyframes floatOrb2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%       { transform: translate(90px, -70px) scale(1.12); }
    66%       { transform: translate(-50px, 90px) scale(0.95); }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    padding: 20px 0;
    transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

.navbar.nav-scrolled {
    background: rgba(10, 35, 100, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 10px 0;
    box-shadow: 0 4px 32px rgba(0,0,0,0.18);
}

/* Mobile: always show a solid navbar */
@media (max-width: 991px) {
    .navbar {
        background: rgba(10, 35, 100, 0.95);
        padding: 12px 0;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }
    .navbar.nav-scrolled {
        padding: 10px 0;
    }
    /* Expanded menu — no negative margin, stays inside container */
    .navbar-collapse.show,
    .navbar-collapse.collapsing {
        background: rgba(7, 22, 82, 0.98);
        border-radius: 0 0 10px 10px;
        padding: 8px 0 14px;
        margin-top: 8px;
    }
    .nav-link-fx, .nav-cta {
        padding: 10px 8px !important;
    }
    .nav-cta {
        display: inline-block;
        margin-top: 8px;
    }
}

.navbar-brand img {
    transition: opacity 0.3s;
}
.navbar-brand:hover img {
    opacity: 0.85;
}

.navbar-brand {
    color: white !important;
}

.navbar-toggler {
    border: 2px solid rgba(255, 255, 255, 0.7) !important;
    padding: 6px 10px;
    border-radius: 6px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(255,255,255,0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Animated underline nav links */
.nav-link-fx {
    color: #ffffff !important;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 6px 14px !important;
    position: relative;
    transition: color 0.25s;
    text-shadow: 0 1px 4px rgba(0,0,0,0.35);
}

.nav-link-fx::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 14px;
    right: 14px;
    height: 2px;
    background: #fff;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-link-fx:hover {
    color: #fff !important;
}

.nav-link-fx:hover::after,
.nav-link-fx.active::after {
    transform: scaleX(1);
}

/* Contact CTA pill */
.nav-cta {
    color: #fff !important;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 8px 22px !important;
    border: 1.5px solid rgba(255,255,255,0.55);
    border-radius: 50px;
    transition: background 0.25s, border-color 0.25s, transform 0.2s;
}

.nav-cta:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
    transform: translateY(-1px);
}

.btn-primary {
    background-color: #1565c0;
    border: none;
}

.btn-primary:hover {
    background-color: #0d47a1;
}

.section-title {
    color: #0d47a1;
    font-weight: bold;
}

.footer {
    background-color: #0d47a1;
    color: white;
    padding: 20px 0;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: #f8faff;
}

.about-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.about-image-col {
    position: relative;
}

.about-img-frame {
    position: relative;
    border-radius: 20px;
    overflow: visible;
}

.about-img-frame img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    box-shadow: 0 24px 64px rgba(13, 71, 161, 0.15);
}

.about-img-frame::before {
    content: '';
    position: absolute;
    inset: -14px -14px 14px 14px;
    border: 2px solid rgba(21, 101, 192, 0.2);
    border-radius: 24px;
    z-index: -1;
}

.about-badge {
    position: absolute;
    bottom: -28px;
    right: -28px;
    background: linear-gradient(135deg, #0d47a1, #1976d2);
    color: #fff;
    border-radius: 20px;
    padding: 26px 32px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(13, 71, 161, 0.45);
    min-width: 140px;
}

.about-badge-num {
    display: block;
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.about-badge-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.05em;
    line-height: 1.5;
}

.about-content-col {
    padding-right: 16px;
}

.about-overline {
    color: #1565c0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.about-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0d1b3e;
    line-height: 1.2;
    margin-bottom: 16px;
}

.about-lead {
    font-size: 1.05rem;
    font-weight: 500;
    color: #1565c0;
    margin-bottom: 16px;
}

.about-body {
    font-size: 0.93rem;
    color: #5a6a8a;
    line-height: 1.8;
    margin-bottom: 32px;
}

.about-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.about-pill {
    background: #fff;
    border: 1.5px solid #c5d8fb;
    color: #1565c0;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 7px 18px;
    border-radius: 50px;
}

@media (max-width: 992px) {
    .about-wrap { grid-template-columns: 1fr; gap: 48px; }
    .about-content-col { padding-right: 0; }
    .about-img-frame img { height: 340px; }
    .about-badge { right: 12px; bottom: -20px; padding: 18px 22px; min-width: 110px; }
    .about-badge-num { font-size: 2.4rem; }
    .about-img-frame::before { display: none; }
}

/* Services Section */
.svc-section {
    padding: 100px 0 90px;
    background: #fff;
}

.svc-header {
    text-align: center;
    margin-bottom: 64px;
}

.svc-overline {
    color: #1565c0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.svc-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #0d1b3e;
    line-height: 1.15;
    margin-bottom: 14px;
}

.svc-subtitle {
    color: #6b7a99;
    font-size: 1rem;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.svc-card {
    background: #f8faff;
    border-radius: 16px;
    padding: 36px 32px 28px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s;
    cursor: default;
}

.svc-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(21,101,192,0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}

.svc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(13, 71, 161, 0.13);
}

.svc-card:hover::before {
    opacity: 1;
}

.svc-icon-wrap {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e8f0fe, #c5d8fb);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: transform 0.3s;
}

.svc-card:hover .svc-icon-wrap {
    transform: scale(1.08);
}

.svc-icon-wrap img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(18%) sepia(100%) saturate(600%) hue-rotate(205deg) brightness(90%);
}

.svc-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0d1b3e;
    margin-bottom: 10px;
}

.svc-card-text {
    font-size: 0.875rem;
    color: #5a6a8a;
    line-height: 1.7;
    margin-bottom: 24px;
}

.svc-card-line {
    display: block;
    height: 2px;
    width: 36px;
    background: linear-gradient(90deg, #1565c0, #42a5f5);
    border-radius: 2px;
    transition: width 0.35s cubic-bezier(0.4,0,0.2,1);
}

.svc-card:hover .svc-card-line {
    width: 72px;
}

@media (max-width: 992px) {
    .svc-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
    .svc-grid { grid-template-columns: 1fr; }
    .svc-title { font-size: 1.8rem; }
}

ul {
    list-style-type: none;
}

/* EOR Explained Section */
#eor-explained {
    background: linear-gradient(135deg, #0d47a1 0%, #1565c0 100%);
    color: white;
}

.eor-label {
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
}

.eor-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    line-height: 1.25;
}

.eor-lead {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
}

.eor-body {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
}

.eor-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.eor-item {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    padding: 16px 18px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    transition: background 0.25s;
}

.eor-item:hover {
    background: rgba(255,255,255,0.14);
}

.eor-check {
    color: #90caf9;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

@media (max-width: 576px) {
    .eor-grid { grid-template-columns: 1fr; }
}

/* Why Bulgaria Section */
.whybg-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0 80px;
    clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
    margin: -30px 0;
    z-index: 1;
}

.whybg-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
}

.whybg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,35,100,0.93) 0%, rgba(13,71,161,0.87) 100%);
}

.whybg-inner {
    position: relative;
    z-index: 2;
}

.whybg-header {
    text-align: center;
    margin-bottom: 52px;
}

.whybg-overline {
    color: rgba(255,255,255,0.55);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.whybg-title {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 10px;
}

.whybg-subtitle {
    color: rgba(255,255,255,0.72);
    font-size: 1.1rem;
}

.whybg-stats {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 52px;
    border-top: 1px solid rgba(255,255,255,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding: 28px 0;
}

.whybg-stat {
    flex: 1;
    text-align: center;
    padding: 0 20px;
    border-right: 1px solid rgba(255,255,255,0.15);
}

.whybg-stat:last-child {
    border-right: none;
}

.whybg-stat-num {
    display: block;
    font-size: 2.6rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}

.whybg-stat-desc {
    display: block;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.04em;
    max-width: 120px;
    margin: 0 auto;
    line-height: 1.4;
}

.whybg-pills {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.whybg-pill {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 12px;
    padding: 20px 18px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    transition: background 0.25s;
}

.whybg-pill:hover {
    background: rgba(255,255,255,0.13);
}

.whybg-pill-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 2px;
}

.whybg-pill strong {
    display: block;
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.whybg-pill p {
    color: rgba(255,255,255,0.65);
    font-size: 0.8rem;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 992px) {
    .whybg-pills { grid-template-columns: repeat(2, 1fr); }
    .whybg-stats { flex-wrap: wrap; }
    .whybg-stat { flex: 0 0 50%; border-right: none; padding: 12px 0; }
}

@media (max-width: 576px) {
    .whybg-pills { grid-template-columns: 1fr; }
    .whybg-title { font-size: 2rem; }
    .whybg-stat-num { font-size: 2rem; }
}

/* Employment in Bulgaria Section */
.emp-section {
    background: #f8faff;
}

.emp-top {
    background: linear-gradient(135deg, #0d47a1 0%, #1976d2 100%);
    padding: 64px 0 80px;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.emp-overline {
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.emp-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 12px;
}

.emp-subtitle {
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
    margin-bottom: 0;
}

.emp-stats-row {
    display: flex;
    gap: 0;
    justify-content: flex-end;
}

.emp-stat {
    text-align: center;
    padding: 0 24px;
    border-left: 1px solid rgba(255,255,255,0.2);
}

.emp-stat:first-child {
    border-left: none;
}

.emp-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}

.emp-stat-label {
    display: block;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.4;
}

.emp-cards-wrap {
    margin-top: -40px;
    padding-bottom: 60px;
}

.emp-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.emp-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 28px 24px;
    box-shadow: 0 4px 24px rgba(13, 71, 161, 0.10);
    border-top: 3px solid #1565c0;
    transition: transform 0.25s, box-shadow 0.25s;
}

.emp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(13, 71, 161, 0.16);
}

.emp-card-num {
    font-size: 2.8rem;
    font-weight: 900;
    color: #e8f0fe;
    line-height: 1;
    margin-bottom: 12px;
    font-variant-numeric: tabular-nums;
}

.emp-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0d47a1;
    margin-bottom: 10px;
}

.emp-card-text {
    font-size: 0.875rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .emp-cards { grid-template-columns: repeat(2, 1fr); }
    .emp-stats-row { justify-content: flex-start; margin-top: 28px; }
}

@media (max-width: 576px) {
    .emp-cards { grid-template-columns: 1fr; }
    .emp-title { font-size: 1.8rem; }
    .emp-stats-row { flex-wrap: wrap; justify-content: flex-start; }
    .emp-stat { flex: 0 0 50%; border-left: none; padding: 8px 0; text-align: left; }
    .emp-stat-number { font-size: 1.5rem; }
}

/* Slide 3 redesign */
.slide3-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(7,20,75,0.75) 0%, rgba(13,71,161,0.60) 40%, rgba(0,0,0,0.25) 100%);
}

.slide3-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 0 8% 80px;
    z-index: 2;
}

.slide3-inner {
    max-width: 680px;
    border-left: 3px solid rgba(255,255,255,0.4);
    padding-left: 32px;
}

.slide3-overline {
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.slide3-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 18px;
}

.slide3-body {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 560px;
}

.slide3-stats {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 32px;
}

.slide3-stat {
    padding-right: 28px;
}

.slide3-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.25);
    margin-right: 28px;
    flex-shrink: 0;
}

.slide3-stat-num {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
}

.slide3-stat-label {
    display: block;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.slide3-cta {
    display: inline-block;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 13px 28px;
    border-radius: 50px;
    border: 1.5px solid rgba(255,255,255,0.55);
    text-decoration: none;
    transition: background 0.25s, border-color 0.25s, transform 0.2s;
}

.slide3-cta:hover {
    background: rgba(255,255,255,0.14);
    border-color: #fff;
    transform: translateY(-2px);
}

/* Slide 2 redesign */
.slide2-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(7,20,75,0.88) 0%, rgba(13,71,161,0.72) 45%, rgba(10,35,100,0.65) 100%);
}

.slide2-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 8% 40px;
    gap: 48px;
    z-index: 2;
}

.slide2-left {
    flex: 1;
    max-width: 480px;
}

.slide2-overline {
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.slide2-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}

.slide2-body {
    font-size: 0.97rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.75;
    margin-bottom: 32px;
}

.slide2-cta {
    display: inline-block;
    background: #fff;
    color: #0d47a1;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 13px 28px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(0,0,0,0.2);
    transition: background 0.25s, transform 0.2s;
}

.slide2-cta:hover {
    background: #e8f0fe;
    transform: translateY(-2px);
}

.slide2-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    flex-shrink: 0;
    width: 380px;
}

.slide2-service-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 10px;
    padding: 14px 16px;
    color: rgba(255,255,255,0.9);
    font-size: 0.82rem;
    font-weight: 500;
    backdrop-filter: blur(6px);
    transition: background 0.2s;
}

.slide2-service-card:hover {
    background: rgba(255,255,255,0.15);
}

.slide2-card-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #64b5f6;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .slide2-content { flex-direction: column; justify-content: center; padding: 80px 6% 20px; gap: 20px; }
    .slide2-right { width: 100%; grid-template-columns: 1fr 1fr; }
    .slide1-content { padding: 80px 6% 48px; }
    .slide1-actions { flex-direction: column; gap: 10px; }
    .slide1-btn-primary, .slide1-btn-ghost { text-align: center; }
    .slide3-content { padding: 0 6% 60px; }
    .slide3-stats { flex-wrap: wrap; gap: 12px; }
    .slide3-stat-divider { display: none; }
    .slide3-stat { padding-right: 0; }
}

@media (max-width: 480px) {
    .slide2-right { grid-template-columns: 1fr; }
}

/* Slide 1 redesign */
.slide1-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(7,20,75,0.82) 0%, rgba(13,71,161,0.55) 55%, rgba(0,0,0,0.15) 100%);
}

.slide1-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 8% 60px;
    max-width: 760px;
    z-index: 2;
}

.slide1-overline {
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 18px;
    animation: slideUp 0.8s ease both;
}

.slide1-title {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 22px;
    animation: slideUp 0.8s 0.1s ease both;
}

.slide1-body {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 36px;
    animation: slideUp 0.8s 0.2s ease both;
}

.slide1-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 36px;
    animation: slideUp 0.8s 0.3s ease both;
}

.slide1-btn-primary {
    background: #fff;
    color: #0d47a1;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}

.slide1-btn-primary:hover {
    background: #e8f0fe;
    transform: translateY(-2px);
}

.slide1-btn-ghost {
    color: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 14px 30px;
    border-radius: 50px;
    border: 1.5px solid rgba(255,255,255,0.5);
    text-decoration: none;
    transition: background 0.25s, border-color 0.25s, transform 0.2s;
}

.slide1-btn-ghost:hover {
    background: rgba(255,255,255,0.12);
    border-color: #fff;
    transform: translateY(-2px);
}

.slide1-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    animation: slideUp 0.8s 0.4s ease both;
}

.slide1-tags span {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.8);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 5px 14px;
    border-radius: 50px;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.carousel-caption{
    background-color: #373e3c91;
    padding: 20px 30px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    left: 10%;
    right: 10%;
    border-radius: 6px;
}

#mainSlider {
    height: 100vh;
    width: 100%;
}

#mainSlider .carousel-control-prev,
#mainSlider .carousel-control-next {
    z-index: 10;
}

#mainSlider .carousel-inner,
#mainSlider .carousel-item {
    height: 100%;
}

#mainSlider .carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

/* Promise Section */
.promise-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0;
    overflow: hidden;
}

.promise-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(7, 25, 78, 0.88) 0%, rgba(13, 71, 161, 0.78) 100%);
}

.promise-inner {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.promise-overline {
    color: rgba(255,255,255,0.55);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.promise-title {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 24px;
}

.promise-body {
    font-size: 1rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.85;
    margin-bottom: 36px;
    max-width: 600px;
}

.promise-cta {
    display: inline-block;
    background: #fff;
    color: #0d47a1;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}

.promise-cta:hover {
    background: #e8f0fe;
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(0,0,0,0.25);
}

@media (max-width: 768px) {
    .promise-title { font-size: 2rem; }
    .promise-section { background-attachment: scroll; }
}

/* Contact Section */
.contact-section {
    padding: 90px 0;
    background: #f8faff;
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 0;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(13, 71, 161, 0.12);
}

.contact-info {
    background: linear-gradient(160deg, #0d47a1 0%, #1976d2 100%);
    padding: 52px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-overline {
    color: rgba(255,255,255,0.55);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.contact-title {
    font-size: 1.7rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 18px;
}

.contact-desc {
    color: rgba(255,255,255,0.72);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 36px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
}

.contact-detail-icon {
    font-size: 1.1rem;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-form-wrap {
    padding: 52px 48px;
    background: #fff;
}

.contact-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.contact-field-row .contact-field {
    margin-bottom: 0;
}

.contact-field label {
    font-size: 0.78rem;
    font-weight: 600;
    color: #444;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.contact-field input,
.contact-field textarea {
    border: 1.5px solid #e0e7f4;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.92rem;
    font-family: inherit;
    color: #222;
    background: #f8faff;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
    border-color: #1565c0;
    box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.1);
    background: #fff;
}

.contact-btn {
    margin-top: 4px;
    background: linear-gradient(135deg, #1565c0 0%, #0d47a1 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px 32px;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
}

.contact-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.call-link {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
}

.form-success {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #f0faf4;
    border: 1.5px solid #4caf7d;
    border-radius: 10px;
    padding: 20px 24px;
    margin-bottom: 24px;
    animation: fadeInUp 0.4s ease both;
}

.form-success[hidden] {
    display: none;
}

.form-success-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #4caf7d;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.form-success strong {
    display: block;
    color: #1b5e3b;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.form-success p {
    color: #3a7a57;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.5;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
    .contact-wrap { grid-template-columns: 1fr; }
    .contact-info { padding: 40px 32px; }
    .contact-form-wrap { padding: 40px 32px; }
}

@media (max-width: 576px) {
    .contact-field-row { grid-template-columns: 1fr; }
    .contact-info { padding: 32px 20px; }
    .contact-form-wrap { padding: 32px 20px; }
    .promise-title { font-size: 1.8rem; }
    .whybg-section { clip-path: none; margin: 0; }
    .emp-top { clip-path: none; }
}
