@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Oswald:wght@200..700&family=Pacifico&display=swap');
/* General Styles */
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "DM Sans", sans-serif;
        font-size: 18px;
    }
    /* General Styles for Tab Functionality */
        .popular-tabs {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-bottom: 20px;
        }

        .tab {
        font-size: 18px;
        cursor: pointer;
        padding: 10px 20px;
        border-bottom: 2px solid transparent;
        transition: all 0.3s ease;
        }
        main {
            margin-top: 100px; /* Adjust this value to match the height of your header */
            max-width: 1400px;
            margin: 140px auto ;
        }
        .tab.active {
        font-weight: bold;
        border-bottom: 2px solid #000;
        }

        .tab-content {
        display: none;
        }

        .tab-content:not(.hidden) {
        display: block;
        }

        .hidden {
        display: none;
        }

    main{
        max-width: 1400px;
      
    }
    body {
        font-family: "IBM Plex Sans", sans-serif;
        color: #000;
        background-color: #fff;
    }

    

    h1 {
        font-size: 80px;
        font-family: "IBM Plex Sans", sans-serif;
        font-weight: 400;
        font-style: normal;
        color:#6cc832
    }

    h2 {
        font-size: 2.5rem;
        font-family: "IBM Plex Sans", sans-serif;
        color:#6cc832;
    }

    p {
        font-size: 18px;
        font-family: "IBM Plex Sans", sans-serif;
        color: #555;
        line-height: 1.5;
    }

    a {
        text-decoration: none;
        font-family: "IBM Plex Sans", sans-serif;
        color: inherit;
    }

    img {
        max-width: 100%;
    }

    button {
        border: none;
        font-family: "IBM Plex Sans", sans-serif;
        padding: 10px 20px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 16px;
    }

    /* Header */
    header {
        display: flex;
        position: fixed; /* Makes the header fixed on top */
        top: 0; /* Position it at the very top of the page */
        left: 0;
        width: 100%; /* Ensure the header spans the full width */
        z-index: 1000; /* Make sure the header is above other elements */
        background-color: #ffffff; /* Optional: Set a background color to avoid transparency */
        box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1); /* Optional: Add a shadow for better visibility */
        font-family: "IBM Plex Sans", sans-serif;
        justify-content: space-between;
        align-items: center;
        padding: 20px 50px;
        border-bottom: 1px solid #eaeaea;
    }
.bundle-header{
    display: flex ;
        justify-content: space-between;
        width: 100%;
        align-items: flex-end;
}
    header .logo {
        font-family: "Dancing Script", cursive;
        font-size: 50px;
        font-weight: bold;
        color: #000000;
    }
    .logo img{
        max-width: 230px;
    }
    .currencyname{
        font-size: 18px;
        color: #6cc832;
    }
    header nav a {
        margin: 0 15px;
        text-decoration: none;
        color: #333;
    }

    header nav a:hover {
        text-decoration: underline;
    }
/* General Navigation Styles */
nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px;
background-color: #fff;

}

.nav-links {
display: flex;
list-style: none;
gap: 20px;
align-items: center;
}

.nav-links li a {
text-decoration: none;
color: #333;
font-size: 16px;
}

/* Burger Icon Styles */
.burger-icon {
display: none;
flex-direction: column;
gap: 5px;
cursor: pointer;
}

.burger-icon .line {
width: 25px;
height: 3px;
background-color: #333;
border-radius: 2px;
}

/* Mobile Styles */
@media (max-width: 768px) {
.burger-icon {
    display: flex;
}

.nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 20px;
    z-index: 1000;
}

.nav-links.active {
    display: flex;
}

.nav-links li {
    margin: 10px 0;
}
}
    /* Hero Section */
    .hero {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 50px;
        flex-wrap: wrap;
    }

    .hero-text {
        max-width: 50%;
    }

    .search-bar {
        position: relative;
        margin-top: 20px;
    }

    .search-bar input {
        width: 100%;
        padding: 15px 20px;
        border: 1px solid #ccc;
        border-radius: 50px;
        font-size: 16px;
        outline: none;
    }

    .search-bar button {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
    }

    .trusted-section {
        margin-top: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .trusted-section img {
        height: 30px;
    }

    /* Popular Destinations */
    .popular-section {
        text-align: center;
        padding: 50px 20px;
    }

    .popular-tabs span {
        font-size: 32px;
       color:#6cc832;
        margin: 0 45px;
        font-family: "DM Sans", sans-serif;
    }

    .popular-tabs .active {
        color: #6cc832;
        border-bottom: 2px solid #6cc832;
    }

    .popular-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin-top: 30px;
    }

    .destination-card {
        display: flex;
        align-items: center;
        padding: 15px;
        border: 1px solid #eaeaea;
        border-radius: 10px;
    }

    .destination-card img {
        width: 30px;
        height: 30px;
        margin-right: 15px;
    }

    /* How It Works */
    .how-it-works {
        text-align: center;
        padding: 50px 20px;
    }
    .download-buttons {
display: flex;
gap: 10px;
}

.download-buttons a {
display: flex;
align-items: center;
padding: 10px 20px;
border-radius: 5px;
text-decoration: none;
color: white;
font-size: 14px;
font-weight: bold;
}

.download-buttons .app-store {
background-color: black;
}

.download-buttons .google-play {
background-color: black;
}

.download-buttons a i {
font-size: 20px;
margin-right: 10px;
}

/* Hover Effect */
.download-buttons a:hover {
opacity: 0.8;
}
    .how-it-works-grid {
        display: flex;
        gap: 128px;
        margin-top: 30px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .how-it-works-card {
        text-align: center;
        flex: 1;
        max-width: 300px;
    }

    .how-it-works-card img {
        border-radius: 10px;
    }

    /* Compatible Devices */
    .compatible-section {
        padding: 50px 20px;
        text-align: center;
    }

    .device-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin-top: 30px;
    }

    .device-card {
        padding: 15px;
        border: 1px solid #eaeaea;
        border-radius: 10px;
        text-align: center;
    }

    .device-card img {
        max-width: 100px;
        margin: auto;
    }

    /* Footer Section */
footer {
background-color: #f9f9f9;
padding: 50px 20px;
display: flex;
justify-content: center;
}

.footer-container {
width: 100%;
max-width: 1200px;
display: flex;
flex-wrap: wrap;
gap: 20px;
}

.footer-left {
flex: 1;
min-width: 250px;
text-align: left;
}

.footer-left img {
margin-bottom: 15px;
}

.footer-left p {
font-size: 14px;
color: #777;
margin-bottom: 10px;
}

.social-icons {
display: flex;
gap: 10px;
}

.social-icons a {
font-size: 1.2rem;
color: #555;
}

.social-icons a:hover {
color: #6cc832;
}

.footer-links {
flex: 2;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
gap: 20px;
}

.footer-column h3 {
font-size: 16px;
font-weight: bold;
margin-bottom: 10px;
color: #333;
}

.footer-column ul {
list-style: none;
padding: 0;
}

.footer-column ul li {
margin-bottom: 5px;
}

.footer-column ul li a {
font-size: 14px;
color: #555;
text-decoration: none;
}

.footer-column ul li a:hover {
text-decoration: underline;
}

.app-buttons a img {
margin-bottom: 10px;
border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
.footer-container {
    flex-direction: column;
}

.footer-links {
    grid-template-columns: 1fr;
}
}

/* Compatible Devices Section */
.compatible-devices {
padding: 50px 20px;
text-align: center;
background-color: #fff;
}

.compatible-devices h2 {
font-size: 2.5rem;
font-weight: bold;
color:#6cc832;
margin-bottom: 20px;
}

.compatible-devices p {
font-size: 1rem;
line-height: 1.5;
color: #555;
margin-bottom: 20px;
}

.compatible-devices a.link {
color: #6cc832;
text-decoration: underline;
}

.compatible-devices a.link:hover {
text-decoration: none;
}

.devices-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
gap: 20px;
margin: 30px 0;
}

.device-card {
background-color: #f7f7f7;
border: 1px solid #eaeaea;
border-radius: 8px;
font-size: 1rem;
font-weight: bold;
color: #333;
padding: 15px;
display: flex;
align-items: center;
justify-content: center;
transition: background-color 0.3s ease, transform 0.2s ease;
}
.destination-card:hover{
background-color: #e3e3e3;
transform: scale(1.05);
cursor: pointer;
}
.device-card:hover {
background-color: #e3e3e3;
transform: scale(1.05);
cursor: pointer;
}

.check-button {
padding: 15px 30px;
font-size: 1rem;
font-weight: bold;
color: #fff;
background-color: #6cc832;
border: none;
border-radius: 5px;
margin-top: 30px;
cursor: pointer;
transition: background-color 0.3s ease;
}

.check-button:hover {
background-color: #6cc832;
}

/* Responsive Design */
@media (max-width: 768px) {
.devices-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}
h1{
font-size: 50px;
color: #6cc832;
}
.popular-tabs{
display: flex
;
justify-content: center;
gap: 20px;
margin-bottom: 20px;
flex-wrap: wrap;
}
.check-button {
    width: 100%;
}
}
    /* Mobile Styles */
    @media (max-width: 768px) {
        .hero {
            flex-direction: column;
        }

        .hero-text {
            max-width: 100%;
        }

        .popular-grid {
            grid-template-columns: repeat(1, 1fr);
        }

        .how-it-works-grid {
            flex-direction: column;
            text-align: center;
    align-content: center;
        }

        .device-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    .css-a9a91z {
height: 40px;
max-width: 128px;
padding: 8px 12px;
border-radius: 6px;
border: 1px solid #FFFFFF;
background: #0B0D10;
    }
    .css-a9a91z {
    gap: 16px;
}
.css-a9a91z svg {
height: 24px;
color: #FFFFFF;
}
.destination-card img{
border-radius: 50%;
}
.dropdown {
        position: absolute;
        top: 110%;
        left: 0;
        width: 100%;
        background: #fff;
        border: 1px solid #ccc;
        border-radius: 5px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        max-height: 200px;
        overflow-y: auto;
        z-index: 1000;
        display: none;
    }

    .dropdown.active {
        display: block;
    }

    .dropdown-item {
        display: flex;
        align-items: center;
        padding: 10px;
        cursor: pointer;
    }

    .dropdown-item img {
        width: 20px;
        height: 15px;
        margin-right: 10px;
    }

    .dropdown-item:hover {
        background: #f9f9f9;
    }
    /* Modal Styles */
.modal {
display: none; /* Hidden by default */
position: fixed; 
z-index: 1000; /* On top */
left: 0;
top: 0;
width: 100%; 
height: 100%; 
overflow: auto; 
background-color: rgba(0,0,0,0.5); /* Black w/ opacity */
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 31%;
    height: 46vh;
    border-radius: 10px;
    text-align: center;
}

.modal-content h2 {
margin-bottom: 20px;
color:#6cc832;
}

.modal-content form {
display: flex;
flex-direction: column;
}

.modal-content label {
margin-bottom: 5px;
text-align: left;
font-size: 14px;
}

.modal-content input {
padding: 10px;
margin-bottom: 15px;
border: 1px solid #ccc;
border-radius: 5px;
font-size: 14px;
}
.joinus{
font-family: "Pacifico", cursive;
font-size: 30px;
color:#6cc832;
}
.modal-content button {
 
color: white;
border: none;
border-radius: 5px;
padding: 10px;
font-size: 16px;
cursor: pointer;
}
.product-section {
    display: flex;
    justify-content: center;
    padding: 50px 20px;
    font-family: "DM Sans", sans-serif;
}


/* Home page logo */
.scrolling-logos {
    display: flex;
    overflow: hidden;
    
    white-space: nowrap;
    padding: 20px 0;
    height: 70px;
    align-items: center; /* Vertically center the logos */
    margin-top: 50px;
}

.scrolling-logos img {
    height: 50px;
    filter: grayscale(100%);
    opacity: 0.5;
    margin-right: 80px; /* Spacing between logos */
    transition: opacity 0.3s;
  
}

.scrolling-logos img:hover {
    opacity: 1;
}
/* end of logo functions */



.product-container {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    width: 100%;
    flex-wrap: wrap;
}

.product-image img {
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
}

.product-details {
    flex: 1;
}

.product-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
    color:#6cc832
}

.product-header p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #555;
}

.rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.rating-value {
    font-weight: bold;
    color: #333;
}

.data-bundle h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color:#6cc832;
}

.bundle-options {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.bundle-option {
    display: flex ;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        border: 1px solid #eaeaea;
        border-radius: 8px;
        transition: all 0.3s ease;
        flex-wrap: wrap;
}

.bundle-option:hover {
    border-color: #ccc;
    cursor: pointer;
}
a{
    font-family: "DM Sans", sans-serif;
}
.bundle-option.selected {
    border: 2px solid #6cc832;
    background-color: #f9fff9;
    position: relative;
}
.nav-links li a:hover{
    color: #6cc832;
    
}
.popular-label {
    font-size: 0.8rem;
    color: #fff;
    background-color: #6cc832;
    padding: 2px 8px;
    border-radius: 5px;
}
label{
    font-size: 15px;
}
.features {
    display: flex;
    gap: 18px;
    margin: 20px 0 20px 0;
    color: #333;
}
button{
    background-color: #6cc832;
    color: white;
}
.features p {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
}

.features i {
    margin-right: 5px;
}

.validity-options {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.validity-options label {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    cursor: pointer;
}

.validity-options input {
    margin-right: 5px;
}

.buy-now {
    background-color: #6cc832;
    color: #fff;
    font-weight: bold;
    font-size: 1rem;
    padding: 15px 30px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: center;
    transition: background-color 0.3s ease;
}

.buy-now:hover {
    background-color: #559b00;
}
.top-bar {
display: flex;
justify-content: flex-end;
align-items: center;
 
padding: 10px 20px;

font-size: 14px;
}

.currency-selector, .language-selector {
display: flex;
align-items: center;
margin-left: 20px;
}

.currency-selector label, .language-selector label {
margin-right: 10px;
}

.currency-selector select, .language-selector select {
padding: 5px;
border: 1px solid #ccc;
border-radius: 5px;
font-size: 14px;
outline: none;
background-color: #fff;
}

.modal-content button:hover {
background-color: #6cc832;
}

.close-button {
color: #aaa;
float: right;
font-size: 28px;
font-weight: bold;
cursor: pointer;
}

.close-button:hover, .close-button:focus {
color: black;
text-decoration: none;
}
/* Show selectors only on desktop in the top bar */
.desktop-only {
display: flex;
}

.mobile-only {
display: none;
}

/* For mobile, show selectors in the menu */
@media (max-width: 768px) {
.desktop-only {
    display: none; /* Hide top-bar selectors */
}

.mobile-only {
    display: block; /* Show selectors in the mobile menu */
    margin: 10px 0;
}
.page-body{
    min-height: 40vh;
        display: flex;
        justify-items: start;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: center !important;
        flex-direction: column-reverse;
        
}
canvas{
    width: 325px !important;
    height: 325px !important;
}
.bold{
    font-size: 1.5rem;
}
.mobile-only label {
    font-size: 14px;
    margin-right: 5px;
}
.logo img{
    max-width: 140px;
}
.mobile-only select {
    width: 100%;
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.product-section,.features-section{
    width: 90%;
    margin: 0 auto;
    margin-top: 10%;
}
}
.page-body{
    min-height: 40vh;
    display: flex  ;
        justify-items: start;
        flex-wrap: wrap;
        justify-content: space-around;
}
.loading{
    text-align: -webkit-center;
}
.css-ausvtz{
    position: fixed;
    width: auto;
    top: auto;
    max-height: 80vh;
    max-width: 90%;
    min-width: 320px;
    background-color: rgb(255, 255, 255);
    border-radius: 12px;

}
.css-1w3k3xy{
    display: flex;
    flex-direction: column;
    padding: 16px;
    width: auto;
    position: relative;
    gap: 24px;
}
.css-orv8zz {
    margin: 0px;
    font-family: var(--roobert-font);
    font-weight: 700;
    border: none;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    cursor: pointer;
    border-radius: 12px;
    width: fit-content;
    flex-direction: row;
    font-size: 16px;
    line-height: 20px;
    gap: 8px;
    background: none;
    padding: 0px;
    height: auto;
    color: rgb(11, 13, 16);
    outline: none;
    position: absolute;
    right: 16px;
    top: 16px;
}
.css-hjfwr2{
    display: grid
    ;
        grid-template-columns: auto auto;
        gap: 12px;
}
.bold{
    font-size: 3.5rem;
    font-family: "DM Sans", sans-serif;
    display: flex;
    align-items: flex-start;
    color: #6cc832;
    margin: 5px;
    font-weight: 900;
}
.css-pmmmkr{
    font-size: 12px;
}
.more-details-btn{
    background: transparent;
}
.payment-method{
    text-align: -webkit-center;
    margin: 25px;
}
/* Fix for .product-section on mobile */
@media (max-width: 768px) {
    .product-section {
        display: block; /* Change flex to block for better alignment on smaller screens */
        padding: 20px; /* Reduce padding for mobile */
        width: 100%; /* Ensure it spans the full width */
        margin: 0 auto;
    }
    .modal-content {
        background-color: #fff;
        margin: 50% auto;
        padding: 20px;
        border: 1px solid #888;
        width: 100%;
        height: 46vh;
        border-radius: 10px;
        text-align: center;
    }
    .product-container {
        display: block; /* Stack items vertically on mobile */
        width: 100%; /* Make the container adapt to the screen width */
    }

    .product-image img {
        width: 100%; /* Ensure the image scales properly */
        max-width: 100%; /* Prevent overflow */
        margin-bottom: 20px; /* Add space between image and details */
    }

    .product-details {
        width: 100%; /* Ensure the details take up full width */
    }

    .bundle-option {
        flex-direction: column; /* Stack elements vertically */
        text-align: center; /* Center-align the content */
    }

    .bundle-option span,
    .bundle-option .validity-options,
    .bundle-option .features {
        text-align: center; /* Align text to the center */
        margin-bottom: 10px; /* Add space between items */
    }

    .features {
        justify-content: center; /* Center the icons */
        gap: 15px; /* Adjust spacing between feature items */
        flex-wrap: wrap;
    }

    .buy-now {
        width: 100%; /* Make the button full-width */
        margin-top: 20px; /* Add space above the button */
    }
}