* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
}

header {
    z-index: 9999;

}

/* Top bar */
.top-bar {
    background: #000;
    color: #fff;
    padding: 10px 60px 10px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.top-bar .left,
.top-bar .right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar i {
    margin-right: 5px;
    color: red;
}

.top-bar img {
    width: 20px;
    height: 14px;
    border-radius: 50%;
}

header {
    position: sticky;
}

/* Main nav */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding-left: 60px !important;
    padding-right: 60px !important;
}



.logo {
    font-size: 20px;
    font-weight: bold;
    color: #000;
}

.logo span {
    color: red;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-links i {
    color: red;
}

.menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
}



.logo {
    height: 40px;
    width: 120px;    object-fit: contain;
}

/* Dropdown container */
.dropdownn {
    position: relative;
}

.dropbtn {
    display: flex;
    align-items: center;
    gap: 5px;
    /* background: red; */
    color: white;
    /* padding: 10px 15px; */
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
}

/* 
      .dropbtn:hover{
                background: red;

      } */
/* Hidden dropdown content */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    min-width: 220px;
    z-index: 1000;
    border-top: 3px solid red;
}

/* Show on hover */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* Dropdown item styling */
.dropdown-menu a {
    display: block;
    padding: 8px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.dropdown-menu a:hover {
    background: #f7f7f7;
    color: red;
}

@media (max-width: 1280px) {
    .banner-card {
        width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 20px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        align-items: start;
    }

    .cards {
        padding: 20px !important;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-btn {
        display: block;
    }

    .top-bar .left,
    .top-bar .right {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-direction: column;
    }

    .top-bar {
        padding: 0px 10px 0px 10px;
        font-size: 12px;
    }

    .welcome {
        font-size: 18px !important;
        padding: 10px;
    }

    .ptag {
        font-size: 14px !important;
    }

    .navbar {
        padding-left: 20px;
        padding-right: 20px;
    }

    .stats-bg img {
        height: 700px !important;
    }

    .stats-bg {
        height: 700px !important;
    }

    .Countries {
        padding: 20px !important;

    }

}

header {
    position: fixed !important;
    width: 100%;
}

/* Header code End */

.destination-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 360px;
    padding-top: 50px;
}

.carousel-caption-custom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.carousel-caption-custom h1 {
    font-size: 48px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.6);
}

/* Optional dark overlay for better text visibility */
.carousel-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* Make images responsive */
.carousel-item img {
    height: 320px;
    object-fit: cover;
    filter: brightness(0.75);
}

@media screen and (max-width: 768px) {
    .carousel-caption-custom h1 {
        font-size: 28px;
    }

    .carousel-item img {
        height: 60vh;
    }

    .theme-filters {
        gap: 10px !important;

    }
}



.hero-section {
    min-height: 500px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image:
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 20px;
    /* height: 420px !important; */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://wallpaperaccess.com/full/4881542.jpg');
    pointer-events: none;
}

.airplane {
    position: absolute;
    top: 25%;
    right: 10%;
    width: 850px;
    height: 80px;
    opacity: 0.3;
    transform: rotate(-20deg) !important;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: rotate(-15deg) translateY(0px);
    }

    50% {
        transform: rotate(-15deg) translateY(-20px);
    }
}

.airplane svg {
    width: 100%;
    height: 100%;
    fill: rgba(255, 255, 255, 0.6);
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    width: 100%;
}

.hero-title {
    font-size: 35px;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.search-container {
    position: relative;
    max-width: 600px;
    width: 100%;
    margin: 0 auto 2rem;
}

.search-wrapper {
    display: flex;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: white;
    transition: all 0.3s ease;
}

.search-wrapper:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.search-input {
    flex: 1;
    padding: 20px 25px;
    border: none;
    outline: none;
    font-size: 1.1rem;
    color: #333;
    background: transparent;
}

.search-input::placeholder {
    color: #999;
    font-weight: 400;
}

.voice-btn {
    padding: 20px;
    border: none;
    background: transparent;
    cursor: pointer;
    color: #ff4757;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.voice-btn:hover {
    color: #ff3838;
    transform: scale(1.1);
}

.search-btn {
    padding: 20px 30px;
    border: none;
    background: #ff4757;
    color: white;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: #ff3838;
    transform: scale(1.05);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 20px 20px 20px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 10;
    align-items: flex-start;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
}

.dropdown.active {
    max-height: 400px;
    overflow-y: auto;
}

.dropdown-item {
    padding: 15px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
    color: #333;
    font-size: 1rem;
}

.dropdown-item:hover {
    background: #f8f9fa;
    color: #ff4757;
    transform: translateX(5px);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.country-suggestions {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    margin-top: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.suggestions-title {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.suggestions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.suggestion-item {
    padding: 15px 20px;
    background: rgba(255, 71, 87, 0.1);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    color: #333;
    font-weight: 500;
    border: 2px solid transparent;
}

.suggestion-item:hover {
    background: #ff4757;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 71, 87, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .search-input {
        padding: 18px 20px;
        font-size: 1rem;
    }

    .voice-btn,
    .search-btn {
        padding: 18px 20px;
    }

    .airplane {
        width: 100px;
        height: 60px;
        top: 10%;
        right: 5%;
    }

    .suggestions-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 10px;
    }

    .country-suggestions {
        padding: 20px;
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 18px;
        padding: 0 20px;
    }

    .search-container {
        padding: 0 20px;
    }

    .search-input {
        padding: 15px 18px;
        font-size: 0.95rem;
    }

    .voice-btn,
    .search-btn {
        padding: 10px 0px 10px 10px;
        font-size: 1rem;
    }

    .dropdown-item {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .suggestions-grid {
        grid-template-columns: 1fr 1fr;
    }

    .airplane {
        display: none;
    }
}

/* Scrollbar Styling */
.dropdown::-webkit-scrollbar {
    width: 6px;
}

.dropdown::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.dropdown::-webkit-scrollbar-thumb {
    background: #ff4757;
    border-radius: 3px;
}

.dropdown::-webkit-scrollbar-thumb:hover {
    background: #ff3838;
}



.visa-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.visa-card {
    background: #ffe5e5;
    border: 2px solid #e3cfcf;
    border-radius: 12px;
    width: 220px;
    padding: 20px 10px 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
    text-decoration: none;
}

.visa-card:hover {
    transform: scale(1.05);
}

.visa-flag {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}

.visa-title {
    font-size: 1rem;
    margin: 15px 0 10px;
    color: #333;
}

.visa-footer {
    display: flex;
    justify-content: space-between;
    padding: 8px 12px;
    background: #fff;
    border-radius: 0 0 10px 10px;
    font-weight: bold;
    color: #3a3a3a;
    font-size: 0.9rem;
}

.visa-price {
    color: #15803d;
    /* Tailwind green-700 */
    font-size: 14px !important;
}

/* Responsive */
@media (max-width: 768px) {
    .visa-card {
        width: 45%;
    }
}

@media (max-width: 480px) {
    .visa-card {
        width: 90%;
    }
}

.visa-viewall {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
}


/* From Uiverse.io by cssbuttons-io */
.viewall {
    font-size: 17px;
    padding: 1em 2.7em;
    font-weight: 500;
    background: #1f2937;
    color: white;
    border: none;
    position: relative;
    overflow: hidden;
    border-radius: 0.6em;
    cursor: pointer;
    width: 250px;
}

.gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 0.6em;
    margin-top: -0.25em;
    background-image: linear-gradient(rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 0.3));
}

.label {
    position: relative;
    top: -1px;
}

.transition {
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
    transition-duration: 500ms;
    background-color: #eb222a;
    border-radius: 9999px;
    width: 0;
    height: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

}

.viewall:hover .transition {
    width: 250px;
    height: 14em;
}

.viewall:active {
    transform: scale(0.97);
}



.step-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 10px 20px;
}

.step-card {
    background-color: #ffecec;
    border-radius: 12px;
    padding: 20px;
    width: 220px;
    text-align: center;
    border: 2px solid #f1dada;
    transition: all 0.3s ease;
    cursor: pointer;
}

.step-card:hover {
    background-color: #eb222a;
    color: white;
}

.step-card:hover .step-icon {
    background-color: #fff;
    color: #ff4d4d;
}

.step-icon {
    background-color: #ff1e1e;
    color: white;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    font-size: 20px;
    margin: 0 auto 15px;
    transition: background 0.3s, color 0.3s;
}

.step-heading {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.step-desc {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Active state */
.step-active {
    background-color: #ff1e1e;
    color: white;
}

.step-active .step-icon {
    background-color: white;
    color: #ff1e1e;
}

/* Responsive */
@media (max-width: 768px) {
    .step-card {
        width: 45%;
    }
}

@media (max-width: 480px) {
    .step-card {
        width: 100%;
    }
}


.heading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px 20px 20px;
}

.heading h1 {
    font-size: 27px;
    font-weight: 600;
}


.destination-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 30px;
}

.destination-card {
    width: 200px;
    height: 260px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.destination-card:hover {
    transform: scale(1.03);
}

.destination-footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.99), transparent);
    padding: 10px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.destination-name {
    font-size: 1rem;
    font-weight: bold;
}

.destination-icon i {
    font-size: 16px;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .destination-card {
        width: 45%;
        height: 220px;
    }
}

@media (max-width: 480px) {
    .destination-card {
        width: 90%;
        height: 200px;
    }
}


.testimonial-container {
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    position: relative;
    padding-bottom: 40px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    flex: 0 0 33.3333%;
    box-sizing: border-box;
    padding: 20px;
}

.testimonial-box {
    background: #faeaea;
    border-radius: 15px;
    display: flex;
    gap: 15px;
    padding: 20px;
    align-items: flex-start;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    min-height: 240px;
    border: 2px solid rgba(0, 0, 0, 0.155);

}

.testimonial-img {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    object-fit: cover;
}

.testimonial-content h4 {
    margin: 0;
    font-size: 18px;
}

.testimonial-stars {
    color: #f4b400;
    font-size: 16px;
    margin: 5px 0;
}

.testimonial-text {
    font-size: 15px;
    color: #333;
}

/* Dots */
.testimonial-dots {
    text-align: center;
    margin-top: 20px;
}

.testimonial-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 6px;
    background-color: #ccc;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.testimonial-dot.active {
    background-color: #333;
}

@media (max-width: 1024px) {
    .testimonial-card {
        flex: 0 0 50%;
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 100%;
    }

    .hero-section {
        height: 400px;
    }

    .hero {
        height: 400px;
    }
}


.dropdown-item {
    display: block;
    width: 100%;
    padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
    clear: both;
    font-weight: 400;
    color: var(--bs-dropdown-link-color);
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    display: flex !important;
    padding-left: 20px !important;
    padding-top: 20px !important;
    border-radius: var(--bs-dropdown-item-border-radius, 0);
}



.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}




/* Back to top button */
#backToTop {
    position: fixed;
    bottom: 20px;
    left: 20px;
    /* Left side */
    background: #333;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

#backToTop.show {
    opacity: 1;
    pointer-events: auto;
}





.custom-footer {
    background-color: #1c2331;
    border-radius: 40px 40px 0px 0px;
    /* font-family: Arial, sans-serif; */
}

.custom-footer-top {
    background-color: #eb222a;
    border-radius: 40px 40px 0px 0px;

    padding: 20px;
    text-align: center;
    display: flex;
    justify-content: space-between;
}

.custom-footer-connect {
    margin: 0;
    font-size: 16px;
    color: white;
}

.custom-social-icons a {
    color: white;
    margin: 0 10px;
    font-size: 20px;
    transition: 0.3s ease;
}

.custom-social-icons a:hover {
    color: #ddd;
}

.custom-footer-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 10px 20px;
    background-color: #111;
    color: white;
}

header {
    position: fixed;
    width: 100%;
}

.footer-box {
    flex: 1 1 220px;
    margin: 10px;
}

.footer-title {
    font-weight: bold;
    margin-bottom: 15px;
    border-bottom: 2px solid #eb222944;
    padding-bottom: 15px;
}

.footer-logo {
    max-width: 160px;
    height: auto;
    margin-bottom: 15px;
}

.footer-box ul {
    list-style: none;
    padding: 0;
}

.footer-box ul li {
    margin-bottom: 10px;
}

.footer-box ul li a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-box ul li a:hover {
    color: white;
    text-decoration: underline;
}

.footer-Contact li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-Contact i {
    width: 18px;
}

.custom-footer-bottom {
    background-color: #0d0d0d;
    text-align: center;
    padding: 15px;
    font-size: 14px;
}

.custom-footer-bottom a {
    color: #ffffff;
    text-decoration: none;
}

.custom-footer-bottom a:hover {
    text-decoration: underline;
}

.custom-footer-bottom p {
    color: #ffffff;
}

footer {
    padding-top: 40px;
    background-color: white !important;
}

.heading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px 20px 20px;
}


.breadcrumb-container {
    background-color: #f5f6f8;
    padding: 12px 20px;
    font-size: 15px;
    font-family: 'Segoe UI', sans-serif;
}

.breadcrumb-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.breadcrumb-list li {
    color: #555;
}

.breadcrumb-list li+li::before {
    content: "›";
    color: #aaa;
    margin: 0 8px;
}

.breadcrumb-list a {
    text-decoration: none;
    color: #333;
    transition: color 0.2s;
}

.breadcrumb-list a:hover {
    color: #d60000;
}

.breadcrumb-list .active {
    color: #d60000;
    font-weight: bold;
}


/* Back to top button */
#backToTop {
    position: fixed;
    bottom: 20px;
    left: 20px;
    /* Left side */
    background: #333;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

#backToTop.show {
    opacity: 1;
    pointer-events: auto;
}




/* Hide by default */
.mobile-bottom-nav {
    display: none;
}

/* Show only on mobile */
@media (max-width: 768px) {
    .mobile-bottom-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.85);
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding: 8px 0;
        z-index: 9999;
        border-radius: 12px 12px 0 0;
    }

    .mobile-bottom-nav .nav-item {
        color: #fff;
        text-align: center;
        flex: 1;
        text-decoration: none;
        font-family: sans-serif;
    }

    .mobile-bottom-nav .nav-item i {
        font-size: 20px;
        display: block;
        margin-bottom: 4px;
    }

    .mobile-bottom-nav .nav-item span {
        font-size: 14px;
    }

    .whatsapp-float {
        display: none;
    }

    .stats-section {
        max-width: 1200px;
        height: 500px !important;
    }

    .stats-bg {
        height: 500px !important;
    }

    .stats-bg img {
        height: 500px !important;
    }


    .stats-section {
        margin: 10px auto !important;
    }
}




@media (max-width: 768px) {
    .footer-box ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns per row */
        gap: 8px 16px;
        /* row & column gaps */
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .footer-box ul li {
        margin: 0;
        /* remove default list spacing */
        text-align: start;
        padding-bottom: 2px;
        /* optional: center the link text */
    }

    .footer-Contact {
        display: block !important;
        gap: 10px !important;
    }

    .footer-boxss {
        display: flex;
        gap: 10px;
        align-items: center;
    }

    .footer-logo {
        width: 100px;
    }

    .footer-boxss img h2 {
        font-size: 12px !important;
    }

    .font-awesome {
        font-size: 14px !important;
    }
}

.footer-boxss {
    padding-top: 20px;
    padding-right: 20px;
}


@media (max-width: 768px) {
    .help-container {
        display: block;
        position: relative;
    }

    .help-btn {
        width: 100%;
        background: #0074aa00;
        color: #fff;
        padding: 10px;
        border: none;
        text-align: left;
        font-size: 14px;
        cursor: pointer;
        display: flex !important;

    }

    .help-dropdown {
        display: none;
        background: #f9f9f9;
        border: 1px solid #ddd;
        padding: 10px;
    }

    .help-dropdown span {
        display: block;
        margin: 5px 0;
        font-size: 14px;
        color: #000;
    }

    .help-container.active .help-dropdown {
        display: block;
    }


    .carousel-slide {
        height: 100%;
    }

    .stats-section {
        margin: 0px auto;
    }
}

.help-btn {
    display: none;
}





     /* Trigger style */
     .right span {
       cursor: pointer;
       color: #ffffff;
       /* background: #ffffff; */
       padding: 8px 16px;
       border-radius: 6px;
       font-size: 14px;
       display: inline-flex;
       align-items: center;
       gap: 6px;
       height: 22px;
     }

     /* Modal overlay */
     .modal {
       display: none;
       /* Hidden by default */
       position: fixed;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       background: rgba(0, 0, 0, 0.5);
       justify-content: center;
       align-items: center;
       z-index: 1000;
     }

     /* Modal box */
     .modal-content {
       background: #fff;
       padding: 20px;
       border-radius: 10px;
       width: 90%;
       max-width: 400px;
       box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
     }

     /* Close button */
     .close {
       float: right;
       font-size: 24px;
       font-weight: bold;
       cursor: pointer;
     }

     /* Inputs */
     .modal-content form {
       display: flex;
       flex-direction: column;
       gap: 12px;
     }

     .modal-content input {
       padding: 10px;
       border: 1px solid #ccc;
       border-radius: 6px;
     }

     .modal-content button {
       background: #eb222a;
       color: white;
       padding: 10px;
       border: none;
       border-radius: 6px;
       cursor: pointer;
     }

     .modal-content button:hover {
       background: #850707;
     }

     /* Responsive tweaks */
     @media (max-width: 480px) {
       .modal-content {
         padding: 15px;
         font-size: 14px;
       }
     }

     .text-colour {
       color: #000;
     }

     .display-flex {
       display: flex;
       justify-content: space-between;
     }

     .close {
       color: #000;
     }
