/* styles.css */

body {
    font-family: 'Lexend', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

/* General styles */
body {
    font-family: 'Lexend', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}
.page-header {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    color: rgb(9, 73, 54);
    text-align: center;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lexend', sans-serif;
    transition: all 0.4s ease;;
}
:root{
    --body-color: #E4E9F7;
    --nav-color: rgb(3, 75, 80);
    --side-nav: #061779;
    --text-color: #FFF;
    --search-bar: #F2F2F2;
    --search-text: #010718;
    --text-color1: #000000;
    --blog-section:white;
    --blog-head:rgb(3, 75, 80);
}
body{
    height: 100vh;
    background-color: var(--body-color);
}
body.dark{
    --body-color: #18191A;
    --nav-color: #242526;
    --side-nav: #242526;
    --text-color: #CCC;
    --search-bar: #242526;
    --text-color1: #FFF;
    --blog-section:#18191A;
    --blog-head:rgb(1, 148, 21);
}
/* ===== Colours ===== */
:root{
    --body-color: #E4E9F7;
    --nav-color: rgb(3, 75, 80);
    --side-nav: rgb(2, 12, 58);
    --text-color: #FFF;
    --search-bar: #F2F2F2;
    --search-text: #010718;
    --text-color1: #000000;
    --profile-color: #FFF;
    --profile-text: #000000;
    --suggestions:#FFF;

}
body{
    background-color: var(--body-color);
}
body.dark{
    --body-color: #18191A;
    --nav-color: #242526;
    --side-nav: #242526;
    --text-color: #CCC;
    --search-bar: #242526;
    --text-color1: #FFF;
    --profile-color:#242526;
    --profile-text: #FFF;
    --suggestions: #242526;
}


.logo-img {
	width: 50px;
	height: 50px;
	/* margin-right: 10px; */
  }
  
  .logo-container {
    display: flex;
    align-items: center;
    text-align: left;
}

.logo-img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    border-radius: 1rem;
}
.g-head{
color: var(--profile-text1);
text-align: center;
padding: 20px 0;
color: rgb(2, 121, 75);
font-family: 'Oswald', sans-serif;
margin-top: 1rem;
}

  nav .nav-bar .logo.navLogo {
    display: flex;
    align-items: center;
}

nav .nav-bar .logo.navLogo img {
    /* width: 60px;
    height: 60px; */
    margin-right: 10px;
	border-radius: 15px;
}

nav{
    position: fixed;
    top: 0;
    left: 0;
    height: 80px;
    width: 100%;
    background-color: var(--nav-color);
    z-index: 10000;
}
body.dark nav{
    border: 1px solid #393838;
}
nav .nav-bar{
    position: relative;
    height: 100%;
    max-width: 1000px;
    width: 100%;
    background-color: var(--nav-color);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
	padding: 1rem;
}
nav .nav-bar .sidebarOpen{
    color: var(--text-color);
    font-size: 30px;
    padding: 15px;
    cursor: pointer;
    display: none;
}
nav .nav-bar .logo a{
    font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
    text-align: left;
    font-family: 'Oswald', sans-serif;
}
.menu .logo-toggle{
    display: none;
}
.nav-bar .nav-links{
    display: flex;
    align-items: center;
}
.nav-bar .nav-links li{
    margin: 0 5px;
    list-style: none;
}
.nav-links li a{
    position: relative;
    font-size: 15px;
    font-weight: 400;
    color: var(--text-color);
    text-decoration: none;
    padding: 10px;
    font-family: 'Poppins', sans-serif;
}
.nav-links li a::before{
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    height: 6px;
    width: 6px;
    border-radius: 50%;
    background-color: var(--text-color);
    opacity: 0;
    transition: all 0.3s ease;
}
.nav-links li:hover a::before{
    opacity: 1;
}
.nav-bar .darkLight-searchBox{
    display: flex;
    align-items: center;
}
.darkLight-searchBox .dark-light,
.darkLight-searchBox .searchToggle{
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
}
.dark-light i,
.searchToggle i{
    position: absolute;
    color: var(--text-color);
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.dark-light i.sun{
    opacity: 0;
    pointer-events: none;
}
.dark-light.active i.sun{
    opacity: 1;
    pointer-events: auto;
}
.dark-light.active i.moon{
    opacity: 0;
    pointer-events: none;
}
/* .searchToggle i.cancel{
    opacity: 0;
    pointer-events: none;
}
.searchToggle.active i.cancel{
    opacity: 1;
    pointer-events: auto;
}
.searchToggle.active i.search{
    opacity: 0;
    pointer-events: none;
}
.searchBox{
    position: relative;
} */
/* .searchBox .search-field{
    position: absolute;
    bottom: -85px;
    right: 5px;
    height: 50px;
    width: 300px;
    display: flex;
    align-items: center;
    background-color: var(--nav-color);
    padding: 3px;
    border-radius: 6px;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
} */
/* .searchToggle.active ~ .search-field{
    bottom: -74px;
    opacity: 1;
    pointer-events: auto;
} */
/* .search-field::before{
    content: '';
    position: absolute;
    right: 14px;
    top: -4px;
    height: 12px;
    width: 12px;
    background-color: var(--nav-color);
    transform: rotate(-45deg);
    z-index: -1;
} */
/* .search-field input{
    height: 100%;
    width: 100%;
    padding: 0 45px 0 15px;
    outline: none;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
    color: var(--search-text);
    background-color: var(--search-bar);
} */
body.dark .search-field input{
    color: var(--text-color);
}
/* .search-field i{
    position: absolute;
    color: var(--nav-color);
    right: 15px;
    font-size: 22px;
    cursor: pointer;
} */
body.dark .search-field i{
    color: var(--text-color);
}
@media (max-width: 790px) {
    nav .nav-bar .sidebarOpen{
        display: block;
    }
    .menu{
        position: fixed;
        height: 100%;
        width: 320px;
        right: -100%;
        top: 0;
        padding: 20px;
        background-color: var(--side-nav);
        z-index: 100;
        transition: all 0.4s ease;
    }
    nav.active .menu{
        right: -0%;
    }
    nav.active .nav-bar .navLogo a{
        opacity: 0;
        transition: all 0.3s ease;
    }
    .menu .logo-toggle{
        display: block;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .logo-toggle .siderbarClose{
        color: var(--text-color);
        font-size: 24px;
        cursor: pointer;
    }
    .nav-bar .nav-links{
        flex-direction: column;
        padding-top: 30px;
    }
    .nav-links li a{
        display: block;
        margin-top: 20px;
    }
}

/* Search Box container styles */
.search-box-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    background-color: var(--nav-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 5rem;
    position: relative; /* Ensure dropdown is relative to the search box */
    width: 100%;
  }
  
  .search-input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 4px solid var(--search-bar);
    border-radius: 5px 0 0 5px;
    background-color: var(--search-bar);
    color: var(--text-color1);
    outline: none;

  }
  
  .searcbox-outline {
    border: 2px solid var(--searchbox-outline);
    display: flex;
    border-radius: 10px;
    width: 100%;
  }
  
  .search-btn {
    padding: 10px 15px;
    font-size: 18px;
    background-color: var(--nav-color);
    color: var(--text-color);
    border: 2px solid var(--search-bar);
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .search-btn:hover {
    background-color: #f8d209;
    color: var(--nav-color);
  }
  
  .search-box-container .bx-search {
    font-size: 20px;
  }
  
  @media (max-width: 768px) {
    .search-input {
        width: 100%;
    }
  }
  
  /* Style for the autocomplete suggestions dropdown */
  .suggestions-box {
    position: absolute;
    top: calc(100% + 0px); /* Place the dropdown just below the search box */
    left: 0;
    right: 0;
    background-color: var(--suggestions);
    border: 1px solid var(--nav-color);
    z-index: 1000;
    max-height: 200px; /* Limit height for better display */
    overflow-y: auto;  /* Allow scrolling if there are too many suggestions */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 5px 5px;
    color: var(--text-color1);
  }
  
  .suggestion {
    padding: 10px;
    cursor: pointer;
  }
  
  .suggestion:hover {
    background-color: #f0f0f0;
  }
  /* Highlight found word */
.highlight {
    background-color: yellow;
    font-weight: bold;
  }
  
  
    :root{
    --body-color: #E4E9F7;
    --nav-color: rgb(3, 75, 80);
    --side-nav: rgb(2, 12, 58);
    --text-color: #FFF;
    --search-bar: #F2F2F2;
    --search-text: #010718;
    --text-color1: #000000;
    --profile-color: #FFF;
    --profile-text: #000000;
    --cheers-color:rgb(250, 222, 227);
    --cheers-text: #000000;
  }
  body{
    height: 100vh;
    background-color: var(--body-color);
  }
  body.dark{
    --body-color: #18191A;
    --nav-color: #242526;
    --side-nav: #242526;
    --text-color: #CCC;
    --search-bar: #242526;
    --text-color1: #FFF;
    --profile-color:#242526;
    --profile-text: #FFF;
    --cheers-color:#18191A;
    --cheers-text: #FFF;
  }
  


.Payment {
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.payment-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px; /* Optional: rounded corners for the image */
}
.payment-h1{
    color: var(--blog-head);
    font-family: 'Oswald', sans-serif;
}
main {
    padding: 20px;
}
.net-img{
    justify-content: center;
    align-items: center;
    text-align: center;
}
.net-img img{
    border-radius: 2rem;
}
.instructions {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--body-color);
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: left;
}
.f-name{
    color:var(--blog-head) ;
}

.step {
    margin-bottom: 20px;
}
.inst-h1{
    color: var(--blog-head);
    text-align: center;
}
.step h2 {
    color:  var(--blog-head);
    font-family: 'Lexend', sans-serif;
    text-align: var(--blog-head);
}

.step p {
    line-height: 1.6;
    margin: 5px 0;
    font-family: 'Lexend', sans-serif;
    text-align: left;
    color: var(--text-color1);
}

.back-button {
    display: block;
    width: 100px;
    margin: 20px auto;
    padding: 10px;
    background-color:  var(--blog-head);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.back-button:hover {
    background-color:  rgb(3, 30, 32);
}

@media (max-width: 768px) {
    .instructions {
        padding: 10px;
    }

    .back-button {
        width: 80px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .header-image {
        width: 100%;
    }

    .instructions {
        padding: 5px;
    }

    .back-button {
        width: 60px;
        font-size: 12px;
    }
}

.footer {
    background-color: var(--nav-color); /* Footer background color */
    color: white; /* Text color */
    padding: 20px; /* Padding for the footer */
    text-align: center; /* Center align text */
    font-family: 'Lexend', sans-serif; /* Use Lexend font */
    width: 100%;
}

.footer-ul{
    list-style-type: none; /* Remove bullet points */
    padding: 0; /* Remove padding */
    margin: 0; /* Remove margin */
    display: flex; /* Flexbox for horizontal layout */
    justify-content: center; /* Center the nav items */
    gap: 45px; /* Space between nav items */
    margin-top: 20px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: rgb(255, 255, 255); /* Link color */
    text-decoration: none; /* Remove underline */
    font-weight: bold; /* Bold text */
}

.footer-nav a:hover {
    text-decoration: underline; /* Underline on hover */
}

.footer-logo {
    margin-top: 20px; /* Space above the logo */
}

.footer-logo1 {
    width: 100px; /* Logo width */
    height: auto; /* Maintain aspect ratio */
    border-radius: 15px; /* Rounded corners */
}

.footer-copy {
    margin-top: 10px; /* Space above copyright text */
}

/* Media Queries */
@media (max-width: 768px) {
    .footer-ul {
        flex-direction: row; /* Stack nav items vertically on small screens */
        align-items: center; /* Center align items */
    }
}


.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    max-width: 350px;
    margin: 20px auto;
    border-radius: 5rem;
  }
  
  .social-icon {
    color:  white;
    text-decoration: none;
    font-size: 24px;
    margin: 0 10px;
  }
  
  .social-icon:hover {
    color: rgb(9, 73, 54);
  }
  
  .lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
}

.close {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

/* Media Queries */
@media screen and (max-width: 768px) {
  .lightbox-content {
      max-width: 80%;
      max-height: 80%;
  }
}


