@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary: #0A5EB7;
    /* royal blue */
    --primary-700: #0E86D4;
    --accent: #FFB703;
    /* warm gold */
    --bg: #FFFFFF;
    --muted-bg: #F8FAFC;
    --text: #1E1E1E;
    --muted-text: #4B5563;
    --footer-bg: #0A2540;
    --radius: 12px;
    --max-width: 1100px;
    --container-padding: 20px;
    --shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
    --focus: 3px solid rgba(10, 94, 183, 0.18);
    --ease: 200ms cubic-bezier(.2, .9, .3, 1);
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

/* Reset-ish */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
}


ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

p {
    margin-bottom: 0;
}

a {
    text-decoration: none;
}

.p-60 {
    padding: 60px 0;
}

h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
}

.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.header {
    color: #242424;
    padding: 15px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    height: 70px;
    z-index: 1000;
}


.logo img {
    mix-blend-mode: darken;
    height: 60px;
}

/* nav .nav-listigation style */
nav .nav-list,
nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

nav .nav-list a {
    color: #222222;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    padding: 8px 10px;
    border-radius: 4px;
}

nav .nav-list a:hover,
nav .nav-list a:focus {
    background-color: #c1c1c133;
    outline: none;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 24px;
    height: 18px;
    justify-content: space-between;
    background: none;
    border: none;
    padding: 0;
    position: relative;
    z-index: 1100;
    transition: transform 0.3s ease;
}

.hamburger span {
    display: block;
    height: 3px;
    background-color: #1f1f1f;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hamburger open state - cross icon */
.hamburger.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* Overlay behind menu for better UX */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 900;
}

.overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.wrap {
    margin: 0 auto;
    color: #fff;
    padding: 40px var(--container-padding);
    background: linear-gradient(90deg, var(--primary), var(--primary-700));
    border-radius: 10px;
}

.hero-ctas .btn,
aside .btn,
.contactButton {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 10px;
    border: 0;
    cursor: pointer;
    font-weight: 600;
    transition: all var(--ease)
}

.hero-ctas .btn-primary,
aside .btn-primary,
.contactButton {
    background: var(--accent);
    color: #0A2540;
}

.hero-ctas .btn-primary:hover,
aside .btn-primary:hover,
.contactButton:hover {
    background: #e6a403;
    color: #000;
}

.hero-ctas .btn-outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.18)
}

.badge-row {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.badge {
    background: rgba(255, 255, 255, 0.15);
    /* Transparent white overlay */
    border-radius: 32px;
    padding: 6px 12px;
    color: #ffffff;
    font-weight: 600;
    font-size: 12px;
    backdrop-filter: blur(10px);
    /* Glass blur effect */
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    /* Subtle border */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    /* Depth */
    transition: all 0.3s ease;
}

h1 {
    font-size: 36px;
    margin: 20px 0;
}



/* Title Styling */
.section-title {
    font-size: 2rem;
    font-weight: 700;
}

/* Glassmorphic Stat Cards */
.stat-card {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 10px 20px;
    font-weight: 500;
    font-size: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px);
}

/* Button with Glassmorphism */
.btn-glass {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 10px 25px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    transition: 0.3s ease;
}

.btn-glass:hover {
    background: #fff;
    color: #007bff;
    transform: translateY(-3px);
}

/* Image Glass Frame */
.image-glass {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.migration-help {
    background: #fff;
    color: #000;
}

.section-heading {
    font-weight: 800;
    font-size: 2rem;
    color: #000;
}

.help-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    text-align: left;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.help-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.icon-circle {
    background: #e5f4fd;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.icon-circle img {
    width: 40px;
    height: 40px;
}

.help-title {
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tags span {
    background: #fff;
    border: 1px solid #000;
    color: #000;
    border-radius: 50px;
    padding: 6px 15px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tags span:hover {
    /* background: #008060; */
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.visa-assistance {
    background: #fff;
    color: #000;
}

.section-heading {
    font-size: 2rem;
    font-weight: 800;
    color: #000;
}

.section-subheading {
    font-size: 1rem;
    color: #555;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.6;
}

.visa-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.visa-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.icon-wrap {
    background: #e5f4fd;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.icon-wrap img {
    width: 45px;
    height: 45px;
}

.visa-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #000;
}

.visa-card p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-heading {
        font-size: 1.6rem;
    }

    .visa-card {
        padding: 1.5rem 1rem;
    }
}

.about-section {
    background: #f9f9f9;
}


.about-badge {
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.about-section h2 {
    color: #004d40;
}

.about-section .btn-success {
    background-color: #00b26f;
    border: none;
    transition: all 0.3s ease;
}

.about-section .btn-success:hover {
    background-color: #009e63;
}

.team-help {
    background: #f9fafb;
    color: #000;
}

.section-heading {
    font-size: 2rem;
    font-weight: 800;
    color: #000;
}

.section-subheading {
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    font-size: 1rem;
}

.help-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.help-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.help-card .icon {
    font-size: 2.5rem;
    color: #008060;
    background: rgba(0, 128, 96, 0.1);
    border-radius: 50%;
    padding: 15px;
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.help-card h5 {
    font-weight: 600;
    font-size: 1rem;
    color: #000;
}

/* Contact Button */
.btn-contact {
    background: #008060;
    color: #fff;
    border-radius: 50px;
    padding: 10px 28px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-contact:hover {
    background: #006c51;
    color: #fff;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .section-heading {
        font-size: 1.7rem;
    }

    .help-card {
        padding: 1.5rem 1rem;
    }
}

.why-choose-us {
    background: #f9fafb;
    color: #000;
}

.section-heading {
    font-size: 2rem;
    font-weight: 800;
    color: #000;
}

.section-subheading {
    color: #555;
    font-size: 1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.choose-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.choose-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.icon-wrap {
    background: #ebf6fd;
    color: var(--primary);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
}

.choose-card h5 {
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.choose-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .section-heading {
        font-size: 1.6rem;
    }

    .choose-card {
        padding: 1.5rem 1rem;
    }
}


.testimonial-item {
    transition: transform 0.3s;
}

.testimonial-item:hover {
    transform: translateY(-5px);
}

.testimonial-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.owl-carousel .owl-nav {
    display: none;
    /* Hiding default nav */
}

.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-700));
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-section .overlay {
    background: rgba(0, 0, 0, 0.3);
}

.cta-section h2 {
    font-size: 2rem;
    letter-spacing: 0.5px;
}

.cta-section p {
    color: #e0f2f1;
}

.cta-section .btn {
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-section .btn-light:hover {
    background-color: var(--accent);
    color: #fff;
    transform: translateY(-3px);
}

.cta-section .btn-outline-light:hover {
    background-color: #fff;
    color: var(--primary);
    transform: translateY(-3px);
}

.faq-item {
    background-color: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
    background-color: var(--white);
    transition: var(--transition);
}

.faq-item.active .faq-question {
    background: var(--accent-color);
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-right: 15px;
}

.faq-icon {
    width: 30px;
    height: 30px;

    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-icon i {
    font-size: 18px;
    font-weight: 800;
    line-height: 18px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    background-color: #f8f9fa;
}

.faq-answer-content {
    padding: 0 25px;
    line-height: 1.7;
    color: #636e72;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 20px 0;
}