:root {
    --deep-blue: #002f6c;
    --teal: #0f8b8d;
    --accent: #ff9f1c;
    --primary: #0d6efd;
    --primary-dark: #002f6c;
    --secondary: #00b894;
    --purple: #6c63ff;
    --dark: #0f172a;
    --text: #1f2937;
    --muted: #6b7280;
    --light-bg: #f8fbff;
    --card-bg: rgba(255, 255, 255, 0.78);
    --glass-border: rgba(255, 255, 255, 0.25);
    --shadow-lg: 0 20px 60px rgba(15, 23, 42, 0.12);
    --shadow-md: 0 12px 30px rgba(15, 23, 42, 0.1);
    --radius-xl: 24px;
    --radius-lg: 18px;
    --transition: all 0.35s ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(13, 110, 253, 0.10), transparent 30%),
        radial-gradient(circle at top right, rgba(108, 99, 255, 0.10), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f7fbff 55%, #f3f7fc 100%);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

/* =========================
   NAVBAR
========================= */
.site-header {
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.navbar {
    padding: 0.95rem 0;
}

header .navbar-brand img {
    max-height: 46px;
    width: auto;
    object-fit: contain;
}

.brand-text {
    color: var(--deep-blue);
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: -0.02em;
}

.sticky-top {
    z-index: 999;
}

.nav-link {
    position: relative;
    color: #334155 !important;
    font-weight: 600;
    padding: 0.65rem 1rem !important;
    border-radius: 999px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary) !important;
    background: rgba(13, 110, 253, 0.08);
    transform: translateY(-1px);
}

.nav-cta {
    padding: 0.7rem 1.2rem !important;
    background: linear-gradient(135deg, var(--primary), var(--purple));
    color: #fff !important;
    box-shadow: 0 12px 24px rgba(13, 110, 253, 0.18);
}

.nav-cta:hover {
    background: linear-gradient(135deg, #0b5ed7, #5a52e0);
    color: #fff !important;
}

.navbar-toggler {
    border: none;
    box-shadow: none !important;
    background: rgba(13, 110, 253, 0.08);
    border-radius: 14px;
    padding: 0.55rem 0.75rem;
    font-size: 1.1rem;
}

/* =========================
   HERO
========================= */
.hero-banner {
    background-image:
        linear-gradient(135deg, rgba(0, 26, 61, 0.68), rgba(0, 47, 108, 0.42)),
        url('../images/Banner1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.12);
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.hero-banner-content {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    padding: 2rem 1rem;
    text-align: center;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.hero-banner-content h1,
.hero-banner-content p {
    color: #fff;
}

.hero-banner-content h1 {
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 1.1rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-banner-content .lead {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 760px;
    margin: 0 auto 2rem;
}

.it-hero .hero-banner-content {
    max-width: 600px;
    margin-left: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1rem;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.hero-actions {
    justify-content: flex-start;
}

.hero-actions .btn {
    min-width: 190px;
}

.hero-stats {
    margin-top: 2.25rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-stat {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    padding: 1rem 1.25rem;
    min-width: 220px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-stat h4 {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
}

.hero-stat p {
    margin: 0.3rem 0 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.82);
}

/* =========================
   SECONDARY HEROES
========================= */
.visa-hero,
.it-hero {
    background-size: cover;
    background-position: center;
    min-height: 80vh;
    position: relative;
    overflow: hidden;
}

.visa-hero::after,
.it-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 26, 61, 0.72), rgba(0, 0, 0, 0.42));
}

.visa-hero>.container,
.it-hero>.container {
    position: relative;
    z-index: 2;
}

/* =========================
   BUTTONS
========================= */
.btn-modern {
    border: none;
    border-radius: 14px;
    padding: 0.95rem 1.5rem;
    font-weight: 700;
    transition: var(--transition);
}

.btn-gradient {
    background: var(--deep-blue);
    color: #fff;
    box-shadow: 0 14px 28px rgba(1, 67, 154, 0.22);
}

.btn-gradient:hover {
    background: #001f4f;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 18px 32px rgba(0, 47, 108, 0.28);
}

.btn-soft {
    background: rgba(255, 255, 255, 0.92);
    color: var(--deep-blue);
    border: 1px solid rgba(13, 110, 253, 0.12);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.btn-soft:hover {
    color: var(--deep-blue);
    transform: translateY(-3px);
    background: #fff;
}

.btn-primary {
    background: var(--deep-blue);
    border-color: var(--deep-blue);
    border-radius: 12px;
    transition: var(--transition);
}

.btn-primary:hover {
    background: #001f4f;
    border-color: #001f4f;
    transform: translateY(-2px);
}

.btn-warning {
    background: var(--accent);
    border-color: var(--accent);
    border-radius: 12px;
    transition: var(--transition);
}

.btn-warning:hover {
    transform: translateY(-2px);
}

/* =========================
   SECTION HEADING
========================= */
.section-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.section-heading .mini-title {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(13, 110, 253, 0.08);
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    margin-bottom: 0.9rem;
}

.section-heading h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: #002f6c;
    margin-bottom: 0.7rem;
    letter-spacing: -0.03em;
}

.section-heading p {
    color: var(--muted);
    max-width: 700px;
    margin: 0 auto;
}

.tech-icon img,
.tech-icon i {
    transition: 0.3s ease;
}

.tech-icon:hover img,
.tech-icon:hover i {
    transform: translateY(-5px);
}

.tech-icon {
    transition: 0.3s ease;
}

.tech-icon:hover {
    transform: translateY(-6px);
}

.cta-section {
    background:
        url('../images/cta_banner.png');
    background-size: cover;
    background-position: center;
    padding: 80px 40px;
    border-radius: 20px 20px 0 0;
}

.cta-section-visa {
    background:
        url('../images/visa_cta.png');
    background-size: cover;
    background-position: center;
    padding: 80px 40px;
    border-radius: 20px 20px 0 0;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 25px;
}

.cta-buttons .btn {
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 30px;
    transition: 0.3s ease;
}

.btn-cta-primary {
    background: white;
    color: var(--deep-blue);
    border: none;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-cta-outline {
    border: 2px solid white;
    color: white;
}

.btn-cta-outline:hover {
    background: white;
    color: var(--deep-blue);
    transform: translateY(-3px);
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* =========================
   SERVICE CARDS
========================= */
.service-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 26px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.15);
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.06), rgba(108, 99, 255, 0.04));
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card img {
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover img {
    transform: scale(1.04);
}

.service-card .card-body {
    position: relative;
    z-index: 1;
    padding: 2rem;
}

.service-icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: #fff;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
}

.service-icon.visa {
    background: linear-gradient(135deg, #00b894, #00cec9);
}

.service-icon.it {
    background: linear-gradient(135deg, #0d6efd, #6c63ff);
}

.service-card h3,
.card h5 {
    color: var(--deep-blue);
}

.service-card h3 {
    font-size: 1.55rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    border-radius: 14px;
    padding: 0.85rem 1.3rem;
    font-weight: 700;
    transition: var(--transition);
}

.service-btn:hover {
    transform: translateY(-2px);
}

/* =========================
   OPTIONAL CONTACT FORM
========================= */
.contact-modern {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 26px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.modern-input {
    height: 54px;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    box-shadow: none;
}

.modern-input:focus {
    border-color: rgba(13, 110, 253, 0.45);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.08);
}

.cta-section {
    margin-bottom: 0;
    border-radius: 20px 20px 0 0;
}

.site-footer {
    margin-top: 0;
}

/* =========================
   FOOTER
========================= */
.site-footer {
    position: relative;
    background:
        radial-gradient(circle at top right, rgba(108, 99, 255, 0.14), transparent 30%),
        linear-gradient(135deg, #071120 0%, #0d1b2a 100%);
    color: rgba(255, 255, 255, 0.86);
    padding: 4.5rem 0 1.4rem;
    /* margin-top: 5rem; */
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(13, 110, 253, 0.08);
    left: -80px;
    bottom: -80px;
    filter: blur(20px);
}

.footer-card {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 2rem;
    height: 100%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.footer-title {
    font-weight: 400;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-text,
.footer-link {
    color: rgba(255, 255, 255, 0.72);
}

.footer-link {
    display: inline-block;
    margin-bottom: 0.7rem;
    transition: var(--transition);
}

.footer-link:hover {
    color: #fff;
    transform: translateX(4px);
}

.social-links a {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    margin-right: 0.6rem;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--deep-blue);
    transform: translateY(-4px);
    box-shadow: 0 14px 24px rgba(0, 47, 108, 0.25);
}

.footer-bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.92rem;
}

/* =========================
   FLOATING WHATSAPP
========================= */
.floating-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 22px;
    z-index: 999;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.45rem;
    box-shadow: 0 16px 32px rgba(37, 211, 102, 0.28);
    transition: var(--transition);
    animation: floatPulse 2.8s infinite ease-in-out;
}

.floating-whatsapp:hover {
    color: #fff;
    transform: translateY(-5px) scale(1.04);
}

@keyframes floatPulse {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* =========================
   ACCORDION
========================= */
.accordion-button:not(.collapsed) {
    color: #002f6c;
    background-color: #fff;
}

/* =========================
   ANIMATIONS
========================= */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 0.9s ease forwards;
}

.delay-1 {
    animation-delay: 0.15s;
}

.delay-2 {
    animation-delay: 0.3s;
}

.delay-3 {
    animation-delay: 0.45s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991.98px) {
    .navbar-collapse {
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    }

    .hero-banner {
        min-height: 100vh;
        padding: 110px 0 60px;
    }

    .hero-container {
        min-height: auto;
    }

    .hero-banner-content {
        padding: 1rem 0.75rem;
    }

    .hero-actions {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: nowrap;
    }

    .hero-actions .btn {
        width: auto;
        white-space: nowrap;
    }

    .service-card img {
        height: 230px;
    }
}

@media (max-width: 768px) {

    .visa-hero,
    .it-hero {
        min-height: 55vh;
    }
}

@media (max-width: 575.98px) {
    .brand-text {
        font-size: 0.95rem;
    }

    .hero-banner-content h1 {
        font-size: 2.3rem;
    }

    .hero-banner-content .lead {
        font-size: 1rem;
    }

    .hero-stat {
        width: 100%;
        max-width: 320px;
    }

    .service-card .card-body,
    .footer-card,
    .contact-modern {
        padding: 1.5rem;
    }

    .floating-whatsapp {
        width: 54px;
        height: 54px;
        right: 16px;
        bottom: 16px;
    }
}

/* SECTION HEADER */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: #eaf1ff;
    color: #2563eb;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-header p {
    color: #6b7280;
}

/* WHY SECTION */

.why-choose {
    padding: 100px 0;
    background: #f8fbff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-card {
    background: white;
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    transition: 0.4s;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin: 0 auto 20px;
}

/* PROCESS */

.process {
    padding: 100px 0;
    background: white;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-card {
    background: #f8fbff;
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    transition: 0.4s;
}

.process-card:hover {
    transform: translateY(-10px);
}

.process-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    margin: 0 auto 20px;
}

/* Responsive */

@media(max-width:992px) {

    .why-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {

    .why-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }
}

.apply-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.apply-modal-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close-modal {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 22px;
    cursor: pointer;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.apply-modal.show {
    display: flex;
}


@media (max-width: 576px) {
    .hero-actions {
        flex-wrap: nowrap;
    }

    .hero-actions .btn {
        white-space: nowrap;
    }
}

.cta-buttons {
    flex-wrap: nowrap;
    justify-content: flex-start;
}

@media (max-width: 576px) {
    .cta-buttons .btn {
        padding: 8px 14px;
        font-size: 13px;
        border-radius: 20px;
        white-space: nowrap;
    }
}