* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.container{
    max-width: 1400px;
}
/* Top Bar */
.top-bar {
    background-color: #333;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}
.top-bar-left {
    list-style: none;
    display: flex;
}
.top-bar-left li {
    margin-right: 15px;
}
.top-bar-left a {
    color: white;
    text-decoration: none;
}
.login-register a {
    color: white;
    text-decoration: none;
}
/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #444;
    padding: 20px 40px;
}
.navbar .logo a {
    color: white;
    text-decoration: none;
    font-size: 24px;
}
.logo img {
    width: 150px; /* Adjusted width */
    height: auto;
    object-fit: cover;
    margin-left: 60px;
}
.nav-links {
    list-style: none;
    display: flex;
    padding-left: 0; /* Prevent extra space from left side */
}
.nav-links li {
    margin-right: 20px;
    position: relative; /* For positioning the hover effect */
}
.nav-links a {
    color: white;
    text-decoration: none;
    padding: 10px 0;
    display: block; /* Makes the entire area clickable */
    transition: all 0.3s ease;
    position: relative; /* Position relative for hover border */
    z-index: 1; /* Keeps the text on top of the border */
}
.nav-links a:hover {
    color: #ffffff; /* Change text color */
}
.nav-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #e67e22; /* Bottom border color */
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
    z-index: 0;
}
.nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}
.search input {
    padding: 8px;
    margin-right: 10px;
    border: none;
    border-radius: 5px;
}
.search button {
    padding: 8px;
    background-color: #f1c40f;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    margin-right: 10px;
}
.search button i {
    color: white;
}
/* Toggle Bar */
.toggle-bar {
    display: none;
}
/* Sidebar (Mobile) */
.sidebar {
    position: fixed;
    left: -250px;
    top: 0;
    width: 250px;
    height: 100%;
    background-color: #333;
    transition: 0.3s;
    padding-top: 60px;
    z-index: 99;
}
.sidebar .close-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    cursor: pointer;
    color: white;
}
.sidebar-links {
    list-style: none;
}
.sidebar-links li {
    padding: 15px 25px;
}
.sidebar-links a {
    color: white;
    text-decoration: none;
}
/* Responsive Design */
@media screen and (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    .navbar .nav-links {
        display: none;
    }
    .toggle-bar {
        display: block;
    }
    .search {
        display: none;
    }
    .sidebar {
        left: -250px;
    }
    .dropdown-content{
        margin-right: -74px
    }
}

/* Gift Delivery Section */
/* Centering the container */
.gift-delivery-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    margin: 0 auto;
    padding: 0px 20px;
    gap: 20px;
}
.gift-delivery-card-section{
    width: 70%;
}
.gift-delivery-section-1{
    align-items: flex-start;
    width: 100%;
    margin: 0 auto;
}
/* Gift Delivery Section */
.gift-delivery-section {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    flex-wrap: wrap; /* Allowing sections to wrap on smaller screens */
}
.gift-delivery-card {
    display: flex;
    background-color: #f7f7f7;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 12px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    border: 1px rgb(90, 88, 88);
    background-color: rgba(58, 55, 55, 0);

}
.gift-delivery-card .left {
    flex: 1;
    position: relative;
}
.gift-delivery-card .left .image-container {
    position: relative;
}
.gift-delivery-card .left img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}
.gift-delivery-card .left .badge {
    position: absolute;
    top: 10px;
    left: 20px;
    background-color: #f39c12;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
}
.gift-delivery-card .right {
    flex: 1;
    padding-left: 20px;
    margin-right: 10px;
}
.gift-delivery-card .title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}
.gift-delivery-card .date {
    color: #888;
    margin: 10px 0;
}
.gift-delivery-card .view {
    color: #888;
}
.gift-delivery-card .description {
    color: #444;
    margin-top: 15px;
}

/* Right Side: Popular Posts & Our Picks */
/* .popular-posts,
.our-picks {
    margin-bottom: 20px;
    background-color: rgba(92, 96, 100, 0.15);
    padding: 20px;
    margin-right: 15px;
    right: 0;
} */
.popular-posts,
.our-picks {
    margin-bottom: 20px;
}
.our-picks h3{
    text-align: center;
}
.popular-posts h3{
    margin-bottom: 15px;
    border-bottom: 2px solid black;
}
/* Popular Posts Section */
.post {
    display: flex;
    margin-bottom: 20px;
    
}
.post a{
    display: flex;
    text-decoration: none;
    margin-left: 10px;
}
.post img {
    width: 100px;
    height: 100px;
    border-radius: 8px;
}

.post-info {
    margin-left: 15px;
}

.post-info h3 {
    margin-bottom: 5px;
   
}

.post-info p {
    color: #555;
    margin-bottom: 0px;
}


.post-info .post-date,
.post-info .post-views {
    font-size: 14px;
}

.post-info .post-views i {
    margin-right: 5px;
}

/* Our Picks Section */
.pick {
    flex: 0 0 100%;
    width: 100%; /* Ensures each slide takes full width */
    max-width: 100%;
    text-align: center;
}

.pick img {
    width: 100%;
    height: auto;
    object-fit: cover; /* Ensures images scale properly */
    /* gap: 20%; */
}

/* 
.pick img {
    border-radius: 8px;
    width: 50%;
} */

.pick-info {
    margin-left: 10px;
}
.pick-info h3{
    /* padding: 10px; */
    margin-bottom: 5px;
    font-size: 20px;
    /* width: 50%; */
    margin-top: 5px;
}
/* pick-info h3 {
    font-size: 18px;
   
} */
/* .pick-info h3 {
   
} */

.pick-info .pick-title {
    font-weight: bold;
    font-size: 18px;
}

.pick-info .pick-date,
.pick-info .pick-view,
.pick-info .pick-category {
    font-size: 14px;
    color: #888;
}

.pick-info .pick-view i {
    margin-right: 5px;
}
.right-side{
    /* margin-right: 5%; */
    width: 30%; /* Set right side width */
    float: right; /
}
/* Submit Post Section */
.submit_post {
    margin-top: 30px;
}

.submit_post img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.submit_post .categories {
    background-color: #f7f7f7;
    padding: 15px;
    border-radius: 8px;
}

.submit_post .categories p {
    font-weight: bold;
}

.submit_post .categories ul {
    list-style-type: none;
}

.submit_post .categories li {
    margin: 5px 0;
    font-size: 14px;
    color: #555;
}
 
/* Pagination */
.pagination {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 40%;
}

.pagination ul {
    list-style: none;
    display: inline-flex;
    gap: 10px;
}

.pagination li {
    display: inline-block;
}

.pagination a {
    text-decoration: none;
    padding: 8px 15px;
    background-color: #f39c12;
    color: white;
    border-radius: 5px;
    font-size: 14px;
}

.pagination a:hover {
    background-color: #e67e22;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .gift-delivery-container {
        justify-content: center;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        margin: 0 auto;
    }
    .gift-delivery-card-section {
        width: 100%;
    }
    
    .gift-delivery-card {
        width: 100%; /* Stack cards on smaller screens */
        flex-direction: column;
    }

    .right-side {
        width: 100%;
        margin-top: 20px;
    }

    .gift-delivery-section {
        flex-direction: column;
    }
    .pagination {
        text-align: center;
        margin-top: 20px;
        margin-bottom: 20px;
        margin-left: 0px;
    }
}

/* detail page  */


/* Assignment Help Detail Section */
.assignment-help-detail {
    background-color: #f8f8f8;
    padding: 50px 0;
    font-family: Arial, sans-serif;
}

.assignment-help-detail .container {
    margin: 0 auto;
    padding: 0 20px;
}

/* Heading and Introduction */
.main-heading {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

.intro-paragraph {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.date-tech-info {
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
}

/* Full Image */
.image-container {
    text-align: center;
    margin-bottom: 40px;
}

.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Introduction Text */
.intro-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
}

/* Why Students Need Assignment Help */
.reasons {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.reason {
    flex: 1 1 45%;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.reason h3 {
    font-size: 20px;
    color: #f39c12;
    margin-bottom: 10px;
}

.reason p {
    font-size: 16px;
    color: #444;
}

/* Services List */
.services-list {
    list-style-type: none;
    padding: 0;
    margin-bottom: 40px;
}

.services-list li {
    font-size: 16px;
    color: #444;
    margin-bottom: 10px;
}

/* Social Media Icons */
.social-media {
    text-align: center;
    margin-top: 40px;
}

.social-media p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

.Detail-social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.Detail-social-icon {
    font-size: 24px;
    color: #333;
    text-decoration: none;
}

.Detail-social-icon:hover {
    color: #f39c12;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .reason {
        flex: 1 1 100%;
    }

    .social-icons {
        gap: 15px;
    }
}

/* related post  */
/* Related Posts Section */
.related-posts {
    background-color: #f9f9f9;
    padding: 50px 0;
}

.related-posts .container {
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 32px;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
}

.related-posts-row {
    display: flex;
    /* justify-content: space-between; */
    gap: 20px;
}

.related-post {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 32%; /* Each post takes about 1/3 of the container width */
    text-align: center;
    transition: transform 0.3s ease;
}
.related-post h3{
    font-size: 20px;
}
.related-post img {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #ddd;
}

.related-post-title {
    font-size: 18px;
    color: #333;
    padding: 20px;
}

.related-post:hover {
    transform: scale(1.05);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .related-posts-row {
        flex-direction: column;
        align-items: center;
    }

    .related-post {
        width: 80%; /* Stacking posts on smaller screens */
        margin-bottom: 20px;
    }
}

/* login */

.login-container {
    width: 100%;
    max-width: 400px;
    margin: 100px auto;
    padding: 30px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
  }

  .login-form,
  .register-form {
    display: flex;
    flex-direction: column;
  }

  .login-form h2,
  .register-form h3 {
    text-align: center;
    margin-bottom: 20px;
  }

  .login-form .form-group,
  .register-form .form-group {
    margin-bottom: 15px;
  }

  .login-form .form-group label,
  .register-form .form-group label {
    font-size: 14px;
    margin-bottom: 5px;
    display: block;
    color: #555;
  }

  .login-form .form-group input,
  .register-form .form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
  }

  .login-form .form-group input[type="checkbox"],
  .register-form .form-group input[type="checkbox"] {
    width: auto;
  }

  .login-form .submit-btn,
  .register-form .submit-btn {
    padding: 10px;
    background-color: #f39c12;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
  }

  .login-form .submit-btn:hover,
  .register-form .submit-btn:hover {
    background-color: #e67e22;
  }

  .show-login,
  .show-register {
    color: #f39c12;
    text-decoration: none;
  }

  .show-login:hover,
  .show-register:hover {
    text-decoration: underline;
  }

  .account {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #555;
  }

/* Footer Section */
.footer {
    /* width: 100%;
    position: fixed;
    bottom: 0; */
    background-color: #333;
    color: white;
    /* padding: 40px 0; */
    padding-top: 40px;
    font-family: Arial, sans-serif;
}

/* Footer Container to center and limit width */
.footer-container {
    display: flex;
    justify-content: space-between;
    padding: 0 50px;
    max-width: 1400px; /* Limiting the width of the footer container */
    margin: 0 auto; /* Centering the container */
    flex-wrap: wrap; /* Allowing the layout to wrap on smaller screens */
}

/* Left Column: About */
.footer-about {
    flex: 1;
    max-width: 30%;
    padding-right: 20px;
}

.footer-about h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #f39c12;
}

.footer-about p {
    color: #bbb;
}
.footer-about a {
    color: #bbb;
    text-decoration: none;
    display: flex;
}
/* Middle Column: Image and Content */
.footer-image-content {
    flex: 1;
    max-width: 30%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.footer-image-content img {
    width: 60%;
    border-radius: 8px;
    margin-right: 20px;
    margin-bottom: 25%;

}
.footer-content{
    /* margin-top: 10px; */
    margin-bottom: 28%;
}
.footer-content h3 {
    font-size: 24px;
    color: #f39c12;
    margin-bottom: 10px;
}

.footer-content p {
    color: #bbb;
}

/* Right Column: Social Icons and Email Subscription */
.footer-social-email {
    flex: 1;
    max-width: 30%;
}

.footer-social {
    margin-bottom: 20px;
}

.footer-social h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #f39c12;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icon {
    color: white;
    font-size: 24px;
    text-decoration: none;
}

.social-icon:hover {
    color: #f39c12;
}

/* Email Subscription Section */
.footer-email h3 {
    font-size: 24px;
    color: #f39c12;
    margin-bottom: 10px;
}

.email-input {
    padding: 10px;
    border-radius: 8px;
    border: none;
    /* margin-right: 10px; */
}

.subscribe-btn {
    padding: 10px 20px;
    background-color: #f39c12;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    /* margin-right: -40px;     */
}

.subscribe-btn:hover {
    background-color: #e67e22;
}

/* Footer Bottom: Copyright */
.footer-bottom {
    background-color: #222;
    color: #bbb;
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
}

.footer-bottom p {
    font-size: 14px;
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-about,
    .footer-image-content,
    .footer-social-email {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .footer-image-content {
        display: block;
    }
    .footer-social-email {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
        gap: 15px;
    }

    .email-input {
        width: 70%;
    }
}

/* guest form  */
.guest-post-container {
    width: 100%;
    max-width: 800px;
    margin: 50px auto;
    padding: 30px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
  }

  .guest-post-form h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
  }

  .guest-form-group {
    margin-bottom: 20px;
  }
  .guest-form-group label {
    font-size: 14px;
    display: block;
    color: #555;
  }

  .guest-form-group input,
  .guest-form-group textarea,
  .guest-form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    color: #555;
  }
  #new-tag-input {
    border: 1px solid #ddd;
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    font-size: 14px;
    color: #555;
  }

  .guest-form-group textarea {
    resize: vertical;
    min-height: 150px;
  }
/* 
  .image-upload-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f1f1f1;
    border: 2px dashed #ccc;
    padding: 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .image-upload-wrapper:hover {
    background-color: #e9e9e9;
    border-color: #f39c12;
  }

  .image-upload-wrapper input[type="file"] {
    display: none;
  }

  .image-upload-wrapper .upload-icon {
    font-size: 40px;
    color: #f39c12;
    margin-bottom: 10px;
  }

  .image-upload-wrapper .upload-text {
    font-size: 16px;
    color: #555;
  } */.upload-box {
    /* width: 300px; */
    height: 200px;
    border: 2px dashed #aaa;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    transition: 0.3s ease;
}

.upload-box:hover {
    border-color: #f39c12;
}

.upload-box input {
    display: none;
}

.upload-box p {
    font-size: 16px;
    color: #555;
    text-align: center;
}

.upload-box img {
    width: auto;
    height: 100%;
    object-fit: cover;
    display: none;
}

.delete-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background: red;
    color: white;
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    font-size: 14px;
    cursor: pointer;
    display: none;
    justify-content: center;
    align-items: center;
}  .submit-btn {
    padding: 12px;
    background-color: #f39c12;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
  }

  .submit-btn:hover {
    background-color: #e67e22;
  }
  .tag-badge {
    display: inline-block;
    padding: 5px 15px;
    margin: 5px;
    background-color: #e67e22;
    color: white;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.tag-badge:hover {
    background-color: #e67e22;
}

/* Styling for the delete icon */
.delete-tag {
    margin-left: 8px;
    color: white;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
}

.delete-tag:hover {
    color: #ff0000;
}

/* Styling for selected tags */
.input-tag {
    display: inline-block;
    background-color: #e67e22;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    margin: 5px;
}
/* Dropdown container */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown button */
.dropbtn {
    background-color: #3b3734;
    color: white;
    /* padding: 10px 15px; */
    font-size: 16px;
    /* border: none; */
    cursor: pointer;
    border-radius: 20px;
}

/* Dropdown content */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 0px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 5px;
}

/* Dropdown content links */
.dropdown-content a,
.dropdown-content form {
    color: black;
    padding: 10px;
    text-decoration: none;
    display: block;
}

/* Hover effect */
.dropdown-content a:hover,
.logout-btn:hover {
    background-color: #f1f1f1;
}
/* Hide the checkbox */
#dropdown-toggle {
    display: none;
}

/* Initially hide dropdown */
.dropdown-content {
    display: none;
}

/* Show dropdown when checkbox is checked */
#dropdown-toggle:checked + .dropbtn + .dropdown-content {
    display: block;
}

/* Optional: close on click outside - not possible with pure CSS */

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
    display: block;
}
.dropdown {
    position: relative;
    display: inline-block;
    font-family: 'Segoe UI', sans-serif;
}

/* Stylish dropdown button */
.dropbtn {
    background: linear-gradient(to right, #f39c12, #e67e22);
    color: #fff;
    padding: 8px 20px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.dropbtn:hover {
    background: linear-gradient(to right, #e67e22, #d35400);
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
}

/* Dropdown menu */
.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #fff;
    min-width: 180px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 1px;
}

/* Show on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Dropdown items */
.dropdown-content a,
.dropdown-content form button {
    color: #333;
    padding: 12px 18px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    transition: background-color 0.2s ease;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.dropdown-content a:hover,
.dropdown-content form button:hover {   
    background-color: #f5f5f5;  
    color: #000;
}

/* Logout button */
.logout-btn {
    font-family: inherit;
}

/* Style logout button */
.logout-btn {
    background: none;
    border: none;
    color: black;
    padding: 10px;
    text-align: left;
    width: 100%;
    cursor: pointer;
    font-size: 16px;
}
table {
    width: 100%;
    border-collapse: collapse; /* Ensures proper border rendering */
    margin-top: 20px;
    font-family: Arial, sans-serif;
}

th, td {
    border: 1px solid #ddd; /* Border around each cell */
    padding: 10px;
    text-align: left;
}

th {
    background-color: #007bff; /* Blue header */
    color: white;
    
}

tr:nth-child(even) {
    background-color: #f2f2f2; /* Light gray alternate rows */
}

tr:hover {
    background-color: #ddd; /* Hover effect */
}

td img {
    max-width: 200px; /* Restrict image size */
    height: auto;
    border-radius: 5px;
}
td i{
    background-color: #10d42ada;
    border-radius: 50%;
    font-size: 30px;
}

.action-btn {
    padding: 5px 10px;
    border: none;
    background-color: red;
    color: white;
    cursor: pointer;
    border-radius: 3px;
}

.action-btn:hover {
    background-color: darkred;
}
.title a {
    text-decoration: none; /* Removes the underline */
    color: black; /* Sets the text color to black */
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(100%); 
    /* top: 221px; */
}
.carousel-control-prev,
.carousel-control-next {
    width: 30px !important;  /* Make buttons smaller */
    height: 30px !important;
    bottom: 10px !important; /* Move buttons to the bottom */
    top: auto !important;
    transform: translateY(0) !important;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 15px !important;  /* Make the arrow icons smaller */
    height: 15px !important;
}


.slider-container {
    width: 100%;
    max-width: 400px; /* Set the max width as per your design */
    overflow: hidden; /* Ensures only one slide is visible at a time */
    position: relative;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%; /* Only take the full width needed */
}

/* .pick {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    text-align: center;
}

.pick img {
    width: 100%;
    height: auto;
    object-fit: cover; /* Ensures images scale properly */
/* } */ 

          .our-picks {
              position: relative;
              max-width: 100%;
              margin: auto;
              overflow: hidden;
          }
          
          /* .slider-wrapper {
              display: flex;
              transition: transform 0.10s ease-in-out;
              width: 100%;
          } */
          
          /* .pick {
              flex: 0 0 100%; 
              text-align: center;
          } */
          
          /* img {
              width: 100%;
              border-radius: 10px;
          }
           */
          /* .pick-info h3 {
              font-size: 18px;
              margin-top: 5px;
          } */
          
          /* Navigation Buttons */
          .slider-btn {
              position: absolute;
              top: 50%;
              transform: translateY(-50%);
              background: rgba(0, 0, 0, 0.5);
              color: white;
              border: none;
              padding: 10px 15px;
              cursor: pointer;
              z-index: 10;
          }
          
          #prevBtn { left: 10px; }
          #nextBtn { right: 10px; }
          
          /* Dots Navigation */
          /* .dots-container {
              text-align: center;
              margin-top: 10px;
          } */
          
          .dot {
              height: 12px;
              width: 12px;
              margin: 0 5px;
              background-color: gray;
              border-radius: 50%;
              display: inline-block;
              cursor: pointer;
          }
          
          .dot.active {
            background-color: black;
        }
          /* Wrapper for the slider */
/* .slider-wrapper {
    display: flex;
    transition: transform 0.3s ease-in-out; /* Smooth sliding effect */
/* } */ 

/* Each slide (blog post) takes up 100% of the slider's width */
/* .pick {
    flex: 0 0 100%;
    /* Optional styling for individual slides */
/* } */ 

/* Style for the dots */
.dots-container {
    display: flex;
    justify-content: center;
    /* margin-top: 10px; */
}

