/* Reset etc omitted... */
/* Import fonts via Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');
/* Add more families as needed:
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap');
*/

/* Base body font */
body {
  font-family: Arial, sans-serif;
}

/* Header and nav font choices */
h1, h2, h3, .navbar, nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  /* Example for serif: font-family: 'Playfair Display', serif; */
}

/* Example with fallback chain */
.top-bar, .sidebar-menu a {
  font-family: 'Montserrat', Arial, sans-serif;
}
p{
  font-family: Arial, sans-serif;
}

.top-bar {
  background-color: #004393;
  color: #fff;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  padding: 5px 20px;
}

.top-bar a.social {
  color: #fff;
  margin-left: 0.8rem;
  font-size: 1rem;
}

.top-left a {
  color: #fff;
  text-decoration: none;     /* remove underline */
  font-size: 1.1rem;         /* slightly larger than base text */
  font-weight: bold;
  transition: color 0.3s;
}

.top-left a:hover,
.top-left a:focus {
  text-decoration: underline; /* underline on hover/focus for accessibility */
  color: #3fc1ba;              /* accent color on hover for visual feedback */
}

.top-left span {
  margin-right: 0.5rem;
}

.top-left {
  font-size: 1.1rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  /* Force sidebar dropdowns to drop UP and be full-width */
  .sidebar-menu .dropdown {
    position: relative;
  }

  .sidebar-menu .dropdown .submenu {
    position: static;
    display: none;
    background-color: #003372;
    padding-left: 1rem;
  }

  .sidebar-menu .dropdown.open .submenu {
    display: block;
  }

  .sidebar-menu .dropdown .submenu li a {
    padding: 0.6rem 0;
    font-size: 1rem;
  }

  /* Adjust caret icon */
  .sidebar-menu .dropdown > a {
    justify-content: space-between;
  }

  /* Social icons horizontal layout in mobile sidebar */
  .sidebar-social {
    position: relative;
    bottom: auto;
    flex-direction: row;
    justify-content: center;
    padding: 1rem;
    width: 100%;
  }

  .sidebar-social a {
    margin: 0 0.5rem;
  }
}


.navbar {
  background-color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

/* by default submenu drops down */
.sidebar-menu .dropdown .submenu {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  background-color: #004393;
  /* ...your styles... */
}

/* when open */
.sidebar-menu .dropdown.open .submenu {
  display: block;
}

/* when flipped */
.sidebar-menu .dropdown.drop-up .submenu {
  top: auto;       /* reset from default */
  bottom: 100%;    /* position above parent link */
}


/* Sidebar container: hidden by default off-screen */
.sidebar-nav {
  position: fixed;
  top: 0;
  left: -300px;
  width: 260px;
  height: 100%;
  background-color: #004393;
  color: #fff;
  z-index: 2000;
  transition: left 0.3s ease-in-out;
  padding-top: 60px;
}

/* Show sidebar */
.sidebar-nav.open {
  left: 0;
}

/* Close icon */
.sidebar-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Menu list */
.sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 40px 0;
}

.sidebar-menu li {
  margin-bottom: 1rem;
}

.sidebar-menu a {
  color: #fff;
  font-size: 1.2rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 0.8rem 1.5rem;
}

.sidebar-menu a i {
  margin-right: 1rem;
  width: 1.2rem;
}

/* Hover effect */
.sidebar-menu a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Toggle icon next to logo */
.side-toggle-icon {
  font-size: 1.5rem;
  color: #181616;
  cursor: pointer;
  margin-right: 1rem;
}

.sidebar-social {
  position: absolute;
  display: flex;
  gap: 1rem;
}

.sidebar-social a {
  color: #fff;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.2);
  transition: background-color 0.3s;
}

.sidebar-social a:hover {
  background-color: rgba(255,255,255,0.4);
}

/* Dropdown positioning & hidden by default */
.dropdown {
  position: relative;
}
.dropdown .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #004393; /* matches sidebar/top bar */
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 200px;
  z-index: 100; /* ensures it overlays */
}
.dropdown .submenu li a {
  display: block;
  color: #fff;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
}
.dropdown .submenu li a:hover {
  background-color: rgba(255,255,255,0.1);
}

/* Show submenu on hover or focus (accessibility-friendly) */
.dropdown:hover .submenu,
.dropdown:focus-within .submenu {
  display: block;
}

/* Align caret icon */
.caret {
  margin-left: 0.5rem;
  font-size: 0.8em;
}

/* Base dropdown setup */
nav ul li.dropdown {
  position: relative;
}

/* Hide the submenu by default */
nav ul li.dropdown .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  padding: 0.5rem 0;
  min-width: 180px;
  z-index: 100;
}

/* Individual submenu items */
nav ul li.dropdown .submenu li {
  padding: 0;
}

/* Submenu links styling */
nav ul li.dropdown .submenu a {
  display: block;
  padding: 0.6rem 1rem;
  color: rgb(71, 70, 70);
  text-decoration: none;
  font-size: 0.95rem;
  transition: background-color 0.3s ease;
}

/* Hover effect for submenu items */
nav ul li.dropdown .submenu a:hover {
  background-color: #3fc1ba;
  color: #fff;
}

/* Show submenu on hover or when focused */
nav ul li.dropdown:hover > .submenu,
nav ul li.dropdown:focus-within > .submenu {
  display: block;
}

/* Optional: Add a caret indicator */
nav ul li.dropdown > a::after {
  content: ' ▼';
  font-size: 0.8rem;
  margin-left: 0.3rem;
}

/* Style for the anchor wrapping the logo and title */
.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none; /* Remove default underline */
  color: inherit;         /* Maintain your current heading color */
}

.logo-link h3 {
  margin: 0;
  margin-right: 0.3rem;     /* Spacing between text and image */
  font-size: 1.1rem;      /* Adjust as needed */
  color: #0e1da0;          /* Your chosen heading color */
}

.logo-link img {
  height: 60px;           /* Consistent with your original sizing */
  width: auto;
}

/* Optional hover/focus feedback for accessibility */
.logo-link:hover h3,
.logo-link:focus h3,
.logo-link:hover img,
.logo-link:focus img {
  opacity: 0.8;           /* Subtle visual feedback on hover/focus */
}


.navbar img {
  height: 60px;
  width: auto;
  margin-right: 2rem;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

nav a {
  color: rgb(71, 70, 70);
  text-decoration: none;
  font-weight: 600;
  padding: 5px;
}
nav a:hover {
  color: #3fc1ba;
}

.join-button {
  display: inline-block;
  padding: 0.4rem 1.0rem;
  margin-top: 1.2rem;
  margin-left: 4px;
  background-color: #004393;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 24px;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s;
}

.join-button:hover {
  background-color: #011124; /* Slightly darker on hover */
}

/* If used in sidebar at bottom: center inside */
.sidebar-nav .join-button {
  position: absolute;
  bottom: 100px;
  left: 30px;
}


.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
}

/* Mobile responsive */
@media (max-width: 800px) {
  nav ul {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #004393;
    width: 200px;
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    transition: max-height 0.4s ease-in-out;
  }
  nav ul.open {
    max-height: 400px;
  }
  .mobile-toggle {
    display: block;
  }
}

/* Container layout */
.testimonial {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

/* Individual testimonial card */
.testimonial .col-3 {
  background: #f5f5f5;
  padding: 1.25rem;
  border-radius: 8px;
  position: relative;
}

/* Quote icon */
.testimonial .col-3 i.fa-quote-left {
  font-size: 1.5rem;
  color: #888;
  margin-bottom: 0.5rem;
  display: inline-block;
}
.testimonial .testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0.75rem auto; /* vertical spacing, centered horizontally */
  display: block;
}

/* Optional slight variation if images are not square */
@media (max-width: 480px) {
  .testimonial .testimonial-img {
    width: 60px;
    height: 60px;
  }
}

/* Add to your existing CSS */
/* Styling for entire #about section */
#about,
#about .about-wrapper,
#about .about-text {
  background-color: #004393;
  color: #fff;
}

/* Make sure all headings and paragraphs inherit the white text */
#about h1,
#about h2,
#about p {
  color: inherit;
}
/* Add vertical spacing above and below the about section image */
#about .about-image img {
  margin: 2rem 0; /* ~32px space above and below the image */
  display: block; /* ensures there's no extra gap under the image inline baseline :contentReference[oaicite:2]{index=2} */
}
/*leadership*/
/* Center the section heading */
#leadership h2 {
  text-align: center;
  color: #fff;
  background-color: #004393;
  padding: 1rem 0;
  margin: 0;
}

/* Container for cards */
.leadership-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
  background-color: #e3e6eb;
}

/* Individual card styling */
.leadership-cards .card {
  background-color: #3c7fd1;
  color: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Icon styling */
.leadership-cards .card .icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  color: #3fc1ba; /* icon accent color for visual pop */
}

/* Titles and text styling */
.leadership-cards .card h3 {
  margin: 0.5rem 0;
  font-size: 1.2rem;
}

.leadership-cards .card p {
  margin: 0;
  line-height: 1.4;
  font-size: 1rem;
}

.products-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 20px 0;
}
.product-card {
  flex: 1 1 calc(33.333% - 20px);
  background: #f9f9f9;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.product-card h2 {
  margin-top: 0;
  color: #2a5d84;
}
.product-card p {
  color: #555;
  line-height: 1.5;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}
@media (max-width: 768px) {
  .product-card {
    flex: 1 1 100%;
  }
}


/*loans*/
.loan-item {
  background-color: #004393;
  color: #fff;
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.loan-item.visible {
  background-color: #004393;
  color: #fff;
  opacity: 1;
  transform: translateY(0) scale(1);
}
.loan-item.visible p{
  color: #fff;
}
.loan-item.visible h2{
  color: #fff;
}

/*why join us*/
#why-join {
  background-color: #fff;
  color: #004393;
  padding: 2rem 1rem;
}

#why-join h3 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.8rem;
  color: #004393;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.why-card {
  background-color: #d7df23;
  color: #240202;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: rgba(0,0,0,0.2) 0 5px 15px;
}

.why-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #3fc1ba;
}

.why-card h4 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.4;
}


  /* Container spans full width, auto height based on content */
 .slider-container-alt {
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
}

.slider-alt {
  display: flex;
  transition: transform 0.5s ease-in-out;
  /* removed fixed width */
}

.slide-img {
  display: block;
  flex: 0 0 100%;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center;
}


/* Testimonial text */
.testimonial .col-3 p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1rem;
  line-height: 1.4;
}

/* Reviewer image (before rating) */
.testimonial .col-3 img {
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.75rem;
}

/* Ratings */
.testimonial .rating {
  display: flex;
  gap: 2px;
  margin-bottom: 0.75rem;
}

.testimonial .rating i {
  color: #f5a623;
}

/* Reviewer name */
.testimonial .col-3 h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  margin: 0;
}

/* Responsive breakpoints */
@media (max-width: 900px) {
  .testimonial {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
}

@media (max-width: 600px) {
  .testimonial {
    grid-template-columns: 1fr;
  }
}

/* Reveal scroll effect shared with loan-items */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Members gallery base */
.members-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.5rem;
  padding: 20px 0;
  justify-items: center;
}

/* Member card styling */
.member-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
  transform: translateY(0);
  transition: transform 0.3s;
}
.member-card img {
  width: 100%;
  height: auto;
  display: block;
}
.member-card h4 {
  margin: 0.5rem 0 0.25rem;
  font-size: 1.1rem;
  color: #004393;
}
.member-card p {
  margin-bottom: 0.75rem;
  color: #555;
  font-size: 0.95rem;
}
.member-card:hover {
  transform: translateY(-5px);
}

/* Tab navigation */
.members-nav {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}
.members-nav .tab-btn {
  background: #004393;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}
.members-nav .tab-btn:hover,
.members-nav .tab-btn.active {
  background: #1e9c95;
}

/* Tab content handling */
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
  padding: 50px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.gallery-section h2 {
  font-size: 2.5rem;
  color: #1e9c95;
  margin-bottom: 30px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  justify-items: center;
}

.gallery-item img {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}



.footer a {
  color: #fff;
  text-decoration: none;
}
.about-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text {
  flex: 0 0 40%;
}

.about-image {
  flex: 0 0 60%;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

/* Container grid */
.loan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

/* Individual loan item styling */
.loan-item {
  background: #f9f9f9;
  border: 1px solid #ddd;
  padding: 1rem;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

/* Headings */
.loan-item h2 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  color: #333;
}

/* Feature lists */
.loan-item p {
  font-size: 0.95rem;
  line-height: 1.4;
  margin: 0;
  color: #555;
}



/* Responsive adjustments */
@media (max-width: 900px) {
  .loan-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

@media (max-width: 600px) {
  .loan-grid {
    grid-template-columns: 1fr;
  }
}

/*--------slider--------*/


.slider-container {
    position: relative;
    width: 100%;
    max-width: 100%; /* Prevent overflow */
    margin: auto;
    overflow: hidden;
}

.slider {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    flex: 0 0 100%;
    transition: transform 0.5s ease;
    height: 600px; /* Default height for larger screens */
    background-size: cover;
    background-position: center;
}

/* Arrow button styles */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #004393;
    color: purple;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1; /* Lower than the menu */
}

/* Positioning the arrows */
.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* Dots for slide indicators */
.slider-dots {
    text-align: center;
    margin-top: 20px;
}

/* Dot styles */
.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #004393;
    margin: 0 5px;
    cursor: pointer;
}

/* Hover effects */
.arrow:hover {
    color: #ff523b;
    background-color: rgb(9, 139, 53);
}

.dot:hover {
    color: #ff523b;
    background-color: rgb(17, 177, 57);
}

.dot.active {
    background-color: #ff523b;
}

/* Responsive styles */
@media (max-width: 768px) {
    .slide {
        height: 400px; /* Reduced height for tablets */
		width: 100%;
    }
}

@media (max-width: 480px) {
    .slide {
        height: 250px; /* Further reduced height for mobile devices */
		width: 100%;
    }

    .arrow {
        padding: 8px; /* Reduce padding on arrows for smaller screens */
    }

    .dot {
        width: 8px; /* Smaller dots for mobile */
        height: 8px;
    }
}


/*logos*/

.carousel {
    margin: 0 auto;
    padding: 20px 0;
    max-width: 100%; /* Make it full width */
    overflow: hidden;
    position: relative; /* Ensure absolute positioning works */
    display: flex;
    justify-content: center; /* Center the cards */
    align-items: center;
}

.card {
    min-width: 150px; /* Set a minimum width for each card */
    height: auto;
    margin: 0 10px; /* Add spacing between cards */
    color: white;
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.1) 5px 5px 20px 0;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card img {
    width: 100%; /* Ensure logos fit within the card */
    height: auto;
    object-fit: contain; /* Ensure logos retain their aspect ratio */
}

.group {
    display: flex;
    gap: 20px;
    will-change: transform;
    animation: scrolling 30s linear infinite; /* Slower scrolling for a smoother effect */
}

@keyframes scrolling {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* Scrolls halfway through the duplicated content */
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .card {
        min-width: 120px; /* Reduce card width for smaller screens */
    }
}

@media (max-width: 480px) {
    .card {
        min-width: 100px; /* Further reduce card width for mobile */
    }
}

/*contact section*/
/* Entire contact section background and text color */
#contact {
  background-color: #004393;
  color: #fff;
  padding: 2rem 1rem;
}
#contact h3 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: inherit;
}

/* Grid layout: two columns for info and form */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}

/* Contact information styling */
.contact-info .welcome-cta {
  background-color: #fff;
  color: #004393;
  font-weight: bold;
  font-size: 2rem;      /* double size of regular paragraphs (~32px) */
  padding: 1rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Icon styling at end of CTA */
.contact-info .cta-icon {
  font-size: 2.5rem;
}

/* Regular paragraphs */
.contact-info p:not(.welcome-cta) {
  font-size: 1rem;
  margin: 0.8rem 0;
}

.contact-info p {
  color: #fff;
  margin: 0.8rem 0;
  font-size: 1rem;
}
.contact-info a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}
.contact-info a:hover {
  color: #ca15a3;
}

/* Contact form styling */
.contact-form {
  background-color: #73a5d1;
  padding: 1.5rem;
  border-radius: 8px;
}
.contact-form h3 {
  margin-bottom: 1rem;
  text-align: center;
  color: #fff;
}

/* Layout form fields using grid */
.contact-form .form-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

/* Two-column row for name and email */
.contact-form .form-row:first-child {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 600px) {
  .contact-form .form-row:first-child {
    grid-template-columns: 1fr;
  }
}

/* Input and textarea styling */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  box-sizing: border-box;
}
.contact-form textarea {
  resize: vertical;
}

/* Submit button styling */
.contact-form button {
  width: 100%;
  padding: 0.75rem;
  background-color: #3fc1ba;
  color: #fff;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}
.contact-form button:hover {
  background-color: #4314c4;
}

/* Adjust links in form to contrast */
.contact-form a {
  color: inherit;
}


/*--------footer-------*/

.footer{
	background: #000;
	color: #8a8a8a;
	font-size: 14px;
	padding: 60px 0 20px;
}
.footer p{
	color: #8a8a8a;
}
.footer h3{
	color: #fff;
	margin-bottom: 20px;
}
.footer-col-1, .footer-col-2, .footer-col-3, .footer-col-4{
	min-width: 250px;
	margin-bottom: 20px;
}
.footer-col-1{
	flex-basis: 30%;
}
.footer-col-3{
	flex-basis: 12;
	text-align: right;
}
ul{
	list-style-type: none;
}
.app-logo{
	margin-top: 20px;
}
.app-logo img{
	width: 140px;
}
.footer hr{
	border: none;
	background: #b5b5b5;
	height: 1px;
	margin: 20px 0;
}
.copyright{
	text-align: center;
}

/*--social media--*/
.button{
	display: inline-block;
	width: 50px;
	height: 50px;
	background-color: #1e9c95;;
	border-radius: 40px;
	line-height: 50px;
	text-align: center;
	box-shadow: 0px, 10px, 10px, rgba(0, 0, 0, 0.1);
  }
  .wrapper .button .icon{
	font-size: 20px;
	color: black;
  }
  .wrapper .button:hover{
  width: 100px;
  transition: 0.7s;
  }
  .wrapper .button:nth-child(1):hover .icon{
	color: #3fc1ba;
  }
  .wrapper .button:nth-child(2):hover .icon{
	color: #3fc1ba;
  }
  .wrapper .button:nth-child(3):hover .icon{
	color: #3fc1ba;
  }
  .wrapper .button:nth-child(4):hover .icon{
	color: green;
  }
  .underline{
	color: #3fc1ba;
  }
 
/*--------media query for menu--------*/
@media only screen and (max-width: 800px){
	nav ul{
		position: absolute;
		top: 70px;
		right: 0;
		background: black;
		width: 50%;
		overflow: hidden;
		transition: max-height 0.5s;
	}
	nav ul li{
		display: block;
		margin-right: 50px;
		margin-top: 10px;
		margin-bottom: 10px;
	}
	nav ul li a{
		color: #fff;
	}
	.menu-icon{
		display: block;
		cursor: pointer;

	}
}



button {
    padding: 0.75rem;
    background-color: #028482;
    color: white;
    font-size: 1.1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #1f9907;
}

.contact-info {
    margin-top: 2rem;
    text-align: center;
    color: #555;
}

.contact-info h3 {
    font-size: 1.5rem;
    color: #028482;
}

/*---media query for  less than 600px screen---*/
@media only screen and (max-width: 600px){
	.row{
		text-align: center;
		width: 100%; 
	}
	.col-2, .col-3, .col-4{
		flex-basis: 100%;
	}
	.single-product .row{
	text-align: left;
	width: 100%; 
}
.single-product .col-2{
padding: 20px 0;
width: 100%; 
}
.single-product h1{
	font-size: 26px;
	line-height: 32px; 
}
}

/* Media Queries */
@media (max-width: 768px) {
    .col-2, .col-3 {
        flex: 1 1 100%; /* Full width on smaller screens */
    }

    .slider h2 {
        font-size: 1.5rem; /* Smaller font size */
    }

    .time {
        font-size: 1.5rem; /* Smaller font size */
    }
}

/* Hide menu icon on desktop */
@media (min-width: 801px) {
  .menu-icon {
    display: none !important;
  }
}

/* Show menu icon on tablets & mobile */
@media (max-width: 800px) {
  .menu-icon {
    display: block !important;
  }
}


/* Button styles */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    text-decoration: none;
}

/* Footer and other styles */
.footer {
    background-color: #333;
    color: white;
    padding: 20px;
}


.categories{
	flex-basis: 100%;
}
 