/* Globals */
* {
    font-family: 'Inter', sans-serif !important;
}

/* variables */


:root {
    --font-thin: 100;
    --font-extra-light: 200;
    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-semi-bold: 600;
    --font-bold: 700;
    --font-extra-bold: 800;
    --font-black: 900;
    --bs-font-d-grey: #4D4D4D;
    --bs-font-grey: #717171;
    --dark-bg: #263238;
    --bs-grey-2: #6C757D;
    --bs-green-neon: #2ADB8E;
}

/* general class*/


.d-grey {
    color: var(--bs-font-d-grey);
}

.text-white {
    color: rgb(226, 226, 226);
}

.medium-green {
    color: #388e3c;
}

.green-neon {
    color: var(--bs-green-neon);
}

.green-lighter {
    color: #1B7B4A
}

.bs-grey-2 {
    color: var(--bs-grey-2);
}

.grey {
    color: var(--bs-font-grey);
}

.hd-2 {
    font-weight: var(--font-semi-bold);
}

.body-2 {
    font-size: 1rem !important;
    font-weight: var(--font-regular) !important;
}

.f-reg {
    font-weight: var(--font-regular);
}

.bg-light-grey {
    background-color: #F1F3F4;
}

.bg-light-green {
    background-color: var(--bs-secondary);
}

.pointer:hover {
    cursor: pointer;
    background: var(--bs-dark-bg-subtle) !important;
    color: var(--text-dark);
}

.pointer-only:hover {
    cursor: pointer;
    /* background: var(--bs-dark-bg-subtle) !important; */
    color: var(--text-dark);
}

/* navbar-styles */

.navbar {
    background-color: #ffffff !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 0;
    --bs-navbar-padding-y: 1.2rem !important;
}

.navbar-brand {
    font-weight: var(--font-bold);
    font-size: 1.5rem;
    color: var(--bs-font-d-grey) !important;
    display: flex;
    align-items: center;
}

.navbar-brand .brand-icon {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    color: white;
    font-size: 16px;
}

.navbar-nav .nav-link {
    color: #555 !important;
    font-weight: var(--font-regular);
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 1rem !important;
}

.navbar-nav .nav-link:hover {
    background-color: #f8f9fa;
    color: var(--bs-secondary) !important;
}

.navbar-nav .nav-link.active {
    background-color: #e8f5e8;
    color: var(--bs-secondary) !important;
}

.btn-login {
    color: var(--bs-primary) !important;
    border: 1px solid var(--bs-primary) !important;
    font-weight: var(--font-regular);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

/* .btn-login:hover {
        background-color: var(--bs-secondary) !important;
        border-color: var(--bs-primary);
        color: white !important
    } */

.btn-apply {
    background: linear-gradient(135deg, #4CAF50, #45a049) !important;
    border: none;
    color: white !important;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.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%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.oss-logo {
    margin-right: 0.5rem;
}


@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: white;
        border-radius: 8px;
        margin-top: 1rem;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .navbar-nav .nav-link {
        margin: 0.25rem 0;
        padding: 0.75rem 1rem !important;
    }

    .mobile-buttons {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #dee2e6;
    }

    .btn-login,
    .btn-apply {
        width: 100%;
        margin: 0.25rem 0;
    }
}

/* hero section styles */
.hero-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.btn-success-custom {
    background-color: var(--bs-primary) !important;
    border-color: #28a745;
    padding: 12px 30px;
    font-weight: var(--font-regular);
    border-radius: 8px;
    transition: all 0.3s ease;
    color: white !important;
    font-size: 1rem !important;
}

.btn-login:hover,
.btn-success-custom:hover {
    transform: scale(1.1);
    /* background-color: var(--bs-secondary) !important; */
    /* border-color: var(--bs-secondary) !important; */
    /* transform: translateY(-2px); */
    /* box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3); */
    /* color: white !important */
}

.hero-title {
    font-size: 3.5rem;
    font-weight: var(--font-semi-bold);
    line-height: 1.2;
    color: var(--bs-font-d-grey);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--bs-font-grey);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-weight: var(--font-regular);
}

.highlight-text {
    color: var(--bs-primary);
    font-weight: var(--font-semi-bold);
}

.illustration-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: -1;
}

/*
.computer-screen {
    width: 300px;
    height: 200px;
    background: #2c3e50;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateY(-10deg);
}

.screen-content {
    background: #ffffff;
    margin: 15px;
    height: calc(100% - 30px);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.screen-header {
    background: #28a745;
    height: 30px;
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.screen-dots {
    display: flex;
    gap: 5px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
}

.form-elements {
    padding: 20px 15px;
}

.form-line {
    height: 8px;
    background: #e9ecef;
    margin-bottom: 10px;
    border-radius: 4px;
}

.form-line.short {
    width: 60%;
}

.form-line.medium {
    width: 80%;
}

.form-line.green {
    background: #28a745;
    width: 40%;
}

.character {
    position: absolute;
    right: -80px;
    bottom: -20px;
    width: 120px;
    height: 180px;
    background: #28a745;
    border-radius: 20px 20px 5px 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 20px;
}

.character-head {
    width: 40px;
    height: 40px;
    background: #ffc107;
    border-radius: 50%;
    margin-bottom: 10px;
    position: relative;
}

.character-face {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.character-eyes {
    width: 3px;
    height: 3px;
    background: #2c3e50;
    border-radius: 50%;
    display: inline-block;
    margin: 0 2px;
}

.character-document {
    width: 30px;
    height: 40px;
    background: #ffffff;
    border-radius: 3px;
    position: relative;
    margin-top: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.document-lines {
    padding: 5px;
}

.doc-line {
    height: 2px;
    background: #28a745;
    margin: 2px 0;
    border-radius: 1px;
}

.floating-icons {
    position: absolute;
    top: 20px;
    right: 20px;
}

.floating-icon {
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    animation: float 3s ease-in-out infinite;
}

.floating-icon:nth-child(2) {
    animation-delay: 1s;
}

@keyframes float {

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

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

.pagination-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 3rem;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dee2e6;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-dot.active {
    background: #28a745;
} */

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .computer-screen {
        width: 250px;
        height: 160px;
    }

    .character {
        width: 100px;
        height: 150px;
        right: -60px;
    }
}

/* what we help with section  */
.passport-card {
    width: 184px !important;
    height: 234px;
    padding: 30px 20px;
    background: rgb(207, 101, 101);
    text-align: center;
}

.neon-box {
    background-color: #fff;
    color: #333;
    padding: 2rem;
    border-radius: 3.9rem;
    text-align: center;
    box-shadow:
        0 0 5px 2px var(--bs-secondary),
        0 0 12px 2px var(--bs-secondary),
        0 0 20px 2px var(--bs-secondary);
}

.bg-circle {
    width: 53px;
    height: 53px;
    border-radius: 50%;
    background-color: var(--bs-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.bg-circle img {
    width: 29px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.passport-card p {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 20px 0;
}

.apply-btn {
    background-color: var(--bs-primary);
    color: white;
    border: none;
    padding: 6px 32px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: var(--font-regular);
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.apply-btn-sm {
    background-color: var(--bs-primary);
    color: white;
    border: none;
    padding: 3px 24px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: var(--font-regular);
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.view-more-btn:hover,
.apply-btn:hover,
.apply-btn-sm:hover {
    background-color: var(--bs-secondary);
}

.view-more-btn {
    background-color: var(--bs-secondary);
    color: white;
    border: none;
    padding: 10px 32px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: var(--font-regular);
    cursor: pointer;
    transition: background-color 0.2s ease;
}

/* ============================================== */

.passport-card-service {
    width: 184px !important;
    height: 209px;
    padding: 30px 20px;
    background: rgb(255, 255, 255);
    text-align: center;
}

.passport-card-service p {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 20px 0;
}

/* ============================================== */

/* 3-step container code  */

.step-title {
    font-size: 1rem;
    font-weight: var(--font-regular);
    color: var(--bs-font-d-grey);
    margin-bottom: 16px;
}

.step-description {
    font-size: 0.875rem;
    font-weight: var(--font-regular);
    color: var(--bs-font-grey);
    line-height: 1.6;
    text-align: center;
}

.step-image {
    width: 258px;
    height: 240px;
}

@media (max-width: 768px) {
    .steps-container {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }
}

/* numbers section  */

.success-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);

}

.success-title {
    font-size: 2.25rem;
    font-weight: var(--font-semi-bold);
    color: var(--bs-font-d-grey);
    margin-bottom: 0.5rem;
}

.success-subtitle {
    color: var(--bs-primary);
    font-weight: var(--font-semi-bold);
}

.success-description {
    font-size: 1rem;
    color: var(--bs-font-grey);
    font-weight: var(--font-regular);
    margin-bottom: 3rem;
    max-width: 500px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-content h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.stat-content p {
    margin: 0;
    font-size: 1rem;
    color: #666;
}

.email a {
    color: var(--bs-primary);
    text-decoration: none;
}

.call p,
.email p {
    font-size: 0.875rem;
    color: var(--bs-font-grey);
}

.call h5,
.email h5 {
    font-size: 1rem;
    color: var(--bs-font-d-grey) !important;
}


@media (max-width: 768px) {
    .success-title {
        font-size: 2rem;
    }

    .stat-content h3 {
        font-size: 1.5rem;
    }
}

.container .ratio {
    --bs-aspect-ratio: calc(400 / 1000 * 100%);
}

.btn-start-application {
    background-color: var(--bs-primary);
    border: none;
    color: white;
    font-weight: var(--font-regular);
    font-size: 1rem;
    padding: 16px 28px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-start-application:hover {
    background-color: var(--bs-secondary);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.arrow-icon {
    width: 16px;
    height: 16px;
    stroke-width: 2;
}

.footer-container {
    background-color: var(--dark-bg);
}

.footer-brand {
    font-weight: var(--font-bold);
    font-size: 1.5rem;
    color: white;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.copyright-text {
    color: white;
    font-size: 0.875rem;
    font-weight: var(--font-regular);

}

.footer-container p {
    color: white;
    font-size: 0.75rem;
}

.footer-container h5 {
    color: white;
    font-size: 1rem;
}

.search-box {
    border-radius: 8px;
    padding: 12px;
    border: none;
    background-color: var(--bs-font-grey);
    outline: none;
    caret-color: #0077b6;
    color: white;
    font-size: 0.75rem;
}

.search-box:focus {
    border: 1px solid #0077b6;
    box-shadow: 0 0 0 0.2rem rgba(0, 119, 182, 0.25);
    caret-color: #ffffff;
}

.search-box::placeholder {
    color: white;
    font-size: 0.75rem;
}

.hidden {
    display: none;
}

.card-hover:hover {
    border-color: var(--bs-primary) !important;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(25, 135, 84, 0.2);
}

.card-hover {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-custom {
    background-color: #263238;
    color: white;
    font-size: 0.9rem !important;
}

.btn-custom:hover {
    background-color: #37474F;
}

.border-primary-subtle {
    border-color: var(--bs-primary-border-subtle) !important;
}

.custom-hover-btn {
    transition: background-color 0.3s ease;
}

.custom-hover-btn:hover {
    background-color: #198754;
    /* Or any other highlight color */
}

.custom-hover-btn:hover .text-hover {
    color: #ffffff !important;
    border-color: white !important;
}

.custom-hover-btn:hover i {
    color: #ffffff !important;
}

/* --------------------------- My profile styles --------------------------- */

/* .demo-container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 600px;
}

h1 {
    color: #333;
    margin-bottom: 30px;
    font-size: 2rem;
}

.header-bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
}

.profile-container {
    position: relative;
    display: inline-block;
} */

.profile-btn {
    width: 45px;
    height: 45px;
    border-radius: 15%;
    border: 3px solid #4CAF50;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    /* box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3); */
    padding: 0;
    line-height: 1;
    /* Ensures icon is centered better */
}

/* .profile-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid #4CAF50;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
} */

.profile-btn:hover {
    transform: scale(1.1);
    /* box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4); */
}

/* .profile-btn::before {
    content: "👤";
    font-size: 22px;
} */
.dropdown-wrapper {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 2000;
    margin-top: 8px;
    border: 1px solid #e0e0e0;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 15px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
}

.dropdown-item {
    display: flex;
    align-items: center;
    /* padding: 0px 12px !important; */
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 500;
    gap: 12px;
}



.dropdown-item:first-child {
    border-radius: 12px 12px 0 0;
}

.dropdown-item:last-child {
    border-radius: 0 0 12px 12px;
}

.dropdown-item:hover .highlight {
    background: #f5f5f5 !important;
    color: #4CAF50 !important;
    /* transform: translateX(5px) ; */
}

.dropdown-item .icon {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.my-profile .icon::before {
    content: "👤";
}

.my-applications .icon::before {
    content: "📄";
}

.logout .icon::before {
    content: "🚪";
}

.divider {
    height: 1px;
    background: #e0e0e0;
    margin: 8px 0;
}

.instructions {
    background: #e8f5e8;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    color: #2e7d32;
    font-size: 14px;
    line-height: 1.5;
}

/* Close dropdown when clicking outside */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1500;
    display: none;
}

.overlay.show {
    opacity: 1;
    visibility: visible;
}

/* ---------------------------- Error styles for required fields  ----------------------------*/
.req-error {
    border: 1px solid #dc3545 !important;
    /* box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important; */
}

.req-error:focus {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

.error-message {
    color: #dc3545;
    font-size: 0.875em;
    margin-top: 0.25rem;
    display: block;
}

.icon-box {
    width: 30px;
    height: 30px;
}

.icon-size {
    font-size: 2.1rem;
}

@media (min-width: 992px) {
    .icon-box-lg {
        width: 60px;
        height: 60px;
    }

    .icon-size {
        font-size: 3rem;
    }
}

.dz-bnr-inr-entry h1 {
    font-size: 4.0625rem;
    margin-bottom: 0px;
    line-height: 1.2;
    text-transform: capitalize;
    color: #fff;
}

/* ------------------------------------------------------------------ */

.about-banner {
    position: relative;
    height: 40vh;
    min-height: 300px;
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
    /* overflow: hidden; */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Animated gradient overlay */
.about-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg,
            rgba(16, 185, 129, 0.8) 0%,
            rgba(5, 150, 105, 0.6) 25%,
            rgba(4, 120, 87, 0.8) 50%,
            rgba(6, 95, 70, 0.6) 75%,
            rgba(16, 185, 129, 0.8) 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease-in-out infinite;
}

/* Floating geometric shapes */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: float 20s linear infinite;
}

.shape-1 {
    top: 20%;
    left: 10%;
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    animation-delay: 0s;
}

.shape-2 {
    top: 70%;
    right: 15%;
    width: 60px;
    height: 60px;
    background: white;
    transform: rotate(45deg);
    animation-delay: -5s;
}

.shape-3 {
    top: 60%;
    left: 75%;
    width: 50px;
    height: 50px;
    background: white;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation-delay: -10s;
}

.shape-4 {
    top: 20%;
    right: 60%;
    width: 90px;
    height: 90px;
    background: white;
    border-radius: 15px;
    animation-delay: -15s;
}

/* Main content container */
.banner-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
}

/* Animated text reveal */
.banner-subtitle {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 1s ease-out 0.5s forwards;
    background: linear-gradient(45deg, #a7f3d0, #6ee7b7, #a7f3d0);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: slideInUp 1s ease-out 0.5s forwards, textShimmer 3s ease-in-out infinite;
}

.banner-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 1s ease-out 1s forwards;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
    color: white;
}

/* Background particle effect */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(167, 243, 208, 0.8);
    border-radius: 50%;
    animation: particleFloat 12s linear infinite;
}

/* Animations */
@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes textShimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes float {

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

    25% {
        transform: translateY(-15px) rotate(90deg);
    }

    50% {
        transform: translateY(-30px) rotate(180deg);
    }

    75% {
        transform: translateY(-15px) rotate(270deg);
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(60vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-10vh) scale(1);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-banner {
        height: 50vh;
        min-height: 350px;
    }

    .banner-content {
        padding: 0 1rem;
    }

    .banner-subtitle {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .about-banner {
        height: 25vh;
        min-height: 150px;
    }

    .banner-subtitle {
        font-size: 0.8rem;
        letter-spacing: 0.15em;
    }
}

.custom-team-card2 {
    /* display: flex; */
    align-items: center;
    background-color: #dee2e6;
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 20px;
}

.custom-team-avatar {
    width: 70px;
    height: 70px;
    background-color: #ffffff;
    border-radius: 10px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-team-avatar2 {
    width: 70px;
    height: 70px;
    background-color: #ffffff;
    border-radius: 50px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-team-avatar i {
    font-size: 3.2rem;
    color: #6c757d;
}

.custom-team-avatar2 i {
    font-size: 3rem;
    color: #6c757d;
}

.custom-team-info h5 {
    margin: 0;
    font-weight: 600;
}

.custom-team-info .position {
    color: #6c757d;
    font-size: 14px;
}

.custom-team-info .email {
    color: #495057;
    font-size: 14px;
}

.bg-linear-custom {
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%) !important;
}

/* ==================================================== */
.input-group:not(.has-validation)> :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating) {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-top-left-radius: 1.5rem !important;
    border-bottom-left-radius: 1.5rem !important;
}

.input-group> :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    margin-left: calc(var(--bs-border-width) * -1);
    border-bottom-left-radius: 0;
    border-top-right-radius: 1.5rem !important;
    border-bottom-right-radius: 1.5rem !important;
}

/* ==================================================== */
.float-btn {
    position: fixed;
    right: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
    color: #fff;
    font-size: 1.3rem;
    /* icon size */
    transition: transform .15s ease, box-shadow .15s ease;
    text-decoration: none;
}

/* WhatsApp button (bottom) */
.float-btn.whatsapp {
    bottom: 20px;
    background: #25D366;
}

/* Call button (above WhatsApp) */
.float-btn.call {
    bottom: 90px;
    background: #0077B6;
}

/* Hover/focus */
.float-btn:hover,
.float-btn:focus {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
    text-decoration: none;
}

/* Optional: larger tap area on small screens */
@media (max-width: 576px) {
    .float-btn {
        width: 64px;
        height: 64px;
        font-size: 1.45rem;
    }
}

/* ============================================= MOBILE STYLES=========================================*/

@media (max-width: 576px) {
    .sm-img {
        display: none;
    }

    .sm-banner {
        margin-top: 2rem;
        width: 18rem;
        height: 18rem;
    }

    .p-sm-x-4 {
        padding: 0 2.2rem;
    }

    .passport-card {
        margin-bottom: 2.5rem;
        width: 150px !important;
        height: 235px;
    }

    .custom-gap {
        column-gap: 0.5rem;
        margin-bottom: 0.1rem;
    }
}

.dropbtn {
  background-color: #04AA6D;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 9999;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {background-color: #ddd;}

.dropdown:hover .dropdown-content {display: block;}

.dropdown:hover .dropbtn {background-color: #3e8e41;}


/* override default library styles */
.swal2-confirm {
  background-color: #4CAF4F !important;
  color: white !important;
}

.hidden-card {
    display: none !important;
}
