@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
}

body {

}


body::-webkit-scrollbar {
  width: 3px; /* Set the width of the scrollbar */
}

body::-webkit-scrollbar-thumb {
  background-color: #6c6e0d; /* Color of the thumb */
  border-radius: 4px; /* Rounded corners of the thumb */
}

body::-webkit-scrollbar-track {
  background-color: #000000; /* Color of the track */
}


    header {
      width: 100%;
      position: sticky;
      left: 0;
      top: 0px;
      right: 0;
      background-color: #000;
      padding: 10px 6%;
      display: flex;
      align-items: center;
      z-index: 999;
      box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }
    
    header .logo-container {
      display: flex;
      align-items: center;
    }
    
    header .logo img {
      height: 50px;
      margin-right: 10px;
      margin-left: 20px;
    }
    
    header .logo img:hover {
      transform: scale(1.2);
      transition: ease-in-out 3s linear;
    }
    
    header .logo-text {
      font-size: 24px;
      text-transform: capitalize;
      letter-spacing: 1px;
      color: #fff;
      font-family: 'Your Preferred Font', sans-serif;
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      transition: color 0.3s ease-in-out;
      line-height: 1.5;
      margin-bottom: 10px;
      font-style: italic;
      margin-right: 50px;
    }
    
    header .logo-text:hover {
      color: #ffcc00;
    }
    
    nav {
      display: flex;
      align-items: left;
      z-index: 900;
      
    }
    
    nav a {
      font-size: 14px;
      text-transform: capitalize;
      margin: 0 3px;
      padding: 5px;
      color: #bde2de;
      font-weight: 500;
      border-bottom: solid transparent 2px;
      transition: .3s ease;
      text-align: left;
      display: flex;
      align-items: left;
      cursor: pointer;
    }
    
    nav a i {
      margin-right: 5px;
      color: #c3b218;
    }
    
    nav .active {
      border-bottom: solid #fff 2px;
    }
    
    nav a:hover {
      border-bottom: solid #fff 2px;
    }


    /* Add this style for the submenu */
    nav .submenu {
      position: relative;
    }
    
    nav .submenu-content {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background-color: #000;
      padding: 10px;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
      max-height: 300px;
      overflow-y: auto; 
      width: 250px;
      border-bottom: 3px solid rgb(102, 103, 24);

    }
    
    nav .submenu:hover .submenu-content {
      display: block;
    }
    
    nav .submenu-content a {
      color: #fff;
      text-decoration: none;
      display: block;
      padding: 8px 0;
      text-align: left;
    }
    
    nav .submenu-content a:hover {
      color: #ffcc00;
    }
    


    nav::-webkit-scrollbar {
      width: 3px; /* Set the width of the scrollbar */
    }
    
    nav::-webkit-scrollbar-thumb {
      background-color: #6c6e0d; /* Color of the thumb */
      border-radius: 4px; /* Rounded corners of the thumb */
    }
    
    nav::-webkit-scrollbar-track {
      background-color: #000000; /* Color of the track */
    }




    
    nav .submenu-content::-webkit-scrollbar {
      width: 3px; /* Set the width of the scrollbar */
    }
    
    nav .submenu-content::-webkit-scrollbar-thumb {
      background-color: #6c6e0d; /* Color of the thumb */
      border-radius: 4px; /* Rounded corners of the thumb */
    }
    
    nav .submenu-content::-webkit-scrollbar-track {
      background-color: #000000; /* Color of the track */
    }
    


    #chek {
      display: none;
    }
    
    #chek:checked~nav {
      left: 0;
      opacity: 1;
    }
    
    label {
      font-size: 25px;
      cursor: pointer;
      color: #fff;
      display: none;
    }
      /* Add style for the search icon */
      header .search-icon {
        font-size: 24px;
        color: #fff;
        margin-left: auto; /* Push the search icon to the right */
        padding-left: 30px;
        cursor: pointer;
      }

      /* Style for the search icon on hover */
      header .search-icon:hover {
        color: #ffcc00;
        transform: scale(1.2); /* Adjust the scale factor as needed */
        transition: transform 0.3s ease; /* Add a smooth transition for the scale effect */
      }

    
    @media (max-width: 895px) {
      body{
        overflow: auto;
      }
      header {
        transition: .3s ease;
      }
    
      nav {
        position: absolute;
        left: -100%;
        top: 100px; /* Adjusted top position */
        right: 0;
        width: 40%;
        background-color: #000000;
        padding: 10px;
        border-radius: 8px;
        transition: .3s ease;
        opacity: 0;
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        flex-direction: column;
        overflow: hidden;
        height: 60vh; /* Adjusted height using viewport height unit */
        overflow-y: auto;
        border-bottom: 3px solid rgb(102, 103, 24);
      }
    
      nav a {
        margin-top: 10px;
      }
    
      /* Add styles for the submenu in smaller screens */
      nav .submenu {
        display: block;
        margin-top: 10px; /* Adjust margin for submenu items */
        margin-bottom: 5px;
        padding-bottom: 5px;
      }
    
      nav .submenu-content a {
        text-align: left;
      }

      label {
        display: block;
      }
    }
    

    
    .content {
      text-align: center;
      position: relative;
    }
    
    .content h1 {
      font-size: 40px;
      color: #fff;
      text-transform: capitalize;
      letter-spacing: 1px;
    }
    
    .content p {
      line-height: 1.4;
      font-size: 14px;
      color: #eee;
      margin: 15px 20px;
    }
    

    
    .btn:hover {
      transform: scale(1.1);
    }
    
    @media (max-width: 760px) {
     body {

        min-width: ;

      }



      header {
        transition: .3s ease;
        left: 0;
        right: 0;
  
      }
      
      header .search-icon {
        padding-left: 0;
      }
      nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100px; /* Adjusted top position */
        left: 0;
        background-color: #000000;
        width: 70%;
        height: calc(100vh - 180px); /* Adjusted height using viewport height unit */
        min-width: 200px;
        overflow-y: auto;
        border-bottom: 3px solid rgb(102, 103, 24);

      }
      
          
      nav a {
        margin: 10px 0;
        border-bottom: none;
      }
    
      nav .submenu-content {
        display: none;
        position: absolute;
        top: 100%;
        padding: 10px;
        border-radius: 8px;
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        max-height: 300px;
        overflow-y: auto; 
        min-width: 200px;
      }

      #chek:checked~nav {
        display: flex;
        opacity: 1;
      }
    }
    
    #search-input-container {
      display: flex;
      position: fixed;
      top: 80px;
      right: 0;
      align-items: center;
      justify-content: space-between;
      background: linear-gradient(to top, #a8a8a8, black);
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      padding: 5px;
      border-radius: 5px;
      z-index: 100;
      border-bottom: 3px solid rgb(102, 103, 24);
      border-left: 3px solid rgb(102, 103, 24);
      transition: transform 0.3s ease; /* Smooth transition for transform */
    }
    
    /* Hidden state */
    .search-hidden {
      transform: translateX(300px); /* Hidden by default */
    }
    
    /* Visible state */
    .search-visible {
      transform: translateX(0px); /* Visible */
    }


    /* Prevent clicks from being processed during transitions */
    #search-input-container.transitioning {
      pointer-events: none;
    }

    
    #search-input-field {
      padding: 8px;
      border: 1px solid #cccccc;
      border-radius: 5px;
      font-size: 14px;
      min-width: 150px;
      box-sizing: border-box;
      outline: none;
      max-width: 200px;
    }
    
    #search-icon {
      margin-left: 5px;
      width: 50px; /* Adjust the width of the icon */
      height: 50px; /* Adjust the height of the icon */
      cursor: pointer;
    }
    
    #search-input-field::placeholder {
      color: #999;
    }



    /* Updated Stylish Footer Styles with Vertical Alignment, Enhanced Beauty, Animation, and 3D Effect */

@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}




#footer-container {
    max-width: 100%;
}

.stylish-footer {
  background: linear-gradient(to right, #3498db, #2c3e50);
  color: #ecf0f1;
  padding: 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  animation: fadeInUp 0.8s ease-in-out; /* Add a fade-in animation */
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.footer-logo span {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.footer-links ul {
  list-style: none;
  display: flex;
  margin-top: 15px;
}

.footer-links li {
  margin: 0 12px;
}

.footer-links a {
  text-decoration: none;
  color: #ecf0f1;
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
  background-color: #3498db;
  border-radius: 4px;
  transform: scale(1.05); /* Add a slight scale-up effect on hover */
}

.footer-social a {
  color: #ecf0f1;
  margin-right: 12px;
  font-size: 22px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  color: #fff;
  background-color: #3498db;
  border-radius: 50%;
  transform: rotate(20deg); /* Add a subtle rotation effect on hover */
}

.footer-bottom {
  text-align: center;
  margin-top: 15px;
  font-size: 0.9rem;
}

  /* Additional Styles for the 'contain' div */
  .contain {
    text-align: center;
    color: yellow;
    background-color: #34495e; /* Adjust the background color as needed */
    padding: 10px;
  }
  
  .contain a {
    color: yellow;
    text-decoration: none;
  }
  
  .contain a:hover {
    color: #f39c12; /* Adjust the hover color as needed */
  }




#squizee_site_comment_section {
    display: flex;
    flex-direction: row; /* Default to row layout */
    border: 1px solid black;
    margin: 10px;
    border-radius: 8px;
    background-color: white;
    max-width: 100% !important;

}

/* Media Query for mobile screens */
@media screen and (max-width: 895px) {
    #squizee_site_comment_section {
        flex-direction: column; /* Change to column layout on small screens */
    }
}




/* General form styling */
#squizee_site_comment_form {
    width: 100%;
    max-width: 600px; /* Set the maximum width of the form */
    min-width: 300px;
    margin: 0 auto; /* Center the form on the page */
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#squizee_site_comment_form h2 {
    font-size: 24px;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

/* Label styling */
#squizee_site_comment_form label {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
    display: block;
}

/* Input field styling */
#squizee_site_comment_form input[type="text"],
#squizee_site_comment_form input[type="email"],
#squizee_site_comment_form select,  /* Updated for select field */
#squizee_site_comment_form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}

/* Styling for the textarea */
#squizee_site_comment_form textarea {
    height: 150px;
    resize: vertical; /* Allow the user to resize vertically */
}

/* Input focus styling */
#squizee_site_comment_form input[type="text"]:focus,
#squizee_site_comment_form input[type="email"]:focus,
#squizee_site_comment_form select:focus,  /* Updated for select field */
#squizee_site_comment_form textarea:focus {
    border-color: #5b9bd5;
    outline: none;
}


/* Submit button styling */
#squizee_site_comment_form input[type="button"] {
    width: 100%;
    padding: 12px;
    background-color: #169e85;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Submit button hover effect */
#squizee_site_comment_form input[type="button"]:hover {
    background-color: #45a049;
}

/* Optional small text below the form */
#squizee_site_comment_form p {
    text-align: center;
    font-size: 14px;
    color: #777;
}










/* Styling for the comments container */
#squizee_fetch_comment_container_section {
    width: 100%;
    padding: 10px;
    background-color: #fafafa; /* Light background color */
    border-radius: 8px; /* Rounded corners */
    padding: 20px;
}



/* Styling for the comments container */
#squizee_fetch_comment_container {
    max-height: 800px;
    overflow-y: auto; /* Allow vertical scrolling */
    width: 100%;
    padding: 10px;
    background-color: #fafafa; /* Light background color */
    border-radius: 8px; /* Rounded corners */
    padding: 20px;
}

#squizee_fetch_comment_container_header {
    display: flex;
    flex-direction: row;
    padding: 10px;
    margin: 10px;
    background-color: #f6f6f6; 
    gap: 10px;
    align-items: center;
    border-radius: 8px;
}


/* Styling for each individual comment */
.squizee_fetch_comment {
    background-color: #ffffff; /* White background for comments */
    border: 1px solid #e0e0e0; /* Lighter border */
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px; /* Increase space between comments */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Light shadow for better depth */
    min-width: calc(100% - 40px); /* Adjust width to avoid overflow */
    position: relative; /* Necessary for positioning the arrow */
    transition: background-color 0.3s ease; /* Smooth transition for hover effect */
    width: 100%;
}

/* Header with avatar, name, email, and timestamp */
.squizee_fetch_comment_header {
    display: flex;
    flex-direction: row; /* Default row direction for larger screens */
    font-size: 14px;
    color: #444; /* Darker gray for better readability */
    margin-bottom: 10px; /* Space between header and comment text */
    gap: 10px;
}

.avatar-container {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #f0f0f0; /* Light gray background for avatars */
    text-align: center;
    line-height: 50px; /* Center the text (for placeholder) */
}

.avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    font-size: 24px;
    color: #333;
}

/* Comment details - stacked vertically (name, email, timestamp) */
.comment-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.squizee_fetch_comment_name {
    font-weight: bold;
    color: #333; /* Darker color for name */
}

.squizee_fetch_comment_email {
    font-style: italic;
    color: #777; /* Lighter color for email */
}

.squizee_fetch_comment_timestamp {
    color: #888; /* Light gray color for timestamp */
    font-size: 12px; /* Smaller font for timestamp */
}

/* Comment text area */
.squizee_fetch_comment_text {
    font-size: 16px;
    line-height: 1.5;
    color: #555; /* Darker text for better readability */
    margin: 10px 0;
}

/* Styling for images in the comment */
.squizee_fetch_comment_image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Light shadow for images */
    max-width: 400px;
}

/* Show error or no comments message */
.squizee_fetch_comment_no_comments, .squizee_fetch_comment_error {
    text-align: center;
    font-size: 18px;
    margin-top: 20px;
    color: #888;
}

/* Error message style */
.squizee_fetch_comment_error {
    color: red;
    font-weight: bold;
}

/* Hover effect for comment container */
.squizee_fetch_comment:hover {
    background-color: ; /* Light background when hovering */
}

/* Styling for the toggle icon (arrow) */
.squizee_fetch_comment_toggle {
    cursor: pointer;
    font-size: 24px; /* Increased size for better visibility */
    color: #333;
    position: absolute;
    top: 20px;  /* Align to the top of the comment */
    right: 20px; /* Position the arrow to the right */
    transition: transform 0.2s ease;
}

.squizee_fetch_comment_toggle:hover {
    color: #007BFF; /* Blue color on hover */
}

/* Arrow icon up and down */
.squizee_fetch_comment_toggle .arrow-icon {
    transition: transform 0.3s ease;
}

/* Styling for the 'Show more' link */
.show-more-link {
    color: #007bff;
    cursor: pointer;
    font-size: 14px;
    text-decoration: underline;
}

.show-more-link:hover {
    text-decoration: none;
}



/* Optional responsive styling for mobile */
@media (max-width: 600px) {
    .squizee_fetch_comment {
        padding: 15px; /* Reduce padding for smaller screens */
    }

    .squizee_fetch_comment_header {
        flex-direction: column;
        align-items: flex-start;
    }

    .squizee_fetch_comment_name, .squizee_fetch_comment_email, .squizee_fetch_comment_timestamp {
        margin-bottom: 5px;
    }
}





/* Reactions Section Style */
.reaction-buttons {
    display: flex;
    gap: 15px; /* Space between the buttons */
    margin-top: 10px;
}

/* Individual Reaction Button Style */
.reaction-button {
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    color: #333;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Reaction Button Hover Effect */
.reaction-button:hover {
    background-color: #e0e0e0;
    transform: scale(1.05);
}

/* Reaction Emoji Style */
.reaction-button .emoji {
    font-size: 20px; /* Larger emoji for better visibility */
}

/* Reaction Count Style */
.reaction-button span {
    margin-left: 8px; /* Space between the emoji and count */
    font-size: 14px;  /* Smaller font for the count */
    color: #555;     /* Darker color for the count */
}

/* Style for Active/Clicked Reaction Button (Optional) */
.reaction-button.active {
    background-color: #d1e7dd;
    border-color: #6e9e3f;
    color: #4c6b29;
}

.reaction-button.active .emoji {
    font-size: 22px; /* Slightly larger emoji for active reactions */
}

.reaction-button.active span {
    font-weight: bold;
}

/* Mobile Responsive Styles for Reactions */
@media screen and (max-width: 600px) {
    .reaction-buttons {
        flex-direction: row; /* Stack buttons vertically on small screens */
        gap: 8px;  /* Space between buttons */
    }

    .reaction-button {
        width: 100%;  /* Make buttons fill the width */
        justify-content: center;  /* Center align the text and emoji */
    }
}






/* Floating WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    right: 0;
    /*width: 50px;  */
    /*height: 100px;  */
    padding: 20px;
    background-color: #25d366;
    padding: 20px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border: 2px solid white;
    /*top: calc(50% + 175px); */
    bottom: 20px;
    transform: translateY(0); /* No additional translation needed */
}

/* Floating Call Button */
.call-btn {
    position: fixed;
    right: 0;
    /*width: 50px;  */
    /*height: 100px;  */
    background-color: #34b7f1;
    padding: 20px;    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border: 2px solid white;
    /*top: calc(50% + 70px); */
    bottom: 105px;
    transform: translateY(0); /* No additional translation needed */
}


/* Floating Call Button */
.back-to-top-btn {
    position: fixed;
    right: 0;
    /*width: 50px;  */
    /*height: 100px;  */
    background-color: #c0be85;
    padding: 25px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border: 2px solid white;
    /*top: calc(50% + 175px);  */
    bottom: 190px;
    transform: translateY(0); /* No additional translation needed */
}


/* Font Awesome Icon Style */
.whatsapp-btn i, .call-btn i, .back-to-top-btn i {
    color: white;
    font-size: 30px;
}

/* Hover Effect for WhatsApp Button */
.whatsapp-btn:hover {
    background-color: #128c7e;
}

/* Hover Effect for Call Button */
.call-btn:hover {
    background-color: #007bff;
}

/* Hover Effect for Call Button */
.back-to-top-btn:hover {
    background-color: #a4a26f;
}

@media screen and (max-width: 600px) {
    .whatsapp-btn,
    .call-btn {
        display: none;
    }
    
    
    .back-to-top-btn {
        bottom: 20px;
    }


}