* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body {
    background-color: #121212;
    color: #e0e0e0;
}

/* Navbar Styles */
/* .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1f1f1f;
    color: #fff;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    margin-top: 0px;
}
@media (max-width: 768px) {
    .navbar div {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar a {
        margin: 5px 0;
    }
}
.navbar a {
    color: #fff;
    text-decoration: none;
    margin: 0 1rem;
    font-weight: bold;
    transition: color 0.3s;
}


.navbar-logo {
    font-size: 1.8rem;
    font-weight: bold;
}

.navbar div {
    display: flex;
    flex-wrap: wrap;
} */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    position: relative;
}

.navbar a:hover {
    color: #007bff;
}

.navbar-logo {
    font-size: 1.5rem;
    color: white;
}

.navbar-menu {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 15px;
}

.navbar-menu a {
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    transition: color 0.3s;
}

.navbar-menu a:hover {
    color: #ff9800;
}

.navbar-toggle {
    display: none;
    background-color: transparent;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .navbar-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #333;
        padding: 10px 0;
        z-index: 1000;
        border-top: 2px solid #ff9800;
    }

    .navbar-menu a {
        text-align: center;
        padding: 10px;
        border-bottom: 1px solid #444;
    }

    .navbar-menu a:last-child {
        border-bottom: none;
    }

    .navbar-menu.active {
        display: flex;
    }

    .navbar-toggle {
        display: block;
    }
}

/* Marquee Section */

/* Carousel Section */
.carousel-container {
    /* position: relative;*/
    overflow:auto;
    height: 65vh; /* You can adjust this height as per your design */
    width: 75%;
    margin-bottom: 50px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    /* align-items: center; */
    margin-left: 12.5%;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    
}

.carousel img {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
      /* Ensure the image fits the height of the container */
    object-fit:cover;  /* Makes the image cover the entire space while maintaining aspect ratio */
}

/* Editor Sections */
.editor-section {
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center; 
    padding: 2rem;
    background-color: #121212;
    min-height: 40vh;
}

.editor-container {
    background-color: #1e1e1e;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 1200px;
    margin-bottom: 2rem;
}

.editor-container h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.editor-container textarea {
    width: 100%;
    height: 200px;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical; 
    margin-bottom: 1rem;
}

.editor-container button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.editor-container button:hover {
    background-color: #0056b3;
}

/* Footer Styles */
footer {
    background-color: #1f1f1f;
    color: #fff;
    text-align: center;
    padding: 1.5rem 0;
}

footer p {
    margin-bottom: 0.5rem;
}

footer a {
    color: #007bff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Partners Section */
.partners-section {
    background-color: #1e1e1e;
    padding: 2rem;
    text-align: center;
}

.partners-section h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.partners-marquee {
    display: flex;
    overflow: hidden;
    width: 100%;
    margin-top: 30px;
}

.partners-marquee-content {
    display: flex;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.partners-marquee img {
    height: 80px;
    margin: 0 2rem;
    opacity: 0.7;
    transition: opacity 0.3s, transform 0.3s;
}

.partners-marquee img:hover {
    opacity: 1;
    transform: scale(1.1); /* Optional hover effect */
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); } /* Moves the content completely off-screen */
}

@media (max-width: 768px) {
    .card {
        flex: 1 1 100%;
    }
}

section#b {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 2rem;
}

div#c, div#d {
    background-color: #1e1e1e;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    width: 45%;
    margin-bottom: 2rem;
}

h2#e, h2#f {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

textarea#g, textarea#h {
    width: 100%;
    height: 100px;
    border: 1px solid #333;
    border-radius: 6px;
    background-color: #2e2e2e;
    color: #ffffff;
    padding: 0.5rem;
    font-size: 1rem;
    resize: none;
}

button#i, button#j, button#k, button#l, button#m {
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    color: #ffffff;
    background-color: #007acc;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button#i:hover, button#j:hover, button#k:hover, button#l:hover, button#m:hover {
    background-color: #005f99;
}

ul#n {
    margin-top: 1rem;
    list-style: none;
    padding: 0;
}

ul#n li#o {
    background-color: #292929;
    color: #ffffff;
    border: 1px solid #444;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

div#p {
    color: #ffffff;
    background-color: #292929;
    font-size: 1rem;
    line-height: 1.5;
    margin-top: 1rem;
    padding: 0.5rem;
    border: 1px solid #444;
    border-radius: 6px;
}
.onr{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size:xx-large;
    color: #007bff;
    transition: background-color 0.3s ease;
    cursor: pointer;
    margin-bottom: 20px;
}
.onr:hover{
    transform:scale(1.3) ;
}
#membership-cards {
    display: flex;
    gap: 20px;
    height: 35vh;
    justify-content: space-evenly;
    align-items: center;
}

/* Individual Cards */
.card {
    background: #1e1e1e;
    border-color: orange;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    height: 90%;
    /* height: 40%; */
    width: 30%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
    #membership-cards {
        flex-wrap: wrap;
        height: max-content;
    }
}

@media (max-width: 768px) {
    textarea {
        min-height: 70px;
    }
}
.card h3 {
    margin: 0;
    font-size: 24px;
}

.card p {
    font-size: 14px;
    color: #bbb;
    margin: 10px 0;
}

.card h2 {
    margin: 20px 0;
    font-size: 28px;
    color: #f0f0f0;
}

.card button {
    background-color: #ff9800;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.card button:hover {
    background-color: #e68900;
}

/* Hover Effect */
.card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 10px rgba(255, 255, 255, 0.2);
}

/* Card-Specific Colors */
.silver {
    border-top: 4px solid silver;
}

.gold {
    border-top: 4px solid gold;
}

.diamond {
    border-top: 4px solid #00e5ff;
}

  
  #app-cards {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    height: 60vh;
  }
  
  #app-cards .card {
    background: #1e1e1e;
    padding: 20px;
    border-radius: 10px;
    width: 23%;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(6, 6, 6, 0.3);
    border-color: rgb(32, 142, 205);
    height: 100%;
    margin-bottom: 20px;
  }
  
  #app-cards .card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
    height: 74%;
  }
  
  #app-cards .card h3 {
    margin: 10px 0;
    font-size: 20px;
    color: #ffffff;
  }
  
  #app-cards .card p {
    font-size: 14px;
    color: #bbb;
    margin: 10px 0;
  }
  
  #app-cards .card button {
    background-color: #ff9800;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
  }
  
  #app-cards .card button:hover {
    background-color: #e68900;
  }
  
  #app-cards .card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 10px rgba(255, 255, 255, 0.2);
  }
  
  /* Card-Specific Colors */
  #card-adventure { border-top: 4px solid #00bcd4; }
  #card-travel { border-top: 4px solid #4caf50; }
  #card-fitness { border-top: 4px solid #f44336; }
  #card-green-tourism { border-top: 4px solid #8bc34a; }
  
  .best{
    font-weight: bolder;
    font-size: xx-large;
    color: burlywood;
    text-shadow: yellow;
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }



  footer{
    margin-top: 5%;
  }

  footer {
    width: 100%;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    text-align: center;
    position: relative; /* Ensure it stays within the document flow */
    bottom: 0;
    left: 0;
    z-index: 10;
    margin-top: 20px; /* Adds spacing between the footer and the cards */
    clear: both; /* Clears floating elements above it */
}

footer p {
    margin: 5px 0;
}

footer a {
    color: #ff9800;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Ensure that the content above the footer has enough spacing
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
} */

#membership-cards, #app-cards {
    margin-bottom: 50px; /* Add bottom spacing to prevent overlap */
}
@media (max-width: 768px) {
    #app-cards {
        flex-wrap: wrap;
        height: max-content;
    }
}

@media(max-width: 768px)
{
    .onr{
        font-size: large;
    }
}

@media(max-width: 768px)
{
    .carousel-container{
        height: 25vh;
        width: 85%;
        margin-left: 7.5%;
        margin-top: 20px;
    }
}

@media(max-width: 768px)
{
    #b{
        display: flex;
        flex-direction: column;

        width: 210vw;
    }
    
}
@media(max-width: 768px)
{
    #c,#d{
        height: 100%;
        width: 200%;
    }
}
