* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: #1a1a1a;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}
.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
}
.logo strong { color: #ff8c00; }
.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}
.nav-menu a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}
.nav-menu a:hover { color: #ff8c00; }

/* Hero */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('hero-bg.jpg') center/cover;
    color: white;
    padding: 120px 0;
    text-align: center;
}
.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    margin: 10px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}
.btn-primary {
    background: #ff8c00;
    color: white;
}
.btn-primary:hover {
    background: #e67e00;
    transform: translateY(-2px);
}
.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}
.btn-secondary:hover {
    background: white;
    color: #1a1a1a;
}

/* Sections */
section {
    padding: 80px 0;
}
section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #f9b233;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}
.service-card:hover {
    transform: translateY(-5px);
}
.service-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* Why Choose */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}
.feature {
    background: white;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
}

/* Process */
.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.step {
    flex: 1;
    min-width: 150px;
    text-align: center;
}
.step span {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: #ff8c00;
    color: white;
    border-radius: 50%;
    line-height: 60px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Listing Page */
.listing-page {
    padding: 50px 0;
    min-height: 80vh;
}
.search-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.search-input-group {
    display: flex;
    gap: 10px;
}
.search-input-group input {
    flex: 1;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}
.search-input-group input:focus {
    border-color: #ff8c00;
    outline: none;
}
.search-input-group button {
    padding: 15px 30px;
    background: #ff8c00;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
}
.search-input-group button:hover {
    background: #e67e00;
}

/* Result Card */
.result-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}
.result-table {
    width: 100%;
    margin: 20px 0;
}
.result-table th, .result-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #eee;
}
.result-table th {
    background: #f9f9f9;
    width: 30%;
}
.download-buttons {
    display: flex;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
}
.btn-download, .btn-view {
    padding: 10px 20px;
    background: #1a1a1a;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    transition: background 0.3s;
}
.btn-download:hover, .btn-view:hover {
    background: #ff8c00;
}
.pdf-note, .password-hint {
    background: #fff3cd;
    padding: 15px;
    border-radius: 5px;
    border-left: 4px solid #ffc107;
    margin-top: 15px;
}

/* Records Grid */
.records-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.record-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}
.record-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}
.referral-badge {
    background: #ff8c00;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
}
.status-badge {
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
}
.status-publish, .status-complete {
    background: #d4edda;
    color: #155724;
}
.status-in_progress {
    background: #fff3cd;
    color: #856404;
}
.record-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    color: white;
    padding: 50px 0 20px;
    margin-top: 80px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}
.footer-col h3 {
    color: #ff8c00;
    margin-bottom: 15px;
}
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .nav-menu { display: none; }
    .search-input-group { flex-direction: column; }
    section { padding: 50px 0; }
    section h2 { font-size: 1.8rem; }
}




  :root {
    --brand-primary: #0f3d74;
    --brand-primary-rgb: 15, 61, 116;
    --brand-secondary: #f9b233;
    --brand-secondary-soft: #f7c86d;
    --brand-secondary-rgb: 249, 178, 51;
    --bg-dark: #0b1220;
    --bg-primary: #050912;
    --bg-overlay: rgba(7, 14, 32, 0.45);
    --text-primary: #f8f9fa;
    --text-soft: #cbd3dd;
    --text-soft-light: rgba(248, 249, 250, 0.88);
    --text-bright: rgba(255, 255, 255, 0.86);
    --text-bright-soft: rgba(255, 255, 255, 0.85);
    --text-strong: rgba(255, 255, 255, 0.82);
    --text-muted: rgba(255, 255, 255, 0.75);
    --text-muted-light: rgba(255, 255, 255, 0.68);
    --text-alt: rgba(255, 255, 255, 0.76);
    --text-faint: rgba(255, 255, 255, 0.65);
    --text-muted-alt: #d3d9e3;
    --white: #ffffff;
    --white-rgb: 255, 255, 255;
    --surface-xlight: rgba(var(--white-rgb), 0.03);
    --surface-light: rgba(var(--white-rgb), 0.04);
    --surface-soft: rgba(var(--white-rgb), 0.05);
    --surface-medium: rgba(var(--white-rgb), 0.06);
    --surface-strong: rgba(var(--white-rgb), 0.08);
    --surface-glow: rgba(var(--white-rgb), 0.12);
    --surface-border: rgba(var(--white-rgb), 0.08);
    --surface-border-strong: rgba(var(--white-rgb), 0.1);
    --surface-border-very-light: rgba(var(--white-rgb), 0.05);
    --brand-secondary-glow: rgba(var(--brand-secondary-rgb), 0.22);
    --brand-secondary-soft-15: rgba(var(--brand-secondary-rgb), 0.15);
    --brand-secondary-soft-18: rgba(var(--brand-secondary-rgb), 0.18);
    --brand-secondary-soft-12: rgba(var(--brand-secondary-rgb), 0.12);
    --brand-secondary-soft-14: rgba(var(--brand-secondary-rgb), 0.14);
    --brand-primary-soft: rgba(var(--brand-primary-rgb), 0.22);
    --shadow-soft: rgba(0, 0, 0, 0.18);
    --shadow-strong: rgba(0, 0, 0, 0.22);
    --brand-gradient: linear-gradient(135deg, var(--brand-secondary) 0%, var(--brand-secondary-soft) 100%);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

.top-header-bar {
    position: relative;
    z-index: 1050;
    transform: translateY(-120%);
    opacity: 0;
}

.top-header-bar.show {
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.75s ease, opacity 0.75s ease;
}

.top-header-bar .top-header-info {
    font-size: 0.9rem;
}

.top-header-bar .social-icon {
    color: var(--white);
    font-size: 1rem;
    transition: transform 0.35s ease, color 0.35s ease;
}

.top-header-bar .social-icon:hover {
    color: var(--brand-secondary);
    transform: rotate(18deg) scale(1.05);
}

.navbar {
    transition: background-color 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
    background: transparent;
    top: 40px;
    padding: 0 !important;
}

.navbar.scrolled {
    transition: all 0.5s ease;
    top: 0;
    background-color: rgba(11, 18, 32, 0.96);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
    padding: 0 !important;
}

#mainNavbar .navbar-brand {
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--white);
}

#mainNavbar .navbar-brand img.logo {
    width: 122px;
    height: 122px;
    object-fit: contain;
}

#mainNavbar .nav-link {
    color: var(--text-strong);
    margin-right: 0.5rem;
    transition: color 0.3s ease;
}

#mainNavbar .nav-link:hover,
#mainNavbar .nav-link.active {
    color: var(--brand-secondary);
}

.btn-brand,
.apply-btn,
.btn-cta,
.apply-now-btn {
    min-width: 150px;
    padding: 0.85rem 1.4rem;
    font-weight: 600;
    color: var(--bg-dark);
    background: var(--brand-gradient);
    border: none;
    box-shadow: 0 15px 35px rgba(var(--brand-secondary-rgb), 0.24);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.btn-brand:hover,
.apply-btn:hover,
.btn-cta:hover,
.apply-now-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 48px rgba(var(--brand-secondary-rgb), 0.28);
}

.btn-outline-brand,
.btn-ghost,
.btn-outline-light {
    color: var(--white);
    background: transparent;
    border: 1px solid var(--surface-border);
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn-outline-brand:hover,
.btn-ghost:hover,
.btn-outline-light:hover {
    background: rgba(var(--brand-secondary-rgb), 0.14);
    border-color: var(--brand-secondary);
    color: var(--white);
}

/* Paired button behavior: filled + outline pairing */
.d-flex>.btn-brand+.btn-outline-brand,
.d-flex>.btn-outline-brand+.btn-brand {
    margin-left: 0.75rem;
}

.d-flex>.btn-outline-brand {
    background: transparent;
    border-color: var(--surface-border);
    transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.d-flex>.btn-outline-brand:hover {
    background: rgba(var(--brand-secondary-rgb), 0.12);
    border-color: var(--brand-secondary);
    box-shadow: 0 12px 30px rgba(var(--brand-secondary-rgb), 0.06);
}

.hero-carousel {
    min-height: 95vh;
    position: relative;
    overflow: hidden;
}

.carousel-inner,
.carousel-item,
.hero-slide {
    min-height: 95vh;
}

.hero-slide {
    position: relative;
    background-size: cover;
    background-position: center;
}

.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 14, 32, 0.25), rgba(7, 14, 32, 0.9));
}

.slide-1 {
    background-image: url('../img/slide1.jpg');
}

.slide-2 {
    background-image: url('../img/Slide1.jpg');
}

.slide-3 {
    background-image: url('../img/Slide1.jpg');
}

.slide-4 {
    background-image: url('../img/Slide1.jpg');
}

.hero-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
    max-width: 680px;
    padding: 1rem;
}

.hero-caption .eyebrow {
    color: var(--brand-secondary);
    letter-spacing: 0.2em;
    font-size: 0.85rem;
}

.hero-caption h1 {
    font-size: clamp(2.75rem, 4vw, 4.8rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.hero-caption p.lead {
    color: var(--text-soft-light);
    max-width: 620px;
}

.hero-caption .btn {
    min-width: 180px;
}

.hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.55;
    filter: blur(1px);
}

.shape-1 {
    width: 120px;
    height: 120px;
    background: rgba(249, 178, 51, 0.22);
    top: 16%;
    left: 12%;
}

.shape-2 {
    width: 80px;
    height: 80px;
    background: rgba(15, 61, 116, 0.22);
    top: 26%;
    right: 14%;
}

.shape-3 {
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.12);
    bottom: 18%;
    left: 10%;
}

.shape-4 {
    width: 96px;
    height: 96px;
    background: rgba(6, 26, 65, 0.26);
    bottom: 10%;
    right: 8%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: brightness(2);
}

.trust-section {
    position: relative;
}

.trust-section .eyebrow {
    color: var(--brand-secondary);
    font-size: 0.9rem;
    letter-spacing: 0.2em;
}

.trust-card {
    background: var(--surface-soft);
    border: 1px solid var(--surface-border);
    border-radius: 1.35rem;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.trust-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.trust-count {
    font-size: 3rem;
    font-weight: 700;
    color: var(--brand-secondary);
}

.trust-card p {
    color: #d3d9e3;
    font-size: 1.02rem;
}

.about-image-wrapper {
    min-height: 520px;
    background: linear-gradient(135deg, rgba(15, 61, 116, 0.9), rgba(9, 19, 44, 0.98));
}

.about-image {
    width: 100%;
    height: 100%;
    background-image: url('../img/about.jpg');
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 0.9s ease;
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.05);
}

.about-image-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(249, 178, 51, 0.2), transparent 40%);
}

.about-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(15, 61, 116, 0.96);
    color: #ffffff;
    padding: 0.8rem 1.2rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
}

.about-copy p {
    color: #d3d9e3;
}

.feature-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.service-card {
    background: var(--surface-light);
    border: 1px solid var(--surface-border);
    border-radius: 1.5rem;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-card:hover {
    transform: translateY(-12px);
    border-color: rgba(249, 178, 51, 0.35);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.16);
}

.service-icon {
    width: 62px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(249, 178, 51, 0.15);
    color: var(--brand-secondary);
    font-size: 1.5rem;
}

.services-section {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.services-section h2,
.jobs-section h2,
.process-section h2,
.about-section h2,
.trust-section h2 {
    color: #ffffff;
}

.services-section p,
.jobs-section p,
.process-section p,
.about-section p,
.trust-section p {
    color: rgba(255, 255, 255, 0.75);
}

.services-section .service-card h5 {
    margin-top: 0.85rem;
    color: #ffffff;
    font-weight: 700;
}

.services-section .service-card p {
    color: rgba(255, 255, 255, 0.76);
}

.jobs-section {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.job-card:hover .job-image {
    transform: scale(1.08);
}

.job-image-1 {
    background-image: url('https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?auto=format&fit=crop&w=1200&q=80');
}

.job-image-2 {
    background-image: url('https://images.unsplash.com/photo-1526045612212-70caf35c14df?auto=format&fit=crop&w=1200&q=80');
}

.job-image-3 {
    background-image: url('https://images.unsplash.com/photo-1526322727783-3cdbb0c0f6b4?auto=format&fit=crop&w=1200&q=80');
}

.job-image-4 {
    background-image: url('https://images.unsplash.com/photo-1498050108023-c5249f4df085?auto=format&fit=crop&w=1200&q=80');
}

.job-image-5 {
    background-image: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1200&q=80');
}

.job-image-6 {
    background-image: url('https://images.unsplash.com/photo-1519125323398-675f0ddb6308?auto=format&fit=crop&w=1200&q=80');
}

.job-content h5 {
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.process-timeline {
    position: relative;
    padding-left: 3rem;
}

.process-line {
    position: absolute;
    left: 2.5rem;
    top: 2rem;
    bottom: 2rem;
    width: 4px;
    background: rgba(249, 178, 51, 0.25);
    transform-origin: top center;
}

.process-step {
    position: relative;
    background: var(--surface-light);
    border: 1px solid var(--surface-border);
    min-height: 170px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
}

.process-step::before {
    content: unset;
    position: absolute;
    left: -2.7rem;
    top: 2rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--brand-secondary);
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.step-number {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(249, 178, 51, 0.16);
    color: var(--brand-secondary);
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-step h5 {
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.process-step p {
    color: rgba(255, 255, 255, 0.76);
}


.feature-grid {
    perspective: 1200px;
}

.feature-card {
    background: var(--surface-light);
    border: 1px solid var(--surface-border);
    border-radius: 1.5rem;
    transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.35s ease;
    transform-style: preserve-3d;
}

.feature-card:hover {
    transform: translateY(-10px) rotateY(6deg);
    border-color: rgba(var(--brand-secondary-rgb), 0.35);
    box-shadow: 0 28px 90px var(--shadow-strong);
}

.feature-card h5 {
    color: var(--white);
    margin-bottom: 0.9rem;
}

.feature-card p {
    color: var(--text-alt);
}

.feature-card .feature-icon {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
}

.success-section .success-card {
    background: var(--surface-soft);
    border: 1px solid var(--surface-border);
    border-radius: 1.75rem;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    min-height: 230px;
}

.success-section .success-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 80px var(--shadow-soft);
    border-color: rgba(var(--brand-secondary-rgb), 0.25);
}

.success-count {
    font-size: clamp(2.5rem, 4vw, 3.4rem);
    font-weight: 800;
    color: var(--brand-secondary);
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.testimonial-card {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-image {
    min-height: 260px;
    background-size: cover;
    background-position: center;
    border-radius: 1.5rem;
}

.testimonial-image-1 {
    background-image: url('https://images.unsplash.com/photo-1544005313-94ddf0286df2?auto=format&fit=crop&w=1200&q=80');
}

.testimonial-image-2 {
    background-image: url('https://images.unsplash.com/photo-1524504388940-b1c1722653e1?auto=format&fit=crop&w=1200&q=80');
}

.testimonial-image-3 {
    background-image: url('https://images.unsplash.com/photo-1506794778202-cad84cf45f1d?auto=format&fit=crop&w=1200&q=80');
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-bright);
}

.testimonial-card h5 {
    color: var(--white);
    margin-top: 1.25rem;
}

.testimonial-card span {
    color: var(--text-muted-light);
}

/* New testimonial grid styles */
.testimonials-grid .testimonial-card {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.testimonial-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--white);
    color: var(--bg-dark);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.24);
    flex-shrink: 0;
}


.testimonials-grid .rating {
    color: var(--brand-secondary);
    font-size: 1.05rem;
    line-height: 1;
}

.testimonials-grid .testimonial-text {
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.25rem;
    font-size: 1rem;
}

@media (max-width: 576px) {
    .testimonial-avatar {
        width: 56px;
        height: 56px;
    }
}

@media (max-width: 768px) {
    .cta-section {
        background-position: center top;
        min-height: 480px;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

.partners-section {
    background: linear-gradient(135deg, rgba(9, 16, 32, 1), rgba(11, 20, 37, 1));
}

.partner-marquee {
    background: var(--surface-light);
    border: 1px solid var(--surface-border);
}

.partner-track {
    animation: marquee 24s linear infinite;
}

.partner-track-copy {
    position: absolute;
    top: 0;
    left: 100%;
}

.partner-logo {
    min-width: 180px;
    padding: 1rem 1.2rem;
    border-radius: 1.25rem;
    background: var(--surface-medium);
    color: var(--text-strong);
    font-weight: 600;
    text-align: center;
    box-shadow: inset 0 0 0 1px var(--surface-border-very-light);
}

@keyframes marquee {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

.gallery-item {
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    background: rgba(255, 255, 255, 0.03);
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.gallery-thumb {
    min-height: 450px;
    background-size: cover;
    background-position: center;
    width: 100%;
}

.gallery-thumb-1 {
    background-image: url('../img/g1.jpg');
}

.gallery-thumb-2 {
    background-image: url('../img/g2.jpg');
}

.gallery-thumb-3 {
    background-image: url('../img/g3.jpg');
}

.gallery-thumb-4 {
    background-image: url('../img/g4.jpg');
}

.cta-section {
    position: relative;
    overflow: hidden;
    background-image: url('../img/contact.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    min-height: 420px;
    display: flex;
    align-items: center;
    color: #fff;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    mix-blend-mode: multiply;
    z-index: 1;
}

.cta-shapes span {
    position: absolute;
    border-radius: 50%;
    opacity: 0.35;
    filter: blur(18px);
    animation: float 6s ease-in-out infinite;
}

.cta-shape-1 {
    width: 140px;
    height: 140px;
    background: rgba(249, 178, 51, 0.35);
    top: 15%;
    left: 12%;
}

.cta-shape-2 {
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.14);
    top: 35%;
    right: 10%;
    animation-delay: 1s;
}

.cta-shape-3 {
    width: 100px;
    height: 100px;
    background: rgba(41, 128, 185, 0.25);
    bottom: 18%;
    left: 18%;
    animation-delay: 2s;
}

.cta-shape-4 {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.12);
    bottom: 12%;
    right: 22%;
    animation-delay: 3s;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section .eyebrow {
    color: #f9b233;
    letter-spacing: 0.22em;
}

.cta-section .btn {
    min-width: 200px;
}

.apply-now-btn {
    box-shadow: 0 24px 70px rgba(249, 178, 51, 0.16);
}

.cta-shapes span {
    position: absolute;
    border-radius: 50%;
}

@media (max-width: 992px) {
    .success-section .row {
        justify-content: center;
    }

    .testimonial-card {
        margin: 0 auto;
    }
}

.contact-section {
    background: linear-gradient(135deg, rgba(10, 14, 24, 0.95), rgba(8, 12, 22, 0.95));
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-details,
.map-card {
    background: var(--surface-light);
    border: 1px solid var(--surface-border);
}

.map-card {
    min-height: 320px;
}

.footer-section {
    background: linear-gradient(180deg, rgba(7, 10, 20, 1), rgba(12, 17, 30, 1));
    color: var(--text-bright-soft);
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links li a {
    color: var(--text-faint);
    text-decoration: none;
}

.footer-links li a:hover {
    color: var(--brand-secondary);
}

.footer-bottom {
    border-top: 1px solid var(--surface-border);
}

.footer-section h5,
.footer-section h6 {
    color: var(--white);
}

@keyframes float {

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

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

.faq-section .accordion-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-section .accordion-button {
    color: #ffffff;
    background: transparent;
}

.faq-section .accordion-button:not(.collapsed) {
    color: #fff;
    background: rgba(249, 178, 51, 0.08);
}

.faq-section .accordion-body {
    color: rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.02);
}

.contact-card,
.contact-details,
.map-card,
.footer-section {
    will-change: transform, opacity;
}

@media (max-width: 992px) {
    .process-timeline {
        padding-left: 0;
    }

    .process-step {
        padding-left: 1.4rem;
    }

    .process-step::before {
        left: 0.8rem;
        top: 1rem;
    }

    .process-line {
        left: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero-caption {
        text-align: center;
    }

    .hero-caption h1 {
        font-size: 2.8rem;
    }

    .top-header-bar .top-header-info {
        justify-content: center;
    }

    .top-header-bar .social-icons {
        justify-content: center;
    }

    .navbar {
        padding: 0.8rem 1rem;
    }

    .about-hero {
        min-height: 75vh;
    }

    .about-hero .split-text {
        font-size: 2.5rem;
    }

    .about-intro .intro-images {
        min-height: 420px;
    }
}

.about-hero {
    min-height: 90vh;
    position: relative;
    background-image: linear-gradient(180deg, rgba(5, 6, 12, 0.28), rgba(7, 9, 21, 0.92)), url('../img/about.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(3, 6, 14, 0.5);
    mix-blend-mode: multiply;
}

.about-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(249, 178, 51, 0.18), transparent 28%);
    pointer-events: none;
}

.about-hero .hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.about-hero .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.35;
    filter: blur(10px);
    animation: float 8s ease-in-out infinite;
}

.about-hero .shape-1 {
    width: 160px;
    height: 160px;
    background: rgba(249, 178, 51, 0.3);
    top: 18%;
    left: 12%;
}

.about-hero .shape-2 {
    width: 140px;
    height: 140px;
    background: rgba(255, 255, 255, 0.12);
    top: 28%;
    right: 18%;
    animation-delay: 1.5s;
}

.about-hero .shape-3 {
    width: 120px;
    height: 120px;
    background: rgba(15, 61, 116, 0.2);
    bottom: 22%;
    left: 22%;
    animation-delay: 2s;
}

.about-hero .shape-4 {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.08);
    bottom: 14%;
    right: 14%;
    animation-delay: 2.5s;
}

.about-hero .split-text {
    display: inline-block;
    overflow: hidden;
    line-height: 1.05;
}

.about-hero .split-text span {
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
}

.about-intro {
    position: relative;
    overflow: hidden;
}

.intro-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    min-height: 560px;
}

.intro-image {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 2rem;
    overflow: hidden;
    transform: translateZ(0);
    transition: transform 0.65s ease;
}

.intro-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.45));
}

.intro-image-1 {
    background-image: url('../img/about1.jpg');
    clip-path: inset(0 0 0 0);
    background-size: cover;
    background-position: top;
}

.intro-image-2 {
    background-image: url('../img/about2.jpg');
    clip-path: inset(0 0 0 0);
}

.intro-image-3 {
    grid-column: 1 / -1;
    background-image: url('../img/about3.jpg');
    height: 320px;
    clip-path: inset(0 0 0 0);
}

.intro-image:hover {
    transform: scale(1.08);
}

.intro-copy {
    position: relative;
}

.intro-copy .eyebrow {
    color: var(--brand-secondary);
    letter-spacing: 0.18em;
    font-size: 0.85rem;
}

.intro-copy h2 {
    font-size: clamp(2.8rem, 3.5vw, 3.8rem);
    line-height: 1.05;
}

.intro-copy p {
    color: rgba(248, 249, 250, 0.84);
}

.intro-copy .btn {
    min-width: 190px;
}

.about-hero,
.intro-images,
.intro-copy {
    will-change: transform, opacity, clip-path;
}

.strategy-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.strategy-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
    border-color: rgba(249, 178, 51, 0.45);
}

.strategy-card .card-icon {
    width: 72px;
    height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.5rem;
    background: rgba(249, 178, 51, 0.12);
    color: var(--brand-secondary);
    font-size: 1.8rem;
}

.strategy-card h3 {
    color: #ffffff;
}

.strategy-card p {
    color: rgba(255, 255, 255, 0.75);
}

.values-grid .value-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transform-style: preserve-3d;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.values-grid .value-card:hover {
    transform: perspective(800px) rotateX(3deg) rotateY(-3deg) translateY(-10px);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
    border-color: rgba(249, 178, 51, 0.45);
}

.values-grid .value-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1.5rem;
    opacity: 0;
    box-shadow: 0 0 0 2px rgba(249, 178, 51, 0.2);
    transition: opacity 0.35s ease;
}

.values-grid .value-card:hover::before {
    opacity: 1;
}

.value-card {
    position: relative;
    overflow: hidden;
}

.value-icon {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.5rem;
    background: rgba(249, 178, 51, 0.14);
    color: var(--brand-secondary);
    font-size: 1.7rem;
}

.value-card h5 {
    color: #ffffff;
    margin-bottom: 0.85rem;
}

.value-card p {
    color: rgba(255, 255, 255, 0.75);
}

.why-image {
    min-height: 520px;
}

.why-image .object-cover {
    height: 100%;
    object-fit: cover;
}

.why-image .why-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.55));
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1rem 1.1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    color: rgba(255, 255, 255, 0.88);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.feature-item:hover {
    transform: translateX(6px);
    border-color: rgba(249, 178, 51, 0.45);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.14);
}

.feature-item i {
    color: var(--brand-secondary);
    font-size: 1.35rem;
}

.team-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: rgba(249, 178, 51, 0.45);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
}

.team-photo {
    min-height: 320px;
    background-size: cover;
    background-position: center;
    transition: transform 0.85s ease;
}

.team-card:hover .team-photo {
    transform: scale(1.08);
}

.team-photo-1 {
    background-image: url('../img/t1.jpg');
}

.team-photo-2 {
    background-image: url('../img/t2.jpg');
}

.team-photo-3 {
    background-image: url('../img/t3.jpg');
}

.team-photo-4 {
    background-image: url('../img/t4.jpg');
}

.team-content {
    position: relative;
    z-index: 1;
    background: rgba(6, 10, 18, 0.88);
}

.team-content h5,
.team-content p {
    margin: 0;
}

.team-social {
    margin-top: 1rem;
    transform: translateY(16px);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.team-card:hover .team-social {
    transform: translateY(0);
    opacity: 1;
}

.team-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    transition: background 0.3s ease, color 0.3s ease;
}

.team-social a:hover {
    background: rgba(249, 178, 51, 0.18);
    color: var(--brand-secondary);
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 1.8rem;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.gallery-item.large {
    grid-column: span 8;
    grid-row: span 2;
}

.gallery-item.tall {
    grid-column: span 4;
    grid-row: span 2;
}

.gallery-item:nth-child(2) {
    grid-column: span 4;
}

.gallery-item:nth-child(3) {
    grid-column: span 4;
}

.gallery-item:nth-child(5) {
    grid-column: span 4;
}

.gallery-item:nth-child(6) {
    grid-column: span 4;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.32);
    opacity: 0;
    transition: opacity 0.35s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.view-btn {
    border-color: rgba(255, 255, 255, 0.9);
}

.timeline-wrapper {
    position: relative;
    padding-left: 3rem;
}

.timeline-line {
    position: absolute;
    left: 2rem;
    top: 1rem;
    bottom: 1rem;
    width: 4px;
    background: rgba(249, 178, 51, 0.2);
    transform-origin: top;
    overflow: hidden;
}

.timeline-step {
    position: relative;
    padding: 2rem 1rem 2rem 4rem;
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.03);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-circle {
    position: absolute;
    left: 1.65rem;
    top: 2.2rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--brand-secondary);
    box-shadow: 0 0 0 6px rgba(249, 178, 51, 0.12);
}

.timeline-step h4 {
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.timeline-step p {
    color: rgba(255, 255, 255, 0.75);
}

.certifications {
    background: linear-gradient(180deg, rgba(6, 11, 18, 0.95), rgba(8, 14, 24, 1));
}

.cert-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    transform-style: preserve-3d;
}

.cert-card:hover {
    transform: perspective(900px) rotateX(3deg) rotateY(-3deg) translateY(-10px);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
    border-color: rgba(249, 178, 51, 0.45);
}

.cert-icon {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    border-radius: 1.5rem;
    background: rgba(249, 178, 51, 0.14);
    color: var(--brand-secondary);
    font-size: 1.8rem;
}

.cert-card h5 {
    color: #ffffff;
    margin-bottom: 0.85rem;
}

.cert-card p {
    color: rgba(255, 255, 255, 0.75);
    min-height: 80px;
}

.modal-content {
    background: rgba(10, 14, 25, 0.96);
}

.modal-body img {
    max-height: calc(100vh - 200px);
    object-fit: contain;
}

.split-text.revealed span {
    transform: translateY(0%);
    opacity: 1;
    transition: transform 0.75s ease, opacity 0.75s ease;
}

@keyframes float {

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

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

/* RESPONSIVE CSS */

/* Services page styles */
.services-hero {
    min-height: 90vh;
    position: relative;
    overflow: hidden;
    display: flex;
    min-height: 500px;
    align-items: center;
    color: #fff;
}

.services-hero .hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
    transform-origin: center;
}

.services-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 6, 14, 0.45), rgba(3, 6, 14, 0.7));
    z-index: 1;
}

.services-hero .hero-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.35;
    filter: blur(12px);
    z-index: 2;
}

.services-hero .shape-1 {
    width: 160px;
    height: 160px;
    background: rgba(249, 178, 51, 0.25);
    left: 8%;
    top: 18%;
}

.services-hero .shape-2 {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.12);
    right: 12%;
    top: 28%;
}

.services-hero .shape-3 {
    width: 100px;
    height: 100px;
    background: rgba(15, 61, 116, 0.16);
    left: 22%;
    bottom: 12%;
}

.services-hero .split-text span {
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
}

.services-overview .overview-image {
    background-size: cover;
    background-position: center;
    min-height: 380px;
    clip-path: inset(12% 0 12% 0);
    transition: transform 0.8s ease, clip-path 0.9s ease;
}

.work-visa .visa-image {
    background-size: cover;
    background-position: center;
    min-height: 420px;
}

.checklist {
    margin-top: 1rem;
}

.checklist-item {
    padding: 0.45rem 0;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 992px) {
    .services-hero {
        min-height: 60vh;
    }

    .overview-image {
        min-height: 300px;
    }
}

/* Visa Consultation + Interview + Why Choose styles */
.visa-consultation .consultant-wrap {
    position: relative;
}

.consultant-photo {
    background-size: cover;
    background-position: center;
    transition: transform 0.9s ease, filter 0.8s ease;
}

.consultant-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
    mix-blend-mode: multiply;
    pointer-events: none;
}

.call-icons {
    position: absolute;
    right: 18px;
    bottom: 18px;
    display: flex;
    gap: 8px;
    z-index: 3;
}

.call-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    transition: transform 0.35s ease;
}

.interview-image {
    background-size: cover;
    background-position: center;
    transition: transform 0.9s ease;
}

.why-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.why-card h5 {
    color: #fff;
    margin: 0;
}

.why-card:hover {
    transform: translateY(-10px) rotateX(3deg);
    border-color: rgba(249, 178, 51, 0.35);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
}

.checklist-interview .checklist-item {
    padding: .45rem 0;
    color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 768px) {
    .call-icons {
        right: 12px;
        bottom: 12px;
    }

    .call-icon {
        width: 40px;
        height: 40px;
    }
}

/* Process timeline */
.service-process .timeline-wrapper {
    padding-left: 3rem;
    position: relative;
}

.service-process .timeline-line {
    position: absolute;
    left: 2rem;
    top: 1rem;
    bottom: 1rem;
    width: 6px;
    background: rgba(249, 178, 51, 0.12);
    transform-origin: top;
}

.service-process .timeline-step {
    position: relative;
    padding: 1.6rem 1rem 1.6rem 5rem;
    margin-bottom: 1.2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.service-process .timeline-circle {
    position: absolute;
    left: 1.6rem;
    top: 1.6rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--brand-secondary);
    box-shadow: 0 0 0 6px rgba(249, 178, 51, 0.08);
}

/* Service stats */
.service-stats .stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 2.2rem;
}

.service-stats .stat-count {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--brand-secondary);
}

/* FAQs */
.faqs .accordion-button {
    background: rgba(255, 255, 255, 0.02);
    color: #fff;
}

.faqs .accordion-body {
    color: rgba(255, 255, 255, 0.8);
}

/* Testimonials (swiper) */
.testimonial-swiper .swiper-slide {
    display: flex;
    justify-content: center;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Services CTA tweaks */
.services-cta {
    background-image: url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
}

.services-cta .cta-overlay {
    background: rgba(0, 0, 0, 0.45);
}

@media (max-width: 768px) {
    .service-process .timeline-step {
        padding-left: 3rem;
    }
}

/* Contact page styles */
.contact-hero {
        min-height: 72vh;
        padding-top: 110px;
        position: relative;
        display: flex;
        align-items: center;
        overflow: hidden;
    }

    .contact-hero .hero-bg {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center center;
        z-index: 0;
        filter: brightness(0.55) saturate(1.1);
    }

    .contact-hero .hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(3, 6, 14, 0.3), rgba(3, 6, 14, 0.75));
}

.contact-card {
    position: relative;
    z-index: 2;
}

.contact-card .form-control,
.contact-card .form-select,
.contact-card textarea {
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.map-card iframe {
    min-height: 320px;
    display: block;
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
    z-index: 9999;
}

@media (max-width: 576px) {
    .contact-card {
        padding: 1.25rem;
    }
}

/* Contact hero split text and shapes */
.contact-hero {
    overflow: hidden;
}

.contact-hero .split-text span {
    display: inline-block;
    transform: translateY(18px);
    opacity: 0;
}

.contact-hero .shape {
    position: absolute;
    width: 96px;
    height: 96px;
    border-radius: 16px;
    opacity: 0.12;
    backdrop-filter: blur(2px);
}

.contact-hero .shape.shape-1 {
    top: 8%;
    left: 6%;
    background: linear-gradient(135deg, #FFD54A, #FFB300);
}

.contact-hero .shape.shape-2 {
    bottom: 10%;
    right: 8%;
    background: linear-gradient(135deg, #00E5FF, #00B8D4);
}

.contact-hero .hero-content {
    position: relative;
    z-index: 2;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.contact-hero .hero-content h1,
.contact-hero .hero-content .lead {
    text-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.contact-hero .hero-content .lead {
    color: rgba(255,255,255,0.9);
}

.contact-hero .hero-image-card {
    overflow: hidden;
    border-radius: 1.5rem;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.04);
    box-shadow: 0 24px 70px rgba(0,0,0,0.28);
}

.contact-hero .hero-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-hero .btn-ghost,
.contact-hero .btn-cta {
    min-width: 190px;
}

@media (max-width: 992px) {
    .contact-hero {
        min-height: auto;
        padding-top: 90px;
        padding-bottom: 2rem;
    }

    .contact-hero .hero-image-card {
        margin-top: 2rem;
    }
}

/* Contact cards */
.contact-cards .card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.contact-cards .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.32);
    border-color: rgba(255, 255, 255, 0.24);
}

.contact-cards .card .card-body {
    display: flex;
    gap: 18px;
    align-items: center;
}

.contact-cards .card .icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.13);
    font-size: 1.45rem;
    color: #fff;
    transition: transform .35s cubic-bezier(.2, .9, .3, 1), background .35s ease;
}

.contact-cards .card:hover .icon-wrap {
    transform: translateY(-6px) rotate(-6deg);
    background: rgba(255, 255, 255, 0.2);
}

/* Floating labels + input icons */
.form-floating .form-control,
.form-floating .form-select,
.form-floating textarea {
        background: rgba(255,255,255,0.08);
        color: #f8f9fa;
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: inset 0 1px 12px rgba(0,0,0,0.16);
    }

    .form-floating .form-label {
        color: rgba(255,255,255,0.82);
    }

    .form-floating .form-control:focus,
    .form-floating .form-select:focus,
    .form-floating textarea:focus {
        border-color: rgba(249, 178, 51, 0.9);
        box-shadow: 0 0 0 0.2rem rgba(249, 178, 51, 0.16);
        position: relative;
    }

    .contact-form-wrap {
        background: rgba(7, 12, 23, 0.92);
        border: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
        backdrop-filter: blur(16px);
        position: relative;
        z-index: 2;
    }

    .contact-form-wrap h4 {
        color: #fff;
    }

    .contact-form-wrap .form-floating .form-control,
    .contact-form-wrap .form-floating .form-select,
    .contact-form-wrap .form-floating textarea {
        background: rgba(255,255,255,0.08);
        border: 1px solid rgba(255, 255, 255, 0.18);
        color: #f8f9fa;
    }

    .contact-form-wrap .form-floating .form-control::placeholder,
    .contact-form-wrap .form-floating textarea::placeholder {
        color: rgba(255,255,255,0.5);
        opacity: 1;
    }

    .contact-form-wrap .form-check-label {
        color: rgba(255,255,255,0.9);
    }

    .contact-form-wrap .form-floating .form-label {
        color: rgba(255,255,255,0.92);
    }

    .contact-form-wrap .form-text,
    .contact-form-wrap .invalid-feedback,
    .contact-form-wrap .text-white-75 {
        color: rgba(255,255,255,0.78) !important;
    }

    .office-image-wrapper {
        overflow: hidden;
        border-radius: 1.5rem;
        border: 1px solid rgba(255,255,255,0.12);
        box-shadow: 0 24px 60px rgba(0,0,0,0.28);
    }

    .why-contact .why-image,
    .why-contact .why-list {
        position: relative;
        z-index: 1;
    }

    .why-contact {
        background: rgba(255,255,255,0.02);
        border-top: 1px solid rgba(255,255,255,0.06);
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .why-contact .why-list li {
        background: rgba(255,255,255,0.04);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 1rem;
        padding: 1rem 1rem 1rem 0.9rem;
        margin-bottom: 0.75rem;
    }

    .why-contact .why-list .icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        margin-right: 0.9rem;
        border-radius: 50%;
        background: rgba(255, 213, 74, 0.18);
        color: #FFD54A;
    }

.input-with-icon {
        position: relative;
    }

    .input-with-icon i {
        position: absolute;
        left: 14px;
        top: 50%;
        transform: translateY(-50%);
        color: rgba(255, 255, 255, 0.75);
        pointer-events: none;
    }

    .input-with-icon .form-control {
        padding-left: 42px;
    }

    .contact-form-wrap {
        padding: 2.25rem;
    }

    .contact-cards .card h6 {
        color: #fff;
    }

    .contact-cards .card p {
        color: rgba(255,255,255,0.78);
    }

    .contact-form-wrap .form-floating .form-select {
        color: #f8f9fa;
}

/* Buttons */
.btn-cta {
    background: var(--brand-gradient);
    color: var(--bg-dark);
    border: none;
}

.btn-ghost {
    border: 1px solid var(--surface-border);
    color: var(--white);
    background: transparent;
}

.btn-outline-brand {
    color: var(--white);
    background: transparent;
    border: 1px solid var(--surface-border);
}

/* Success tick animation */
.submit-result {
    display: flex;
    gap: 12px;
    align-items: center;
}

.tick {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #1DB954;
    display: inline-grid;
    place-items: center;
    color: #fff;
    transform: scale(0);
}

@media (max-width: 768px) {
    .contact-hero .hero-content {
        text-align: center;
    }

    .contact-hero .shape {
        display: none;
    }
}

/* Why Contact Us */
.why-contact {
    padding: 4.5rem 0;
}

.why-contact .why-image {
    border-radius: 12px;
    overflow: hidden;
}

.why-contact .why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-contact .why-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 10px 0;
}

.why-contact .why-list li .icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: inline-grid;
    place-items: center;
    background: linear-gradient(135deg, #FFD54A, #FFB300);
    color: #071122;
    font-weight: 700;
}

/* Full width map */
.map-full {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.map-full .map-iframe {
    width: 100%;
    height: 460px;
    border: 0;
    display: block;
}

.map-full .map-border {
    position: absolute;
    inset: 12px;
    border-radius: 10px;
    pointer-events: none;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
    border: 2px solid rgba(255, 255, 255, 0.04);
}

.map-pin {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #FF6B6B;
    display: grid;
    place-items: center;
    color: #fff;
    transform: translate(-50%, -100%);
    left: 50%;
    top: 50%;
}

/* WhatsApp CTA */
.whatsapp-cta {
    padding: 4rem 0;
    color: #071122;
    background: linear-gradient(180deg, rgba(37, 211, 102, 0.08), rgba(37, 211, 102, 0.02));
    position: relative;
    overflow: hidden;
}

.whatsapp-cta .cta-inner {
    display: flex;
    align-items: center;
    gap: 24px;
}

.whatsapp-cta .cta-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: linear-gradient(90deg, #25D366, #06B859);
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 12px 34px rgba(3, 6, 14, 0.12);
}

.whatsapp-cta .btn-cta-lg {
    padding: 14px 22px;
    font-weight: 700;
}

.whatsapp-cta .btn-outline-brand {
    border-color: var(--surface-border);
}

/* FAQ styles */
.faq-section .accordion-button::after {
    transform: rotate(0deg);
    transition: transform .28s ease;
}

.faq-section .accordion-button.collapsed::after {
    transform: rotate(0deg);
}

.faq-section .accordion-button svg {
    transition: transform .28s ease;
}

/* Final CTA */
.final-cta {
    padding: 5rem 0;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

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

.final-cta .btn-cta {
    padding: 12px 20px;
}

.final-cta .btn-outline-brand {
    padding: 12px 20px;
}

@media (max-width: 768px) {
    .whatsapp-cta .cta-inner {
        flex-direction: column;
        text-align: center;
    }
}