@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;;
}
/* ===== Colours ===== */
: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;
    --profile-color: #FFF;
  --profile-text: #000000;
  --profile-text1:#094936;
}
body{
    height: 100vh;
    background-color: var(--body-color);
    font-family: 'Lexend', sans-serif;
}
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;
  --profile-text1:#ffffff;
}
: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);
}

.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: var(--blog-head);
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;
}
.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);
    outline: none;
    color: var(--text-color1);
  }
  
  .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;
  }
  
  /* ===== 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;
}

        .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: 100%;
      max-height: 100%;
  }
}

.tab-details {
    padding: 2rem 0;
}

.tab-details .blog-meta h4 {
    font-size: 14px;
    margin: 0;
    padding: 0.5rem 0 0;
    line-height: 1.4;
}
div.tab {
    float: left;
    padding: 2rem 0;
    border-right: 1px solid #e1e3e6;
    width: 20%;
    background-color: #edeff2;
}


/* Style the buttons inside the tab */

div.tab button {
    display: block;
    background-color: inherit;
    color: black;
    padding: 0.5rem 1rem;
    width: 100%;
    border: 0;
    outline: none;
    text-align: right;
    cursor: pointer;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    color: #121212;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    line-height: 1;
    text-transform: capitalize;
}


/* Change background color of buttons on hover */

div.tab button:hover,
div.tab button.active {
    background-color: #ffffff;
    border-right: 0 solid #e1e3e6;
    border-bottom: 1px solid #e1e3e6;
    border-left: 0 solid #e1e3e6;
}

div.tab button:hover {
    border-top: 0;
}


/* Style the tab content */

.tabcontent {
    float: left;
    padding: 0 1rem;
    display: none;
    width: 80%;
    border-left: none;
}

.tabcontent.active {
    display: block;
}

.tab-details {
    padding: 0;
}

.tabcontent {
    border-left: medium none;
    display: none;
    float: left;
    padding: 2rem 1.5rem 0;
    width: 80%;
}
.follow-us-online {
    text-align: center; /* Center-align text */
}

.follow-heading {
    font-family: 'Lexend', sans-serif; /* Use Lexend font */
    font-size: 3rem; /* Header size */
    margin-bottom: 20px; /* Margin below header */
    font-weight: bolder; /* Bold text */
    color:var(--text-color1); /* Black for the captions */
}

.social-icons {
    display: flex; /* Use flexbox for layout */
    justify-content: center; /* Center the social icons */
    gap: 20px; /* Space between icons */
}

.social-i {
    width: 50px; /* Icon container width */
    height: 50px; /* Icon container height */
    display: flex; /* Flexbox for centering */
    justify-content: center; /* Center icon horizontally */
    align-items: center; /* Center icon vertically */
    border-radius: 50%; /* Round edges */
    font-size: 24px; /* Icon size */
}

/* Background colors for social icons */
.youtube {
    background-color:red; /* Facebook blue background */
}

.twitter {
    background-color: #000000; /* Twitter blue background */
}

.instagram {
    background-color: #f00075; /* Instagram pink background */
}

.tiktok {
    background-color: #000000; /* TikTok black background */
}

/* Set icon color to white */
.social-i i {
    color: white; /* Icon color */
}

/* Media Queries */
@media (max-width: 768px) {
    .social-iconi {
        flex-direction: row; /* Stack icons vertically on small screens */
        align-items: center; /* Center align icons */
    }
    
    .follow-heading {
        font-size: 1.5em; /* Smaller header size on mobile */
    }
}

.image-container {
    position: relative; /* Create a positioning context for the icon */
    display: inline-block;
}

.youtube-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center the icon */
    font-size: 40px; /* Adjust the size of the YouTube icon */
    color: red; /* YouTube's brand color */
    opacity: 0.8; /* Optional: Make the icon slightly transparent */
    pointer-events: none; /* Ensure the icon doesn't interfere with the click on the image */
}

.img-fluid {
    width: 100%; /* Ensure the image fills the container */
    height: 100%; /* Maintain the aspect ratio */
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%; /* Adjust based on your container's size */
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image fills the container while maintaining aspect ratio */
}

.options {
    position: relative;
    display: inline-block;
}

.options-icon {
    cursor: pointer;
}

.options-menu {
    display: none;
    position: absolute;
    right: 0;
    background-color: white;
    border: 1px solid #ddd;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.1);
    z-index: 1;
}

.options-menu a {
    display: block;
    padding: 8px 16px;
    text-decoration: none;
    color: black;
}

.options-menu a:hover {
    background-color: #f1f1f1;
}

/* General styles */
body {
    font-family: 'Lexend', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.subscription-image-container {
    position: relative;
    text-align: center;
    width: 100%;
    font-family: 'Lexend', sans-serif;
}

.subscription-background-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.subscription-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(3, 75, 80, 0.692); /* Green overlay with opacity */
}

.subscription-form-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000000;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.342);
    padding: 1rem;
    border-radius: 1rem;
    font-family: 'Lexend', sans-serif;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

form input, form button {
    padding: 10px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    width: 300px;
    margin: 0 auto;
    font-family: 'Lexend', sans-serif;
}

form input {
    background-color: #f1f1f1;
    font-family: 'Lexend', sans-serif;
}

form button {
    background-color: #00b300; /* Button color */
    color: white;
    cursor: pointer;
    font-family: 'Lexend', sans-serif;
}

form button:hover {
    background-color: #008f00;
}

/* Success card */
.subscription-success-card {
    display: none;
    background-color: white;
    color: black;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    width: 350px;
    margin: 20px auto;
    z-index: 2;
}

#back-button {
    background-color: #00b300;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#back-button:hover {
    background-color: #008f00;
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
    form input, form button {
        width: 80%;
    }

    .subscription-form-container {
        width: 100%;
    }

    .subscription-success-card {
        width: 80%;
    }
}

@media (max-width: 480px) {
    form input, form button {
        width: 90%;
        font-size: 14px;
    }
}

.word-link{
    text-decoration: none;
    color: #2059f7;
    font-weight: bold;
}