/* ===================================
   HEADER COMPONENT STYLES
   =================================== */

/* CSS Variables */
:root {
  --primary-color: #228b22;
  --secondary-color: #0a2a0a;
  --white: #ffffff;
  --black: #1a1a1d;
  --primary-hover: #186318;
  --header-height: 90px;
  --gray-border: #e0e0e0;
  --gray-light: #f8f9fa;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}

h1 {
  font-size: 40px;
}
h2 {
  font-size: 32px;
}
h3 {
  font-size: 24px;
}
h4 {
  font-size: 20px;
}
h5 {
  font-size: 18px;
}

p {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header Styles */
.header-wrapper {
  background-color: var(--primary-color);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

/* Optional: Scroll effect */
.header-wrapper.scrolled {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.header-container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 40px;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo Styles */
.logo-wrapper {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--white);
  transition: transform 0.3s ease;
}

.logo-wrapper:hover {
  transform: scale(1.05);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background-color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

.logo-icon i {
  color: var(--primary-color);
  font-size: 24px;
}

.logo-text {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
}

/* Navigation Styles */
.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}

.nav-menu a {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  position: relative;
  transition: opacity 0.3s ease;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--white);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-menu a:hover {
  opacity: 1;
}

/* Active state for navigation links */
.nav-menu a.active {
  opacity: 1;
}

.nav-menu a.active::after {
  width: 100%;
}

/* CTA Button Styles */
.cta-primary {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  background-color: var(--white);
  color: var(--primary-color);
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cta-primary:hover {
  background-color: #186318;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Auth Buttons Styles */
.auth-buttons {
  display: flex;
  gap: 16px;
}

.auth-buttons a {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.auth-buttons .signup {
  background-color: var(--white);
  color: var(--primary-color);
}

.auth-buttons .signup:hover {
  background-color: #f0f0f0;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.auth-buttons .login {
  background-color: transparent;
  border: 2px solid var(--white);
}

.auth-buttons .login:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-menu-btn:hover {
  transform: scale(1.1);
}

.mobile-menu-btn:focus {
  outline: none;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 998;
}

.mobile-menu-overlay.active {
  display: block;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  z-index: 999;
  overflow-y: auto;
  padding-top: 80px;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-content {
  padding: 30px 20px;
}

.mobile-menu .nav-menu {
  flex-direction: column;
  gap: 0;
  margin-top: 20px;
}

.mobile-menu .nav-menu li {
  border-bottom: 1px solid #eee;
}

.mobile-menu .nav-menu li:last-child {
  border-bottom: none;
}

.mobile-menu .nav-menu a {
  color: var(--black);
  font-size: 18px;
  padding: 15px 0;
  display: block;
}

.mobile-menu .nav-menu a:hover {
  color: var(--primary-color);
}

.mobile-menu .nav-menu a::after {
  display: none;
}

.mobile-menu .cta-primary {
  width: 100%;
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
  margin-bottom: 20px;
}

.mobile-menu .auth-buttons {
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
}

.mobile-menu .auth-buttons a {
  width: 100%;
  text-align: center;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.mobile-menu .auth-buttons .signup {
  background-color: var(--primary-color);
  color: var(--white);
}

.mobile-menu .auth-buttons .signup:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
}

.mobile-menu .auth-buttons .login {
  background-color: transparent;
}

.mobile-menu .auth-buttons .login:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

/* Utility class for body when menu is open */
body.menu-open {
  overflow: hidden;
}

/* ===================================
   RESPONSIVE BREAKPOINTS
   =================================== */

/* Large Desktop (1920px and above) - Default styles apply */

/* Desktop (1200px - 1919px) */
@media (max-width: 1920px) and (min-width: 1201px) {
  .header-container {
    padding: 0 60px;
  }
}

/* Small Desktop / Large Tablet (992px - 1199px) */
@media (max-width: 1200px) {
  .nav-wrapper {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .header-container {
    padding: 0 30px;
  }
}

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
  .header-container {
    padding: 0 20px;
  }
}

/* Large Mobile (576px - 767px) */
@media (max-width: 767px) {
  :root {
    --header-height: 70px;
  }

  .header-container {
    padding: 0 20px;
  }

  .logo-text {
    font-size: 20px;
  }

  .logo-icon {
    width: 35px;
    height: 35px;
  }

  .logo-icon i {
    font-size: 20px;
  }

  .mobile-menu {
    width: 100%;
  }

  .mobile-menu-content {
    padding: 20px 15px;
  }
}

/* Small Mobile (320px - 575px) */
@media (max-width: 575px) {
  :root {
    --header-height: 60px;
  }

  .header-container {
    padding: 0 15px;
  }

  .logo-text {
    font-size: 18px;
  }
}
/* navbar UI Design ends here  */

/* ===================================
   FOOTER COMPONENT STYLES
   =================================== */

/* Footer Wrapper */
.footer-wrapper {
  background-color: var(--primary-hover);
  color: var(--white);
  padding: 60px 0 0;
}

.footer-container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Footer Top Section */
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-bottom: 50px;
}

/* Footer Brand Section */
.footer-brand {
  max-width: 350px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo .logo-icon {
  width: 40px;
  height: 40px;
  background-color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

.footer-logo .logo-icon i {
  color: var(--primary-color);
  font-size: 24px;
}

.footer-logo .logo-text {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
}

.footer-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.9);
}

/* CTA Secondary Button */
.cta-secondary {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 500;
  background-color: var(--white);
  color: var(--primary-color);
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cta-secondary:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Footer Links Grid */
.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-column {
  min-width: 0;
}

.footer-heading {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(5px);
}

/* Footer Divider */
.footer-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 50px 0 30px;
}

/* Footer Bottom Section */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
}

.copyright {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link i {
  color: var(--primary-color);
  font-size: 18px;
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-link:hover i {
  color: var(--primary-hover);
}

/* ===================================
   RESPONSIVE BREAKPOINTS
   =================================== */

/* Large Desktop (1920px and above) - Default styles apply */

/* Desktop (1200px - 1919px) */
@media (max-width: 1920px) and (min-width: 1201px) {
  .footer-container {
    padding: 0 60px;
  }
}

/* Small Desktop (1024px - 1200px) */
@media (max-width: 1200px) {
  .footer-container {
    padding: 0 30px;
  }

  .footer-top {
    gap: 60px;
  }

  .footer-links-grid {
    gap: 30px;
  }
}

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) {
  .footer-wrapper {
    padding: 50px 0 0;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-brand {
    max-width: 100%;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    row-gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

/* Large Mobile (576px - 767px) */
@media (max-width: 767px) {
  .footer-container {
    padding: 0 20px;
  }

  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-heading {
    font-size: 16px;
  }

  .footer-links a {
    font-size: 14px;
  }
}

/* Small Mobile (320px - 575px) */
@media (max-width: 575px) {
  .footer-wrapper {
    padding: 40px 0 0;
  }

  .footer-container {
    padding: 0 15px;
  }

  .footer-top {
    gap: 30px;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
    margin-bottom: 15px;
  }

  .footer-logo .logo-text {
    font-size: 20px;
  }

  .footer-logo .logo-icon {
    width: 35px;
    height: 35px;
  }

  .footer-logo .logo-icon i {
    font-size: 20px;
  }

  .footer-description {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .cta-secondary {
    font-size: 14px;
    padding: 10px 20px;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
  }

  .footer-heading {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .footer-links li {
    margin-bottom: 10px;
  }

  .footer-divider {
    margin: 30px 0 20px;
  }

  .footer-bottom {
    padding-bottom: 20px;
  }

  .copyright {
    font-size: 12px;
  }

  .social-link {
    width: 35px;
    height: 35px;
  }

  .social-link i {
    font-size: 16px;
  }
}
/* footer design ends here */

/* login UI Design Style */
/* Login Content Styles */
.login-content {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 50px 0;
  background-color: #f8f9fa;
}

.login-container {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 120px;
}

/* Left Side - Form */
.login-form-section {
  flex: 1;
  max-width: 1920px;
}

.login-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 50px;
  text-transform: uppercase;
  line-height: 1.2;
}

.login-form {
  width: 100%;
}

.form-group {
  margin-bottom: 24px;
  position: relative;
}

.form-control {
  width: 100%;
  padding: 16px 50px 16px 20px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #f5f5f5;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(34, 139, 34, 0.1);
}

.form-control::placeholder {
  color: #999;
}

.form-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 20px;
}

.password-toggle {
  cursor: pointer;
  transition: color 0.3s ease;
}

.password-toggle:hover {
  color: var(--primary-color);
}

/* Remember Me & Forgot Password */
.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 10px;
}

.remember-me input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--primary-color);
  cursor: pointer;
}

.remember-me label {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: var(--black);
  cursor: pointer;
  margin: 0;
}

.forgot-password {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: var(--black);
  text-decoration: none;
  transition: color 0.3s ease;
}

.forgot-password:hover {
  color: var(--primary-color);
}

/* Login Button */
.btn-login {
  width: 100%;
  padding: 16px;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 25px;
}

.btn-login:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(34, 139, 34, 0.3);
}

/* Sign Up Link */
.signup-link {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #1a1a1d;
}

.signup-link a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.signup-link a:hover {
  color: var(--primary-hover);
}

/* Right Side - Illustration */
.login-illustration {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.illustration-image {
  width: 100%;
  height: auto;
  max-width: 1900px;
  object-fit: contain;
}

/* Responsive Design */
@media (max-width: 1400px) {
  .login-container {
    gap: 80px;
  }
}

@media (max-width: 1199px) {
  .login-container {
    padding: 20px 40px;
  }

  .login-title {
    font-size: 40px;
  }
}

@media (max-width: 991px) {
  .login-content {
    padding: 20px 10px;
  }

  .login-container {
    flex-direction: column;
    gap: 40px;
  }

  .login-form-section {
    max-width: 600px;
    width: 100%;
  }

  .login-illustration {
    display: none;
  }
}

@media (max-width: 767px) {
  .login-content {
    padding: 10px 0;
  }

  .login-title {
    font-size: 32px;
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .login-container {
    padding: 10px 20px;
  }

  .login-title {
    font-size: 28px;
  }

  .form-control {
    padding: 14px 45px 14px 16px;
  }

  .btn-login {
    padding: 14px;
    font-size: 16px;
  }
}
/*  login UI Design Style ends here */

/* Create a task UI Design */
/* List Service Content Styles */
.list-service-content {
  display: flex;
  align-items: center;
  padding: 70px 0;
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.list-service-container {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 120px;
}

/* Left Side - Form */
.list-service-form-section {
  flex: 1;
  max-width: 1920px;
}

.list-service-title {
  font-family: "Poppins", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 50px;
  line-height: 1.2;
}

.list-service-form {
  width: 100%;
}

.form-group {
  margin-bottom: 24px;
}

.form-control {
  width: 100%;
  padding: 16px 20px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #f5f5f5;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(34, 139, 34, 0.1);
}

.form-control::placeholder {
  color: #999;
}

/* Textarea */
textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Select dropdown */
select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  padding-right: 45px;
}

/* Location input with icon */
.location-input-wrapper {
  position: relative;
}

.location-input-wrapper .form-control {
  padding-right: 45px;
}

.location-icon-list {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 20px;
}

/* Submit Button */
.btn-post-task {
  width: 100%;
  padding: 16px;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.btn-post-task:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(34, 139, 34, 0.3);
}

/* Right Side - Illustration */
.list-service-illustration {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.illustration-image {
  width: 100%;
  height: auto;
  max-width: 1900px;
  object-fit: contain;
}

/* Responsive Design */
@media (max-width: 1400px) {
  .list-service-container {
    gap: 80px;
  }
}

@media (max-width: 1199px) {
  .list-service-content {
    padding: 50px 0;
  }
  .list-service-container {
    padding: 0 40px;
  }

  .list-service-title {
    font-size: 40px;
  }

  .clock-icon {
    display: none;
  }

  .calendar-icon {
    display: none;
  }
}

@media (max-width: 991px) {
  .list-service-content {
    padding: 60px 0;
  }

  .list-service-container {
    flex-direction: column;
    gap: 40px;
  }

  .list-service-form-section {
    max-width: 600px;
    width: 100%;
  }

  .list-service-illustration {
    display: none;
  }
}

@media (max-width: 767px) {
  .list-service-content {
    padding: 40px 0;
  }

  .list-service-title {
    font-size: 32px;
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .list-service-container {
    padding: 0 20px;
  }

  .list-service-title {
    font-size: 28px;
  }

  .form-control {
    padding: 14px 16px;
  }

  .btn-post-task {
    padding: 14px;
    font-size: 16px;
  }
}
/* Create a Task UI Design ends here */

/* Browse UI Design */
/* Browse Task Content */
.browse-task-content {
  min-height: calc(100vh - var(--header-height));
  background-color: #f8f9fa;
  padding: 40px 0;
}

.browse-task-container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 60px;
}

/* Search Filters Bar */
.search-filters-bar {
  background-color: var(--white);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.filters-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.filter-group {
  position: relative;
}

.filter-input {
  width: 100%;
  padding: 12px 16px;
  padding-left: 40px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #f8f9fa;
  transition: all 0.3s ease;
}

.filter-input:focus {
  outline: none;
  border-color: var(--primary-color);
  background-color: var(--white);
}

.filter-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 16px;
}

.filter-select {
  width: 100%;
  padding: 12px 40px 12px 16px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #f8f9fa;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  transition: all 0.3s ease;
}

.filter-select:focus {
  outline: none;
  border-color: var(--primary-color);
  background-color: var(--white);
}

/* Main Content Grid */
.main-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

/* Service Listings */
.service-listings {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.service-image {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.service-details {
  flex: 1;
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.service-title {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  margin: 0;
}

.service-rating {
  display: flex;
  align-items: center;
  gap: 5px;
}

.rating-value {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
}

.rating-stars {
  color: #ffd700;
}

.service-location {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #1a1a1d;
  margin-bottom: 8px;
}

.service-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-top: 10px;
}

.status-closed {
  background-color: #ffe4e1;
  color: #dc3545;
}

.status-open {
  background-color: #e8f5e9;
  color: #4caf50;
}

/* Map Container */
.map-container {
  position: sticky;
  top: calc(var(--header-height) + 20px);
  height: calc(100vh - var(--header-height) - 40px);
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.map-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Map placeholder - Replace with actual Google Maps */
.map-placeholder {
  width: 100%;
  height: 100%;
  background-image: url("assets/images/map-placeholder.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Pagination */
.pagination-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.pagination {
  display: flex;
  gap: 8px;
  align-items: center;
}

.page-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e0e0e0;
  background-color: var(--white);
  color: var(--black);
  text-decoration: none;
  border-radius: 6px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  transition: all 0.3s ease;
}

.page-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.page-btn.active {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.page-btn.prev,
.page-btn.next {
  font-size: 18px;
}

/* Responsive Design */
@media (max-width: 1400px) {
  .browse-task-container {
    padding: 0 40px;
  }
}

@media (max-width: 1199px) {
  .filters-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .main-content-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .map-container {
    position: static;
    height: 400px;
    order: -1;
  }
}

@media (max-width: 767px) {
  .browse-task-container {
    padding: 0 20px;
  }

  .browse-task-content {
    padding: 20px 0;
  }

  .service-card {
    flex-direction: column;
  }

  .service-image {
    width: 100%;
    height: 200px;
  }
}

@media (max-width: 575px) {
  .filters-grid {
    grid-template-columns: 1fr;
  }

  .page-btn {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
}
/* UI Design ends here */

/* Categories UI Design */
/* Categories Content */
.categories-content {
  background-color: #f8f9fa;
  padding: 40px 0;
}

.categories-container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 60px;
}

/* Search Filters Bar */
.search-filters-bar {
  background-color: var(--white);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.filters-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.filter-group {
  position: relative;
}

.filter-input {
  width: 100%;
  padding: 12px 16px;
  padding-left: 40px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #f8f9fa;
  transition: all 0.3s ease;
}

.filter-input:focus {
  outline: none;
  border-color: var(--primary-color);
  background-color: var(--white);
}

.filter-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 16px;
}

.filter-select {
  width: 100%;
  padding: 12px 40px 12px 16px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #f8f9fa;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  transition: all 0.3s ease;
}

.filter-select:focus {
  outline: none;
  border-color: var(--primary-color);
  background-color: var(--white);
}

/* Main Content Grid */
.main-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

/* Service Request Cards */
.service-listings {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.user-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.service-details {
  flex: 1;
}

.service-title {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  margin: 0 0 8px 0;
}

.service-location {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #1a1a1d;
  margin-bottom: 12px;
}

.contact-info {
  display: flex;
  gap: 20px;
  align-items: center;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #1a1a1d;
}

.contact-info i {
  color: var(--primary-color);
  margin-right: 5px;
}

.contact-item {
  display: flex;
  align-items: center;
}

/* Map Container */
.map-container {
  position: sticky;
  top: calc(var(--header-height) + 20px);
  height: calc(100vh - var(--header-height) - 40px);
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.map-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Pagination */
.pagination-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  grid-column: 1 / -1;
}

.pagination {
  display: flex;
  gap: 8px;
  align-items: center;
}

.page-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e0e0e0;
  background-color: var(--white);
  color: var(--black);
  text-decoration: none;
  border-radius: 6px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  transition: all 0.3s ease;
}

.page-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.page-btn.active {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.page-btn.prev,
.page-btn.next {
  font-size: 18px;
}

/* Responsive Design */
@media (max-width: 1400px) {
  .categories-container {
    padding: 0 40px;
  }
}

@media (max-width: 1199px) {
  .filters-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .main-content-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .map-container {
    position: static;
    height: 400px;
    order: -1;
  }
}

@media (max-width: 991px) {
  .category-cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .categories-container {
    padding: 0 20px;
  }

  .categories-content {
    padding: 20px 0;
  }

  .service-card {
    flex-direction: column;
    text-align: center;
  }

  .user-avatar {
    margin: 0 auto 15px;
  }

  .contact-info {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 575px) {
  .filters-grid {
    grid-template-columns: 1fr;
  }

  .page-btn {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
}

/* Upgrades UI Design */
/* Upgrades Content */
.upgrades-content {
  background-color: #f8f9fa;
  padding: 60px 0 0 0;
}

.upgrades-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Header Section */
.pricing-header {
  text-align: center;
  margin-bottom: 60px;
}

.features-badge {
  display: inline-block;
  padding: 8px 20px;
  background-color: transparent;
  border: 1px solid #999;
  border-radius: 25px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #1a1a1d;
  margin-bottom: 20px;
}

.pricing-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.2;
  margin-bottom: 20px;
}

.pricing-subtitle {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #1a1a1d;
  max-width: 600px;
  margin: 0 auto;
}

/* Pricing Cards Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

/* Pricing Card */
.pricing-card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.plan-name {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 20px;
  text-align: center;
}

.plan-price {
  text-align: center;
  margin-bottom: 30px;
}

.price-amount {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--primary-color);
}

.price-currency {
  font-size: 24px;
}

.price-period {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #1a1a1d;
}

/* Features List */
.features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.features-list li {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #1a1a1d;
  padding: 12px 0;
  padding-left: 28px;
  position: relative;
  line-height: 1.5;
}

.features-list li:before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--primary-color);
  font-size: 16px;
}

/* CTA Button */
.btn-get-started {
  width: 100%;
  padding: 14px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 700;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-get-started:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(34, 139, 34, 0.3);
  color: var(--white);
}

/* Free Plan Specific */
.free-plan {
  background-color: var(--white);
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.3s ease;
}

.free-plan .plan-price {
  margin-bottom: 20px;
}

.free-plan .features-list {
  margin-bottom: 20px;
}

/* Popular/Recommended Badge */
.popular-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 5px 20px;
  border-radius: 20px;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1199px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .upgrades-content {
    padding: 50px 0;
  }

  .pricing-title {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .upgrades-content {
    padding: 40px 0;
  }

  .upgrades-container {
    padding: 0 20px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pricing-title {
    font-size: 32px;
  }

  .price-amount {
    font-size: 32px;
  }

  .pricing-card {
    padding: 30px 20px;
  }
}

@media (max-width: 575px) {
  .pricing-title {
    font-size: 28px;
  }

  .pricing-subtitle {
    font-size: 14px;
  }

  .plan-name {
    font-size: 20px;
  }
}

/* Sign Up UI Design */
/* Sign Up Content */
.signup-content {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f9fa;
  padding: 60px 20px;
  position: relative;
}

.signup-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1920px;
  width: 100%;
  padding: 0 50px;
  gap: 60px;
  z-index: 1;
  position: relative;
}

/* Left Side - Form */
.signup-form-section {
  flex: 1;
  max-width: 1920px;
}

.signup-title {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
  text-transform: uppercase;
}

.signup-subtitle {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #1a1a1d;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* User Type Tabs */
.user-type-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 30px;
  border-bottom: 2px solid #e0e0e0;
}

.user-type-tab {
  flex: 1;
  padding: 15px 20px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1d;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.user-type-tab.active {
  color: var(--primary-color);
}

.user-type-tab::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.user-type-tab.active::after {
  transform: scaleX(1);
}

/* Photo Upload Section */
.photo-upload-section {
  text-align: center;
  margin-bottom: 30px;
}

.photo-upload-container {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  position: relative;
}

.photo-preview {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.photo-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-placeholder {
  font-size: 48px;
  color: var(--primary-color);
}

.btn-upload {
  padding: 8px 24px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 500;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-upload:hover {
  background-color: var(--primary-hover);
  transform: translateY(-1px);
}

/* Form Styles */
.signup-form {
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-control {
  width: 100%;
  padding: 14px 45px 14px 16px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #f5f5f5;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(34, 139, 34, 0.1);
}

.form-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 18px;
}

.password-toggle {
  cursor: pointer;
  transition: color 0.3s ease;
}

.password-toggle:hover {
  color: var(--primary-color);
}

/* Terms Checkbox */
.terms-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 25px;
}

.terms-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--primary-color);
  cursor: pointer;
}

.terms-checkbox label {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #1a1a1d;
  line-height: 1.5;
  cursor: pointer;
}

.terms-checkbox a {
  color: var(--primary-color);
  text-decoration: none;
}

.terms-checkbox a:hover {
  text-decoration: underline;
}

/* Submit Button */
.btn-submit {
  width: 100%;
  padding: 16px;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 700;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.btn-submit:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(34, 139, 34, 0.3);
}

/* Login Link */
.login-link {
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #1a1a1d;
}

.login-link a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.login-link a:hover {
  text-decoration: underline;
}

/* Right Side - Illustration */
.signup-illustration {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.illustration-image {
  width: 100%;
  height: auto;
  max-width: 1900px;
  object-fit: contain;
}

/* Responsive Design */
@media (max-width: 1199px) {
  .signup-container {
    gap: 60px;
  }

  .signup-title {
    font-size: 32px;
  }
}

@media (max-width: 991px) {
  .signup-container {
    flex-direction: column;
    gap: 40px;
  }

  .signup-form-section {
    max-width: 600px;
    width: 100%;
  }

  .signup-illustration {
    display: none;
  }
}

@media (max-width: 575px) {
  .signup-content {
    padding: 30px 10px;
  }

  .signup-title {
    font-size: 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-control {
    padding: 12px 40px 12px 14px;
    font-size: 14px;
  }

  .btn-submit {
    padding: 14px;
    font-size: 16px;
  }
}

/* Filter Dropdown Container */
.filter-dropdown {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Dropdown Toggle Button - Matches filter-select styles */
.filter-dropdown-toggle {
  width: 100%;
  padding: 12px 40px 12px 16px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #1a1a1d;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #f8f9fa;
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  height: 100%;
  min-height: 48px;
}

/* Match the exact styling of filter-select */
.filters-grid .filter-dropdown-toggle {
  padding: 12px 40px 12px 16px;
  background-image: none;
}

.filter-dropdown-toggle span {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.filter-dropdown-toggle:hover {
  border-color: var(--primary-color, #228b22);
  background-color: var(--white, #ffffff);
}

.filter-dropdown-toggle:focus {
  outline: none;
  border-color: var(--primary-color, #228b22);
  background-color: var(--white, #ffffff);
  box-shadow: 0 0 0 3px rgba(34, 139, 34, 0.1);
}

.filter-dropdown-toggle.active {
  border-color: var(--primary-color, #228b22);
  background-color: var(--white, #ffffff);
}

/* Dropdown Arrow Icon */
.filter-dropdown-toggle i {
  color: #999;
  font-size: 12px;
  transition: transform 0.3s ease;
  pointer-events: none;
  margin-left: 10px;
  flex-shrink: 0;
}

.filter-dropdown-toggle.active i {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.filter-dropdown-menu {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 1000;
  overflow: hidden;
  max-height: 300px;
  overflow-y: auto;
  min-width: 100%;
}

.filter-dropdown-menu.show {
  display: block;
  animation: dropdownFadeIn 0.2s ease-out;
}

/* Filter Options */
.filter-option {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}

.filter-option:hover {
  background-color: #f8f9fa;
}

.filter-option:active {
  background-color: #e9ecef;
}

.filter-option.selected {
  background-color: rgba(34, 139, 34, 0.1);
  color: var(--primary-color, #228b22);
}

/* Filter Option Icons */
.filter-option i {
  width: 24px;
  font-size: 18px;
  color: var(--primary-color, #228b22);
  text-align: center;
  flex-shrink: 0;
}

/* ===================================
   RESPONSIVE STYLES
   =================================== */

/* Large Desktop (1920px and above) - Default styles apply */

/* Desktop (1200px - 1919px) */
@media (max-width: 1919px) and (min-width: 1200px) {
  .filter-dropdown-toggle {
    padding: 12px 40px 12px 16px;
    font-size: 16px;
  }
}

/* Small Desktop / Large Tablet (992px - 1199px) */
@media (max-width: 1199px) {
  /* When filters are in 2 columns */
  .filters-grid {
    grid-template-columns: 1fr 1fr;
  }

  .filter-dropdown-toggle {
    padding: 12px 35px 12px 16px;
    font-size: 15px;
  }

  .filter-option {
    padding: 11px 16px;
  }
}

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
  .filter-dropdown-toggle {
    padding: 11px 35px 11px 15px;
    font-size: 15px;
    min-height: 44px;
  }

  .filter-option {
    padding: 10px 15px;
    font-size: 13px;
  }

  .filter-option i {
    font-size: 16px;
    width: 22px;
  }
}

/* Large Mobile (576px - 767px) */
@media (max-width: 767px) {
  .filter-dropdown-toggle {
    padding: 10px 32px 10px 14px;
    font-size: 14px;
    min-height: 42px;
  }

  .filter-dropdown-toggle i {
    font-size: 11px;
  }

  .filter-option {
    padding: 10px 14px;
    font-size: 13px;
    gap: 10px;
  }

  .filter-option i {
    font-size: 16px;
    width: 20px;
  }
}

/* Small Mobile (320px - 575px) */
@media (max-width: 575px) {
  /* When filters stack to single column */
  .filters-grid {
    grid-template-columns: 1fr;
  }

  .filter-dropdown {
    width: 100%;
  }

  .filter-dropdown-toggle {
    padding: 12px 35px 12px 16px;
    font-size: 16px;
    min-height: 48px;
  }

  .filter-dropdown-menu {
    left: 0;
    right: 0;
    width: 100%;
  }

  .filter-option {
    padding: 12px 16px;
    font-size: 14px;
  }

  .filter-option i {
    font-size: 18px;
  }
}

/* ===================================
   INTEGRATION WITH EXISTING STYLES
   =================================== */

/* Ensure proper alignment in filter grid */
.filters-grid .filter-group {
  display: flex;
  align-items: stretch;
}

.filters-grid .filter-dropdown {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* Match height with other inputs */
.filters-grid .filter-input,
.filters-grid .filter-select,
.filters-grid .filter-dropdown-toggle {
  height: 48px;
}

/* Ensure consistent styling across all filter elements */
.filter-input,
.filter-select,
.filter-dropdown-toggle {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #f8f9fa;
  transition: all 0.3s ease;
}

.filter-input:focus,
.filter-select:focus,
.filter-dropdown-toggle:focus,
.filter-dropdown-toggle.active {
  outline: none;
  border-color: var(--primary-color, #228b22);
  background-color: var(--white, #ffffff);
}

/* Scrollbar Styling */
.filter-dropdown-menu::-webkit-scrollbar {
  width: 6px;
}

.filter-dropdown-menu::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.filter-dropdown-menu::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 3px;
}

.filter-dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Fix for iOS Safari */
.filter-dropdown-toggle {
  -webkit-tap-highlight-color: transparent;
}

/* Accessibility */
.filter-dropdown-toggle:focus-visible {
  outline: 2px solid var(--primary-color, #228b22);
  outline-offset: 2px;
}

/*Sign-up seeker UI Design */
/* Sign Up Content */
.signup-content {
  /* min-height: calc(100vh - var(--header-height)); */
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f9fa;
  padding: 60px 20px;
  position: relative;
}

.signup-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1920px;
  width: 100%;
  gap: 80px;
  z-index: 1;
  position: relative;
}

/* Left Side - Form */
.signup-form-section {
  flex: 1;
  max-width: 1920px;
}

.signup-title {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
  text-transform: uppercase;
}

.signup-subtitle {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #1a1a1d;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* User Type Tabs */
.user-type-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 30px;
  border-bottom: 2px solid #e0e0e0;
}

.user-type-tab a {
  flex: 1;
  padding: 15px 20px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1d;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  text-transform: uppercase;
  text-decoration: none;
}

.user-type-tab.active {
  color: var(--primary-color);
}

.user-type-tab::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.user-type-tab.active::after {
  transform: scaleX(1);
}

/* Photo Upload Section */
.photo-upload-section {
  text-align: center;
  margin-bottom: 30px;
}

.photo-upload-container {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  position: relative;
}

.photo-preview {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.photo-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-placeholder {
  font-size: 48px;
  color: var(--primary-color);
}

.btn-upload {
  padding: 8px 24px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 500;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-upload:hover {
  background-color: var(--primary-hover);
  transform: translateY(-1px);
}

/* Form Styles */
.signup-form {
  width: 100%;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-control {
  width: 100%;
  padding: 14px 45px 14px 16px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #f5f5f5;
  transition: all 0.3s ease;
}

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  padding-right: 45px;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(34, 139, 34, 0.1);
}

/* .form-icon {
  position: absolute;
  right: 16px;
  top: 14px;
  color: #999;
  font-size: 18px;
} */

textarea ~ .form-icon {
  top: 20px;
}

.password-toggle {
  cursor: pointer;
  transition: color 0.3s ease;
}

.password-toggle:hover {
  color: var(--primary-color);
}

/* Two column form fields */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* Terms Checkbox */
.terms-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 25px;
}

.terms-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--primary-color);
  cursor: pointer;
}

.terms-checkbox label {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #1a1a1d;
  line-height: 1.5;
  cursor: pointer;
}

.terms-checkbox a {
  color: var(--primary-color);
  text-decoration: none;
}

.terms-checkbox a:hover {
  text-decoration: underline;
}

/* Submit Button */
.btn-submit {
  width: 100%;
  padding: 16px;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 700;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.btn-submit:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(34, 139, 34, 0.3);
}

/* Login Link */
.login-link {
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #1a1a1d;
}

.login-link a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.login-link a:hover {
  text-decoration: underline;
}

/* Right Side - Illustration */
.signup-illustration {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.illustration-image {
  width: 100%;
  height: auto;
  max-width: 1900px;
  object-fit: contain;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .signup-container {
    gap: 60px;
  }

  .signup-title {
    font-size: 32px;
  }
  .signup-illustration {
    display: none;
  }
}

@media (max-width: 991px) {
  .signup-container {
    flex-direction: column;
    gap: 40px;
  }

  .signup-form-section {
    max-width: 600px;
    width: 100%;
  }

  .signup-illustration {
    display: none;
  }
}

@media (max-width: 575px) {
  .signup-content {
    padding: 30px 10px;
  }

  .signup-title {
    font-size: 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-control {
    padding: 12px 40px 12px 14px;
    font-size: 14px;
  }

  .btn-submit {
    padding: 14px;
    font-size: 16px;
  }
}

/* Hero Banner Section */
.hero-banner {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  min-height: 600px;
  max-width: 1920px;
}

/* Background Image */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* opacity: 0.1; */
}

.hero-container {
  max-width: 1920px;
  margin: 40px auto 0;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Hero Title */
.hero-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.2;
}

/* Search Box Container */
.search-box-container {
  max-width: 900px;
  margin: 0 auto 60px;
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 20px;
  display: flex;
  gap: 15px;
  align-items: center;
}

/* Category Dropdown */
.category-dropdown {
  min-width: 150px;
  position: relative;
}

/* Custom Filter Dropdown for ALL */
.filter-dropdown {
  position: relative;
  width: 100%;
}

.filter-dropdown-toggle {
  width: 100%;
  padding: 15px 40px 15px 20px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #1a1a1d;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #f8f9fa;
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
}

.filter-dropdown-toggle:hover,
.filter-dropdown-toggle:focus {
  border-color: var(--primary-color);
  background-color: var(--white);
}

.filter-dropdown-toggle.active {
  border-color: var(--primary-color);
  background-color: var(--white);
}

.filter-dropdown-toggle i {
  color: #999;
  font-size: 12px;
  transition: transform 0.3s ease;
  pointer-events: none;
}

.filter-dropdown-toggle.active i {
  transform: rotate(180deg);
}

.filter-dropdown-menu {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 1000;
  overflow: hidden;
  max-height: 300px;
  overflow-y: auto;
  min-width: 200px;
}

.filter-dropdown-menu.show {
  display: block;
}

.filter-option {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-option:hover {
  background-color: #f8f9fa;
}

.filter-option.selected {
  background-color: rgba(34, 139, 34, 0.1);
  color: var(--primary-color);
}

.filter-option i {
  width: 24px;
  font-size: 18px;
  color: var(--primary-color);
  text-align: center;
  flex-shrink: 0;
}

/* Search Input */
.search-input-wrapper {
  flex: 1;
  position: relative;
}

.search-input {
  width: 100%;
  padding: 15px 20px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #f8f9fa;
  transition: all 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-color: var(--primary-color);
  background-color: var(--white);
}

.search-input::placeholder {
  color: #999;
}

/* Location Input */
.location-input-wrapper {
  flex: 1;
  position: relative;
}

.location-input {
  width: 100%;
  padding: 15px 20px 15px 45px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #f8f9fa;
  transition: all 0.3s ease;
}

.location-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 18px;
}

.location-input:focus {
  outline: none;
  border-color: var(--primary-color);
  background-color: var(--white);
}

/* Search Button */
.btn-search {
  padding: 15px 30px;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-search:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(34, 139, 34, 0.3);
}

/* Illustration Images - Removed */

/* Top corner illustrations - Removed */

/* Responsive Design */
@media (max-width: 991px) {
  .hero-title {
    font-size: 36px;
  }

  .search-box-container {
    flex-direction: column;
    padding: 30px 20px;
  }

  .category-dropdown,
  .search-input-wrapper,
  .location-input-wrapper {
    width: 100%;
  }

  .btn-search {
    width: 100%;
    padding: 15px;
  }

  .corner-tools,
  .corner-laptop {
    display: none;
  }

  .filter-dropdown-menu {
    position: fixed;
    width: 90%;
    left: 5%;
    right: 5%;
  }
}

@media (max-width: 767px) {
  .hero-banner {
    padding: 40px 0;
  }

  .hero-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .illustration-1,
  .illustration-3 {
    display: none;
  }

  .illustration-2 {
    position: relative;
    left: auto;
    right: auto;
    transform: none;
    margin: 0 auto;
    display: block;
  }

  .hero-illustrations {
    height: 150px;
    margin-top: 40px;
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .hero-title {
    font-size: 24px;
  }

  .search-box-container {
    margin: 0 10px 40px;
  }

  .category-select,
  .search-input,
  .location-input {
    font-size: 14px;
    padding: 12px 15px;
  }

  .location-input {
    padding-left: 40px;
  }
}

/* featured section */
.featured-partners-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.partners-container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0px 40px;
}

.section-title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 50px;
  margin-left: 70px;
}

/* Carousel Wrapper */
.partners-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Carousel Container */
.partners-carousel {
  overflow: hidden;
  flex: 1;
}

.partners-track {
  display: flex;
  gap: 30px;
  margin-top: 20px;
  margin-bottom: 20px;
  transition: transform 0.5s ease;
}

/* Partner Card */
.partner-card {
  flex: 0 0 calc(20% - 24px);
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.partner-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Partner Logo */
.partner-logo-wrapper {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.partner-logo {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Partner Details Container */
.partner-details {
  padding: 25px 20px;
  margin-top: 12px;
  background-color: #ffffff;
}

/* Partner Details */
.partner-name {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}

.partner-category {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #1a1a1d;
  margin-bottom: 8px;
}

.partner-location {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #999;
  margin-bottom: 15px;
}

/* Rating */
.partner-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rating-value {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
}

.rating-stars {
  color: #ffd700;
}

.rating-stars i {
  font-size: 14px;
}

/* Carousel Buttons */
.carousel-btn {
  width: 50px;
  height: 50px;
  background-color: var(--white);
  border: 2px solid #e0e0e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.carousel-btn:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
}

.carousel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.carousel-btn:disabled:hover {
  background-color: var(--white);
  color: var(--black);
  border-color: #e0e0e0;
}

.carousel-btn i {
  font-size: 20px;
}

/* Responsive Design */
@media (max-width: 1400px) {
  .partner-card {
    flex: 0 0 calc(20% - 24px);
  }

  .partner-logo-wrapper {
    width: 100%;
    height: 150px;
  }
}

@media (max-width: 1199px) {
  .partner-card {
    flex: 0 0 calc(50% - 24px);
  }

  .partner-logo-wrapper {
    width: 100%;
    height: 130px;
  }
}

@media (max-width: 991px) {
  .partners-container {
    padding: 0 20px;
  }

  .section-title {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .partner-card {
    flex: 0 0 calc(50% - 15px);
  }

  .partners-track {
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .featured-partners-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .partner-card {
    flex: 0 0 100%;
    padding: 25px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
  }

  .carousel-btn i {
    font-size: 16px;
  }

  .partner-logo-wrapper {
    width: 100%;
    height: 150px;
  }
}

/* Ads Section - Fully Responsive */
.ads-section {
  padding: 80px 0;
  position: relative;
}

.ads-container {
  max-width: 1575px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
}

/* Main Ad Banner */
.ad-banner {
  width: 100%;
  height: 500px;
  background: #e9ecef;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.ad-banner:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Ad Content */
/* .ad-content {
  text-align: center;
  z-index: 2;
  position: relative;
  padding: 40px;
} */

.ad-placeholder {
  font-size: 2.5rem;
  color: #6c757d;
  font-weight: 600;
  margin: 0;
  letter-spacing: 1px;
}

/* Ad Image (when actual ad is inserted) */
.ad-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.3s ease;
}

.ad-banner:hover img {
  transform: scale(1.02);
}

/* Ad Overlay for Text Over Image */
/* .ad-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
} */

.ad-banner:hover .ad-overlay {
  opacity: 1;
}

/* Close button for ads (if needed) */
.ad-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  z-index: 3;
  transition: all 0.3s ease;
  opacity: 0;
}

.ad-banner:hover .ad-close {
  opacity: 1;
}

.ad-close:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: scale(1.1);
}

/* Loading skeleton for ads */
.ad-loading {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: adLoading 1.5s infinite;
}

/* Multiple Ads Layout (if needed) */
.ads-grid {
  display: grid;
  gap: 30px;
  margin-top: 30px;
}

.ads-grid.two-ads {
  grid-template-columns: 1fr 1fr;
}

.ads-grid.three-ads {
  grid-template-columns: repeat(3, 1fr);
}

.small-ad {
  height: 250px;
  border-radius: 12px;
}

/* === RESPONSIVE BREAKPOINTS === */

/* Extra Large Desktop - 1920px and above */
@media (min-width: 1921px) {
  .ads-section {
    padding: 80px 0;
  }

  .ads-container {
    max-width: 1575px;
    padding: 0 20px;
  }

  .ad-banner {
    height: 500px;
    border-radius: 20px;
  }

  .ad-content {
    padding: 50px;
  }

  .ad-placeholder {
    font-size: 3rem;
  }
}

/* Large Desktop - 1440px to 1920px */
@media (max-width: 1920px) and (min-width: 1441px) {
  .ads-container {
    max-width: 1400px;
  }

  .ad-banner {
    height: 450px;
  }

  .ad-placeholder {
    font-size: 2.75rem;
  }
}

/* Standard Desktop - 1200px to 1440px */
@media (max-width: 1440px) and (min-width: 1201px) {
  .ads-container {
    max-width: 1200px;
  }

  .ad-banner {
    height: 400px;
  }

  .ad-placeholder {
    font-size: 2.5rem;
  }

  .ad-content {
    padding: 35px;
  }
}

/* Large Tablet/Small Desktop - 992px to 1200px */
@media (max-width: 1200px) and (min-width: 993px) {
  .ads-section {
    padding: 50px 0;
  }

  .ads-container {
    max-width: 100%;
    padding: 0 20px;
  }

  .ad-banner {
    height: 350px;
    border-radius: 12px;
  }

  .ad-placeholder {
    font-size: 2.25rem;
  }

  .ad-content {
    padding: 30px;
  }

  .ads-grid {
    gap: 25px;
  }

  .small-ad {
    height: 200px;
  }
}

/* Tablet - 768px to 992px */
@media (max-width: 992px) and (min-width: 769px) {
  .ads-section {
    padding: 40px 0;
  }

  .ad-banner {
    height: 300px;
  }

  .ad-placeholder {
    font-size: 2rem;
  }

  .ad-content {
    padding: 25px;
  }

  .ads-grid.two-ads,
  .ads-grid.three-ads {
    grid-template-columns: 1fr;
  }

  .small-ad {
    height: 180px;
  }
}

/* Small Tablet - 576px to 768px */
@media (max-width: 768px) and (min-width: 577px) {
  .ads-section {
    padding: 35px 0;
  }

  .ads-container {
    padding: 0 15px;
  }

  .ad-banner {
    height: 250px;
    border-radius: 10px;
  }

  .ad-placeholder {
    font-size: 1.75rem;
  }

  .ad-content {
    padding: 20px;
  }

  .ads-grid {
    gap: 20px;
    margin-top: 25px;
  }

  .small-ad {
    height: 150px;
  }

  .ad-close {
    width: 25px;
    height: 25px;
    font-size: 14px;
    top: 10px;
    right: 10px;
  }
}

/* Mobile - 320px to 576px */
@media (max-width: 576px) {
  .ads-section {
    padding: 30px 0;
  }

  .ads-container {
    padding: 0 15px;
  }

  .ad-banner {
    height: 200px;
    border-radius: 8px;
  }

  .ad-placeholder {
    font-size: 1.5rem;
    letter-spacing: 0.5px;
  }

  .ad-content {
    padding: 15px;
  }

  .ads-grid {
    gap: 15px;
    margin-top: 20px;
  }

  .small-ad {
    height: 120px;
  }

  .ad-close {
    width: 22px;
    height: 22px;
    font-size: 12px;
  }
}

/* Extra Small Mobile - Below 400px */
@media (max-width: 400px) {
  .ads-section {
    padding: 25px 0;
  }

  .ads-container {
    padding: 0 10px;
  }

  .ad-banner {
    height: 180px;
  }

  .ad-placeholder {
    font-size: 1.25rem;
  }

  .ad-content {
    padding: 12px;
  }

  .small-ad {
    height: 100px;
  }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .ads-section {
    padding: 20px 0;
  }

  .ad-banner {
    height: 150px;
  }

  .ad-placeholder {
    font-size: 1.25rem;
  }

  .ad-content {
    padding: 10px;
  }

  .small-ad {
    height: 80px;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .ad-banner:hover {
    transform: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  }

  .ad-banner:active {
    transform: scale(0.98);
  }

  .ad-overlay {
    opacity: 0;
  }

  .ad-close {
    opacity: 1;
  }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .ad-banner,
  .ad-banner img,
  .ad-overlay,
  .ad-close {
    transition: none;
  }

  .ad-banner:hover {
    transform: none;
  }

  .ad-banner:hover img {
    transform: none;
  }

  .ad-loading {
    animation: none;
    background: #f0f0f0;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .ad-banner {
    border: 2px solid #000;
  }

  .ad-placeholder {
    color: #000;
  }
}

/* Print styles */
@media print {
  .ads-section {
    display: none;
  }
}

/* Category Section Styles */
.category-section {
  padding: 80px 0;
  background-color: #f5f5f5;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.section-title {
  font-weight: 700;
  color: #228b22;
  margin: 0;
}

.view-all-btn {
  background-color: #228b22;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-all-btn:hover {
  background-color: #228b34;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(42, 157, 62, 0.3);
}

/* Category Cards Grid */
.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 25px;
}

/* Category Card Styles */
.category-card {
  background: white;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.category-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #228b22;
}

.category-name {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin: 0;
  line-height: 1.4;
}

/* Responsive Breakpoints */

/* Extra Large Desktops (1920px and up) */
@media (min-width: 1920px) {
  .container-custom {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
  }
}

/* Large Desktops (1440px - 1919px) */
@media (max-width: 1919px) {
  .container-custom {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 30px;
  }
}

/* Medium Desktops (1200px - 1439px) */
@media (max-width: 1439px) {
  .category-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
  }

  .container-custom {
    padding: 0 20px;
  }
}

/* Small Desktops / Large Tablets (992px - 1199px) */
@media (max-width: 1199px) {
  .category-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .section-title {
    font-size: 32px;
  }
}

/* Tablets (768px - 991px) */
@media (max-width: 991px) {
  .category-section {
    padding: 60px 0;
  }

  .category-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 28px;
  }

  .view-all-btn {
    padding: 10px 24px;
    font-size: 15px;
  }
}

/* Large Mobile / Small Tablets (576px - 767px) */
@media (max-width: 767px) {
  .category-section {
    padding: 50px 0;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .section-title {
    font-size: 24px;
  }

  .view-all-btn {
    width: 100%;
    padding: 12px;
  }

  .category-card {
    padding: 25px 15px;
    min-height: 180px;
  }

  .category-icon {
    width: 70px;
    height: 70px;
    font-size: 32px;
  }

  .category-name {
    font-size: 14px;
  }
}

/* Mobile (up to 575px) */
@media (max-width: 575px) {
  .category-section {
    padding: 40px 0;
  }

  .container-custom {
    padding: 0 15px;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .section-header {
    margin-bottom: 30px;
  }

  .section-title {
    font-size: 22px;
  }

  .category-card {
    padding: 20px 10px;
    min-height: 160px;
  }

  .category-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
    margin-bottom: 15px;
  }

  .category-name {
    font-size: 13px;
  }
}

/* Extra Small Mobile (up to 375px) */
@media (max-width: 375px) {
  .category-grid {
    gap: 10px;
  }

  .category-card {
    padding: 18px 8px;
    min-height: 150px;
  }

  .category-icon {
    width: 55px;
    height: 55px;
    font-size: 24px;
  }

  .category-name {
    font-size: 12px;
  }
}

/* Map Section Styles */
.map-section {
  padding: 100px 0;
  background-color: #f8f9fa;
}

/* Single Frame Card Container */
.map-frame-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 10px 30px rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 550px;
  transition: all 0.4s ease;
}

.map-frame-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12), 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Map Container */
.map-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 550px;
  background-color: #e8f5e9;
}

#map {
  width: 100%;
  height: 100%;
  z-index: 1;
}

.map-iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: brightness(0.95);
}

/* View Larger Map Link */
.view-larger-map {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: white;
  padding: 10px 20px;
  border-radius: 12px;
  text-decoration: none;
  color: #228b22;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 5px;
}

.view-larger-map:hover {
  background-color: #228b22;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42, 157, 62, 0.3);
}

/* Map Controls */
.map-controls {
  position: absolute;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 1000;
}

.map-control-btn {
  width: 44px;
  height: 44px;
  background-color: white;
  border: none;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  font-size: 22px;
  font-weight: 600;
  color: #333;
}

.map-control-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  background-color: #228b22;
  color: white;
}

/* Content Section */
.content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 50px;
  background: white;
}

.content-title {
  font-weight: 700;
  color: #228b22;
  margin-bottom: 24px;
  line-height: 1.2;
}

.content-description {
  color: #1a1a1d;
  line-height: 1.7;
  margin-bottom: 40px;
}

.cta-button {
  background-color: #228b22;
  color: white;
  border: none;
  padding: 16px 36px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  align-self: flex-start;
  box-shadow: 0 4px 12px rgba(42, 157, 62, 0.2);
}

.cta-button:hover {
  background-color: #228b34;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(42, 157, 62, 0.3);
}

.cta-button:active {
  transform: translateY(-1px);
}

/* Custom marker styles */
.leaflet-div-icon {
  background: transparent;
  border: none;
}

/* Responsive Styles */

/* Extra Large Desktops (1920px and up) */
@media (min-width: 1920px) {
  .container-custom {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
  }

  .map-frame-card {
    min-height: 600px;
  }

  .map-wrapper {
    min-height: 600px;
  }
}

/* Large Desktops (1440px - 1919px) */
@media (max-width: 1919px) {
  .container-custom {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 30px;
  }
}

/* Medium Desktops (1200px - 1439px) */
@media (max-width: 1439px) {
  .content-wrapper {
    padding: 50px 40px;
  }
}

/* Small Desktops (992px - 1199px) */
@media (max-width: 1199px) {
  .map-frame-card {
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
  }

  .map-wrapper {
    min-height: 500px;
  }

  .content-title {
    font-size: 28px;
  }

  .content-description {
    font-size: 16px;
  }

  .content-wrapper {
    padding: 40px 35px;
  }
}

/* Tablets (768px - 991px) */
@media (max-width: 991px) {
  .map-section {
    padding: 60px 0;
  }

  .map-frame-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .map-wrapper {
    min-height: 400px;
    order: 2;
  }

  .content-wrapper {
    order: 1;
    padding: 40px 35px;
    text-align: center;
  }

  .content-title {
    font-size: 28px;
  }

  .cta-button {
    align-self: center;
  }
}

/* Mobile (576px - 767px) */
@media (max-width: 767px) {
  .map-section {
    padding: 40px 0;
  }

  .map-frame-card {
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  }

  .content-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .content-description {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .content-wrapper {
    padding: 35px 30px;
  }

  .map-wrapper {
    min-height: 350px;
  }

  .view-larger-map {
    font-size: 13px;
    padding: 8px 16px;
  }

  .map-controls {
    bottom: 20px;
    right: 20px;
  }

  .map-control-btn {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

/* Small Mobile (up to 575px) */
@media (max-width: 575px) {
  .container-custom {
    padding: 0 15px;
  }

  .map-section {
    padding: 30px 0;
  }

  .map-frame-card {
    border-radius: 16px;
  }

  .content-title {
    font-size: 28px;
  }

  .content-description {
    font-size: 14px;
  }

  .content-wrapper {
    padding: 30px 25px;
  }

  .map-wrapper {
    min-height: 300px;
  }

  .cta-button {
    width: 100%;
    padding: 14px 30px;
    font-size: 16px;
  }

  .view-larger-map {
    top: 15px;
    left: 15px;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 8px;
  }

  .map-controls {
    bottom: 15px;
    right: 15px;
  }

  .map-control-btn {
    width: 36px;
    height: 36px;
    font-size: 18px;
    border-radius: 10px;
  }
}

/* Extra Small Mobile (up to 375px) */
@media (max-width: 375px) {
  .content-title {
    font-size: 24px;
  }

  .content-wrapper {
    padding: 25px 20px;
  }

  .map-wrapper {
    min-height: 250px;
  }
}

/* Subscribe Section Styles */
.subscribe-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8f5e9 100%);
  position: relative;
  overflow: hidden;
}

.subscribe-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.subscribe-content {
  max-width: 600px;
}

.subscribe-title {
  font-weight: 700;
  color: #228b22;
  margin-bottom: 25px;
  line-height: 1.2;
}

.subscribe-description {
  font-size: 18px;
  color: #1a1a1d;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 550px;
}

.discover-btn {
  background-color: #228b22;
  color: white;
  border: none;
  padding: 16px 40px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.discover-btn:hover {
  background-color: #228b34;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(42, 157, 62, 0.3);
}

.discover-btn:active {
  transform: translateY(-1px);
}

/* Image Container Styles */
.subscribe-image {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.subscribe-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Responsive Styles */

/* Extra Large Desktops (1920px and up) */
@media (min-width: 1920px) {
  .container-custom {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
  }

  .subscribe-image img {
    max-width: 700px;
  }
}

/* Large Desktops (1440px - 1919px) */
@media (max-width: 1919px) {
  .container-custom {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 30px;
  }

  .subscribe-image img {
    max-width: 600px;
  }
}

/* Medium Desktops (1200px - 1439px) */
@media (max-width: 1439px) {
  .subscribe-title {
    font-size: 28px;
  }

  .subscribe-image img {
    max-width: 550px;
  }
}

/* Small Desktops (992px - 1199px) */
@media (max-width: 1199px) {
  .subscribe-title {
    font-size: 28px;
  }

  .subscribe-description {
    font-size: 16px;
  }

  .subscribe-wrapper {
    gap: 40px;
  }

  .subscribe-image img {
    max-width: 500px;
  }
}

/* Tablets (768px - 991px) */
@media (max-width: 991px) {
  .subscribe-section {
    padding: 80px 0;
  }

  .subscribe-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .subscribe-content {
    text-align: center;
    max-width: 100%;
  }

  .subscribe-description {
    text-align: center;
    max-width: 100%;
  }

  .subscribe-image {
    order: -1;
    margin: 0 auto;
  }

  .subscribe-image img {
    max-width: 450px;
  }

  .subscribe-title {
    font-size: 28px;
  }

  .discover-btn {
    margin: 0 auto;
  }
}

/* Mobile (576px - 767px) */
@media (max-width: 767px) {
  .subscribe-section {
    padding: 60px 0;
  }

  .subscribe-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .subscribe-description {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .subscribe-image img {
    max-width: 400px;
  }

  .discover-btn {
    padding: 14px 35px;
    font-size: 16px;
  }
}

/* Small Mobile (up to 575px) */
@media (max-width: 575px) {
  .container-custom {
    padding: 0 15px;
  }

  .subscribe-section {
    padding: 50px 0;
  }

  .subscribe-title {
    font-size: 28px;
  }

  .subscribe-description {
    font-size: 14px;
  }

  .subscribe-image img {
    max-width: 100%;
    padding: 0 15px;
  }

  .discover-btn {
    width: 100%;
    padding: 14px 30px;
  }
}

/* Extra Small Mobile (up to 375px) */
@media (max-width: 375px) {
  .subscribe-title {
    font-size: 24px;
  }

  .subscribe-description {
    font-size: 13px;
  }

  .subscribe-image img {
    max-width: 100%;
    padding: 0 10px;
  }
}

/* Blog Section Styles */
.blog-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.section-title {
  font-weight: 700;
  color: #228b22;
  text-align: center;
  margin-bottom: 50px;
}

/* Category Tabs */
.category-tabs {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.category-tab {
  font-size: 18px;
  font-weight: 500;
  color: #1a1a1d;
  padding: 10px 20px;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.category-tab:hover {
  color: #228b22;
}

.category-tab.active {
  color: #228b22;
  font-weight: 600;
}

.category-tab.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #228b22;
  border-radius: 2px;
}

/* Articles Grid */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

/* Article Card */
.article-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.article-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background-color: #f0f0f0;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.article-card:hover .article-image img {
  transform: scale(1.05);
}

.article-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-date {
  font-size: 14px;
  color: #999;
  margin-bottom: 12px;
}

.article-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.4;
  min-height: 56px;
}

.article-excerpt {
  font-size: 15px;
  color: #1a1a1d;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.read-more {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: #228b22;
  gap: 12px;
}

.read-more::after {
  content: "→";
  font-size: 18px;
  transition: transform 0.3s ease;
}

.read-more:hover::after {
  transform: translateX(3px);
}

/* View More Button */
.view-more-container {
  text-align: center;
}

.view-more-btn {
  background-color: #228b22;
  color: white;
  border: none;
  padding: 14px 35px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(42, 157, 62, 0.2);
}

.view-more-btn:hover {
  background-color: #228b34;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(42, 157, 62, 0.3);
}

/* Responsive Styles */

/* Extra Large Desktops (1920px and up) */
@media (min-width: 1920px) {
  .container-custom {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
  }
}

/* Large Desktops (1440px - 1919px) */
@media (max-width: 1919px) {
  .container-custom {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 30px;
  }
}

/* Medium Desktops (1200px - 1439px) */
@media (max-width: 1439px) {
  .section-title {
    font-size: 28px;
  }

  .articles-grid {
    gap: 25px;
  }
}

/* Small Desktops (992px - 1199px) */
@media (max-width: 1199px) {
  .section-title {
    font-size: 28px;
  }

  .article-title {
    font-size: 18px;
  }

  .article-excerpt {
    font-size: 14px;
  }
}

/* Tablets (768px - 991px) */
@media (max-width: 991px) {
  .blog-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .category-tabs {
    gap: 25px;
    margin-bottom: 40px;
  }

  .category-tab {
    font-size: 16px;
    padding: 8px 15px;
  }

  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .article-image {
    height: 220px;
  }
}

/* Mobile (576px - 767px) */
@media (max-width: 767px) {
  .blog-section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .category-tabs {
    gap: 15px;
    margin-bottom: 35px;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .category-tab {
    font-size: 15px;
    padding: 8px 12px;
  }

  .articles-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .article-image {
    height: 200px;
  }

  .article-content {
    padding: 20px;
  }

  .article-title {
    font-size: 18px;
    min-height: auto;
  }
}

/* Small Mobile (up to 575px) */
@media (max-width: 575px) {
  .container-custom {
    padding: 0 15px;
  }

  .blog-section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 24px;
  }

  .category-tabs {
    gap: 10px;
  }

  .category-tab {
    font-size: 14px;
    padding: 6px 10px;
  }

  .articles-grid {
    gap: 20px;
  }

  .article-image {
    height: 180px;
  }

  .article-title {
    font-size: 17px;
  }

  .article-excerpt {
    font-size: 14px;
  }

  .view-more-btn {
    width: 100%;
  }
}

/* Extra Small Mobile (up to 375px) */
@media (max-width: 375px) {
  .section-title {
    font-size: 22px;
  }

  .article-title {
    font-size: 16px;
  }

  .article-excerpt {
    font-size: 13px;
  }
}

/* Scrollbar styling for category tabs on mobile */
@media (max-width: 767px) {
  .category-tabs::-webkit-scrollbar {
    height: 4px;
  }

  .category-tabs::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
  }

  .category-tabs::-webkit-scrollbar-thumb {
    background: #228b22;
    border-radius: 2px;
  }
}

/* Get In Touch Section Unique Styles */
.git-section {
  padding: 100px 0;
  max-width: 1920px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.git-wrapper {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  align-items: center;
}

/* Laptop Visual Side */
.git-visual-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.git-laptop-holder {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
}

.git-laptop-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Get In Touch Form Container */
.git-form-container {
  max-width: 1920px;
}

.git-heading {
  font-weight: 700;
  color: #228b22;
  margin-bottom: 20px;
  line-height: 1.2;
}

.git-description {
  font-size: 16px;
  color: #1a1a1d;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* Git Form Styles */
.git-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.git-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.git-field {
  display: flex;
  flex-direction: column;
}

.git-input {
  padding: 14px 18px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  font-size: 15px;
  transition: all 0.3s ease;
  background-color: #ffffff;
  color: #333;
}

.git-input:focus {
  outline: none;
  border-color: #228b22;
  box-shadow: 0 0 0 3px rgba(42, 157, 62, 0.1);
}

.git-input::placeholder {
  color: #999;
}

.git-textarea {
  min-height: 120px;
  resize: vertical;
  font-family: inherit;
}

/* Git Submit Button */
.git-submit {
  background-color: #228b22;
  color: white;
  border: none;
  padding: 16px 40px;
  border-radius: 10px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(42, 157, 62, 0.2);
  margin-top: 10px;
}

.git-submit:hover {
  background-color: #228b34;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(42, 157, 62, 0.3);
}

.git-submit:active {
  transform: translateY(0);
}

/* Responsive Git Section */

/* Extra Large Desktops (1920px and up) */
@media (min-width: 1920px) {
  .git-container-custom {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
  }
}

/* Large Desktops (1440px - 1919px) */
@media (max-width: 1919px) {
  .git-container-custom {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 30px;
  }
}

/* Medium Desktops (1200px - 1439px) */
@media (max-width: 1439px) {
  .git-heading {
    font-size: 28px;
  }

  .git-wrapper {
    gap: 60px;
  }
}

/* Small Desktops (992px - 1199px) */
@media (max-width: 1199px) {
  .git-heading {
    font-size: 28px;
    text-align: center;
  }

  .git-description {
    text-align: center;
    margin: 0 auto 40px;
    max-width: 600px;
  }

  .git-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  /* Hide the image container in this breakpoint */
  .git-visual-container {
    display: none;
  }
}

/* Tablets (768px - 991px) */
@media (max-width: 991px) {
  .git-section {
    padding: 80px 0;
  }

  .git-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  /* .git-visual-container {
    order: 2;
    margin-top: 20px;
  } */

  .git-form-container {
    order: 1;
    max-width: 100%;
  }

  .git-heading {
    font-size: 28px;
    text-align: center;
  }

  .git-description {
    text-align: center;
  }
}

/* Mobile (576px - 767px) */
@media (max-width: 767px) {
  .git-section {
    padding: 60px 0;
  }

  .git-heading {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .git-description {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .git-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .git-form {
    gap: 15px;
  }

  .git-input {
    padding: 12px 16px;
    font-size: 14px;
  }

  .git-submit {
    width: 100%;
    padding: 14px 30px;
    font-size: 16px;
  }
}

/* Small Mobile (up to 575px) */
@media (max-width: 575px) {
  .git-container-custom {
    padding: 0 15px;
  }

  .git-section {
    padding: 50px 0;
  }

  .git-heading {
    font-size: 28px;
  }

  .git-description {
    font-size: 14px;
  }

  .git-textarea {
    min-height: 100px;
  }
}

/* Extra Small Mobile (up to 375px) */
@media (max-width: 375px) {
  .git-heading {
    font-size: 24px;
  }

  .git-input {
    padding: 11px 14px;
    font-size: 13px;
  }
}

/* Service Seeker Profile Section */
.ssp-main-section {
  padding: 60px 60px;
  background-color: #f5f5f5;
  /* min-height: calc(100vh - 200px); */
}

.ssp-container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 20px;
}

.ssp-content-wrapper {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px;
  align-items: start;
}

/* Left Profile Card */
.ssp-profile-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 30px;
}

.ssp-profile-image-container {
  width: 100%;
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ssp-profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ssp-profile-title {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.ssp-profile-bio {
  font-size: 14px;
  color: #1a1a1d;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Profile Navigation */
.ssp-nav-menu {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.ssp-nav-item {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 15px;
  color: #555;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  width: 100%;
}

.ssp-nav-item:hover {
  background-color: #f0f0f0;
  color: #228b22;
}

.ssp-nav-item.active {
  background-color: #e8f5e9;
  color: #228b22;
  font-weight: 600;
}

.ssp-nav-divider {
  height: 1px;
  background-color: #e0e0e0;
  margin: 15px 0;
}

/* Right Content Area */
.ssp-content-area {
  background: white;
  border-radius: 16px;
  padding: 70px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.ssp-welcome-title {
  font-size: 32px;
  font-weight: 700;
  color: #228b22;
  margin-bottom: 15px;
}

.ssp-welcome-text {
  font-size: 15px;
  color: #1a1a1d;
  line-height: 1.6;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e0e0e0;
}

.ssp-welcome-text2 {
  font-size: 15px;
  color: #1a1a1d;
  line-height: 1.6;
  margin-bottom: 40px;
  padding-bottom: 30px;
}

/* Account Information Section */
.ssp-info-section {
  margin-bottom: 40px;
}

.ssp-info-title {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 25px;
}

.ssp-info-grid {
  display: grid;
  gap: 20px;
}

.ssp-info-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  align-items: center;
}

.ssp-info-label {
  font-size: 14px;
  font-weight: 600;
  color: #555;
}

.ssp-info-value {
  font-size: 15px;
  color: #333;
}

.ssp-password-mask {
  letter-spacing: 3px;
}

/* Edit Account Button */
.ssp-edit-btn {
  background-color: #228b22;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 50px;
}

.ssp-edit-btn:hover {
  background-color: #228b34;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(42, 157, 62, 0.3);
}

/* Logout Link */
.ssp-logout-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1a1a1d;
  text-decoration: none;
  font-size: 14px;
  margin-top: 20px;
  transition: color 0.3s ease;
}

.ssp-logout-link:hover {
  color: #d32f2f;
}

/* Responsive Styles */
@media (max-width: 1199px) {
  .ssp-content-wrapper {
    grid-template-columns: 350px 1fr;
    gap: 30px;
  }
}

@media (max-width: 991px) {
  .ssp-content-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .ssp-profile-card {
    position: static;
    max-width: 750px;
    margin: 0 auto 30px;
  }

  .ssp-content-area {
    max-width: 750px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .ssp-main-section {
    padding: 20px 0;
  }

  .ssp-content-area {
    padding: 30px 25px;
  }

  .ssp-welcome-title {
    font-size: 28px;
  }

  .ssp-info-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .ssp-info-label {
    font-weight: 600;
  }
}

@media (max-width: 575px) {
  .ssp-container {
    padding: 0 15px;
  }

  .ssp-profile-card {
    padding: 25px 20px;
  }

  .ssp-content-area {
    padding: 25px 20px;
    border-radius: 12px;
  }

  .ssp-welcome-title {
    font-size: 24px;
  }

  .ssp-info-title {
    font-size: 20px;
  }

  .ssp-edit-btn {
    width: 100%;
  }
}

/* Past Task Main Section */
.pst-main-section {
  padding: 60px 60px;
  background-color: #f5f5f5;
}

.pst-container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 20px;
}

.pst-content-wrapper {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px;
  align-items: start;
}

/* Left Profile Card */
.pst-profile-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 30px;
}

.pst-profile-image-container {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, #1976d2 0%, #42a5f5 100%);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pst-profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pst-profile-title {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.pst-profile-bio {
  font-size: 14px;
  color: #1a1a1d;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Profile Navigation */
.pst-nav-menu {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.pst-nav-item {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 15px;
  color: #555;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  width: 100%;
}

.pst-nav-item:hover {
  background-color: #f0f0f0;
  color: #228b22;
}

.pst-nav-pending {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 15px;
  color: #555;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  width: 100%;
}

.pst-nav-pending:hover {
  background-color: #e0e0e0;
  color: #d32f2f;
}

.pst-nav-item.active {
  background-color: #e8f5e9;
  color: #228b22;
  font-weight: 600;
}

.pst-nav-divider {
  height: 1px;
  background-color: #e0e0e0;
  margin: 15px 0;
}

/* Right Content Area */
.pst-content-area {
  background: white;
  border-radius: 16px;
  padding: 70px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.pst-welcome-title {
  font-size: 32px;
  font-weight: 700;
  color: #228b22;
  margin-bottom: 15px;
}

.pst-welcome-text {
  font-size: 15px;
  color: #1a1a1d;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* Task Cards Container */
.pst-tasks-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Individual Task Card */
.pst-task-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.pst-task-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.pst-task-content {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.pst-task-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.pst-task-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pst-task-details {
  flex: 1;
}

.pst-task-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.pst-task-location {
  font-size: 14px;
  color: #1a1a1d;
  margin-bottom: 15px;
}

.pst-task-info-row {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.pst-task-info-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #1a1a1d;
}

.pst-task-info-icon {
  width: 16px;
  height: 16px;
  opacity: 0.6;
}

/* Logout Link */
.pst-logout-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1a1a1d;
  text-decoration: none;
  font-size: 14px;
  margin-top: 20px;
  transition: color 0.3s ease;
}

.pst-logout-link:hover {
  color: #d32f2f;
}

/* Responsive Styles */
@media (max-width: 1199px) {
  .pst-content-wrapper {
    grid-template-columns: 350px 1fr;
    gap: 30px;
  }
}

@media (max-width: 991px) {
  .pst-content-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .pst-profile-card {
    position: static;
    max-width: 750px;
    margin: 0 auto 30px;
  }

  .pst-content-area {
    max-width: 750px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .pst-main-section {
    padding: 40px 0;
  }

  .pst-content-area {
    padding: 30px 25px;
  }

  .pst-welcome-title {
    font-size: 28px;
  }

  .pst-task-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .pst-task-info-row {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .pst-container {
    padding: 0 15px;
  }

  .pst-profile-card {
    padding: 25px 20px;
  }

  .pst-content-area {
    padding: 25px 20px;
    border-radius: 12px;
  }

  .pst-welcome-title {
    font-size: 24px;
  }

  .pst-task-card {
    padding: 20px 15px;
  }
}

/* Pending Task Main Section */
.pdt-main-section {
  padding: 60px 60px;
  background-color: #f5f5f5;
}

.pdt-container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 20px;
}

.pdt-content-wrapper {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px;
  align-items: start;
}

/* Left Profile Card */
.pdt-profile-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 30px;
}

.pdt-profile-image-container {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, #1976d2 0%, #42a5f5 100%);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdt-profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdt-profile-title {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.pdt-profile-bio {
  font-size: 14px;
  color: #1a1a1d;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Profile Navigation */
.pdt-nav-menu {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.pdt-nav-item {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 15px;
  color: #555;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  width: 100%;
}

.pdt-nav-item:hover {
  background-color: #f0f0f0;
  color: var(--primary-color);
}

/* Red active state for pending tasks */
.pdt-nav-item.active {
  background-color: #ffebee;
  color: #d32f2f;
  font-weight: 600;
}

.pdt-nav-divider {
  height: 1px;
  background-color: #e0e0e0;
  margin: 15px 0;
}

/* Right Content Area */
.pdt-content-area {
  background: white;
  border-radius: 16px;
  padding: 70px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.pdt-welcome-title {
  font-size: 32px;
  font-weight: 700;
  color: #d32f2f;
  margin-bottom: 15px;
}

.pdt-welcome-text {
  font-size: 15px;
  color: #1a1a1d;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* Task Cards Container */
.pdt-tasks-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Individual Task Card - Pending Style */
.pdt-task-card {
  background: white;
  border: 1px solid #ffcdd2;
  border-radius: 12px;
  padding: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(211, 47, 47, 0.08);
  position: relative;
}

.pdt-task-card:hover {
  box-shadow: 0 4px 16px rgba(211, 47, 47, 0.15);
  transform: translateY(-2px);
  border-color: #ef9a9a;
}

/* Pending Status Badge */
.pdt-status-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #ffebee;
  color: #d32f2f;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.pdt-task-content {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.pdt-task-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid #ffcdd2;
}

.pdt-task-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdt-task-details {
  flex: 1;
}

.pdt-task-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.pdt-task-location {
  font-size: 14px;
  color: #1a1a1d;
  margin-bottom: 15px;
}

.pdt-task-info-row {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.pdt-task-info-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #1a1a1d;
}

.pdt-task-info-icon {
  width: 16px;
  height: 16px;
  opacity: 0.6;
}

/* Logout Link */
.pdt-logout-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1a1a1d;
  text-decoration: none;
  font-size: 14px;
  margin-top: 20px;
  transition: color 0.3s ease;
}

.pdt-logout-link:hover {
  color: #d32f2f;
}

/* Responsive Styles */
@media (max-width: 1199px) {
  .pdt-content-wrapper {
    grid-template-columns: 350px 1fr;
    gap: 30px;
  }
}

@media (max-width: 991px) {
  .pdt-content-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .pdt-profile-card {
    position: static;
    max-width: 750px;
    margin: 0 auto 30px;
  }

  .pdt-content-area {
    max-width: 750px;
    margin: 0 auto;
  }

  .pdt-status-badge {
    position: static;
    display: inline-block;
    margin-bottom: 15px;
  }
}

@media (max-width: 767px) {
  .pdt-main-section {
    padding: 40px 0;
  }

  .pdt-content-area {
    padding: 30px 25px;
  }

  .pdt-welcome-title {
    font-size: 28px;
  }

  .pdt-task-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .pdt-task-info-row {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .pdt-container {
    padding: 0 15px;
  }

  .pdt-profile-card {
    padding: 25px 20px;
  }

  .pdt-content-area {
    padding: 25px 20px;
    border-radius: 12px;
  }

  .pdt-welcome-title {
    font-size: 24px;
  }

  .pdt-task-card {
    padding: 20px 15px;
  }
}

/* Service Provider Dashboard My Account Section */
.cdp-wrapper {
  padding: 60px 60px;
  background-color: #f5f5f5;
}

.cdp-inner-container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 20px;
}

.cdp-layout-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px;
  align-items: start;
}

/* Sidebar Profile Widget */
.cdp-sidebar-widget {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 30px;
}

.cdp-avatar-box {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, #1976d2 0%, #42a5f5 100%);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cdp-avatar-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cdp-user-heading {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.cdp-user-description {
  font-size: 14px;
  color: #1a1a1d;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Dashboard Menu */
.cdp-menu-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.cdp-menu-link {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 15px;
  color: #555;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  width: 100%;
}

.cdp-menu-link:hover {
  background-color: #f0f0f0;
  color: #228b22;
}

.cdp-menu-link.current {
  background-color: #e8f5e9;
  color: #228b22;
  font-weight: 600;
}

.cdp-line-break {
  height: 1px;
  background-color: #e0e0e0;
  margin: 15px 0;
}

/* Main Panel Area */
.cdp-main-panel {
  background: white;
  border-radius: 16px;
  padding: 60px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.cdp-greeting-text {
  font-size: 32px;
  font-weight: 700;
  color: #228b22;
  margin-bottom: 15px;
}

.cdp-intro-paragraph {
  font-size: 15px;
  color: #1a1a1d;
  line-height: 1.6;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e0e0e0;
}

/* Profile Details Block */
.cdp-details-block {
  margin-bottom: 40px;
}

.cdp-block-heading {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 25px;
}

.cdp-details-container {
  display: grid;
  gap: 20px;
}

.cdp-detail-entry {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  align-items: center;
}

.cdp-entry-label {
  font-size: 14px;
  font-weight: 600;
  color: #555;
}

.cdp-entry-data {
  font-size: 15px;
  color: #333;
}

.cdp-secure-text {
  letter-spacing: 3px;
}

/* Modify Button */
.cdp-update-button {
  background-color: #228b22;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 50px;
}

.cdp-update-button:hover {
  background-color: #228b34;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(42, 157, 62, 0.3);
}

/* Exit Button */
.cdp-exit-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1a1a1d;
  text-decoration: none;
  font-size: 14px;
  margin-top: 20px;
  transition: color 0.3s ease;
}

.cdp-exit-button:hover {
  color: #d32f2f;
}

/* Media Queries */
@media (max-width: 1199px) {
  .cdp-layout-grid {
    grid-template-columns: 350px 1fr;
    gap: 30px;
  }
}

@media (max-width: 991px) {
  .cdp-layout-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cdp-sidebar-widget {
    position: static;
    max-width: 991px;
  }

  .cdp-main-panel {
    max-width: 750px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .cdp-wrapper {
    padding: 20px 0;
  }

  .cdp-main-panel {
    padding: 30px 25px;
  }

  .cdp-greeting-text {
    font-size: 28px;
  }

  .cdp-detail-entry {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .cdp-entry-label {
    font-weight: 600;
  }
}

@media (max-width: 575px) {
  .cdp-inner-container {
    padding: 0 15px;
  }

  .cdp-sidebar-widget {
    padding: 25px 20px;
  }

  .cdp-main-panel {
    padding: 25px 20px;
    border-radius: 12px;
  }

  .cdp-greeting-text {
    font-size: 24px;
  }

  .cdp-block-heading {
    font-size: 20px;
  }

  .cdp-update-button {
    width: 100%;
  }
}

/* Service Provider Dashboard Profile Section */
/* Main Content Section */
.sp-content-section {
  padding: 60px 40px;
  background-color: #f5f5f5;
  min-height: calc(100vh - 200px);
}

.sp-container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Content Grid Layout */
.sp-content-grid {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 40px;
  align-items: start;
}

/* Left Profile Sidebar */
.sp-profile-sidebar {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 30px;
}

.sp-profile-photo {
  width: 100%;
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 25px;
}

.sp-profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sp-provider-name {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.sp-provider-bio {
  font-size: 14px;
  color: #1a1a1d;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Navigation Menu */
.sp-nav-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.sp-nav-link {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 15px;
  color: #555;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  cursor: pointer;
  border: none;
  background: transparent;
  width: 100%;
  text-align: left;
}

.sp-nav-link:hover {
  background-color: #f0f0f0;
  color: #228b22;
}

.sp-nav-link.active {
  background-color: #e8f5e9;
  color: #228b22;
  font-weight: 600;
}

.sp-divider {
  height: 1px;
  background-color: #e0e0e0;
  margin: 20px 0;
}

.sp-logout-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1a1a1d;
  text-decoration: none;
  font-size: 14px;
  margin-top: 20px;
  transition: color 0.3s ease;
}

.sp-logout-btn:hover {
  color: #d32f2f;
}

/* Right Content Area */
.sp-main-content {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Upload Files Section */
.sp-upload-section {
  margin-bottom: 50px;
}

.sp-section-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
}

.sp-upload-box {
  border: 2px dashed #228b22;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  background-color: #f9fff9;
  transition: all 0.3s ease;
}

.sp-upload-box:hover {
  background-color: #f0faf0;
  border-color: #228b34;
}

.sp-upload-icon {
  font-size: 48px;
  color: #228b22;
  margin-bottom: 15px;
}

.sp-upload-text {
  font-size: 16px;
  color: #333;
  margin-bottom: 5px;
}

.sp-upload-link {
  color: #228b22;
  text-decoration: none;
  font-weight: 600;
}

.sp-upload-link:hover {
  color: #228b34;
  text-decoration: underline;
}

.sp-file-info {
  font-size: 13px;
  color: #1a1a1d;
  margin-top: 10px;
}

/* Media Gallery Sections */
.sp-gallery-section {
  margin-bottom: 40px;
}

.sp-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sp-gallery-item {
  position: relative;
  background: #f5f5f5;
  border-radius: 12px;
  height: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.sp-gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: #228b22;
}

.sp-gallery-placeholder {
  color: #999;
  font-size: 48px;
}

.sp-add-media-btn {
  background-color: #228b22;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.sp-add-media-btn:hover {
  background-color: #228b34;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(42, 157, 62, 0.3);
}

/* Video Section */
.sp-video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.sp-video-item {
  background: #f5f5f5;
  border-radius: 12px;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.sp-video-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: #228b22;
}

/* Responsive Design */
@media (max-width: 1199px) {
  .sp-content-grid {
    grid-template-columns: 320px 1fr;
    gap: 30px;
  }
}

@media (max-width: 991px) {
  .sp-content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .sp-profile-sidebar {
    position: static;
    max-width: 990px;
  }

  .sp-main-content {
    max-width: 991px;
  }

  .sp-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .sp-content-section {
    padding: 40px 0;
  }

  .sp-main-content {
    padding: 30px 25px;
  }

  .sp-welcome-title {
    font-size: 28px;
  }

  .sp-video-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .sp-container {
    padding: 0 15px;
  }

  .sp-profile-sidebar {
    padding: 25px 20px;
  }

  .sp-main-content {
    padding: 25px 20px;
  }

  .sp-gallery-grid {
    grid-template-columns: 1fr;
  }

  .sp-upload-box {
    padding: 30px 20px;
  }

  .sp-welcome-title {
    font-size: 24px;
  }
}

/* Service provider - profilepage style */
.mc-content-wrapper {
  padding: 60px 30px;
  background-color: #f5f5f5;
}

.mc-container {
  max-width: 1920px;
  margin: 0 auto;
}

.mc-layout-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: start;
}

/* Left Content Area */
.mc-main-content {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Company Header Image */
.mc-header-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
}

.mc-header-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Company Info Section */
.mc-company-info {
  padding: 30px 40px;
}

.mc-company-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 20px;
}

.mc-company-title {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.mc-company-description {
  font-size: 15px;
  color: #1a1a1d;
  line-height: 1.6;
  margin-bottom: 20px;
}

.mc-rating-section {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.mc-business-label {
  font-size: 14px;
  color: #1a1a1d;
}

.mc-rating-value {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.mc-star-rating {
  display: flex;
  gap: 3px;
}

.mc-star {
  color: #ffd700;
  font-size: 18px;
}

.mc-star.empty {
  color: #e0e0e0;
}

/* Tabs Navigation */
.mc-tabs-nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid #e0e0e0;
  margin-bottom: 30px;
}

.mc-tab-btn {
  padding: 12px 24px;
  background: none;
  border: none;
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1d;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.mc-tab-btn:hover {
  color: #333;
}

.mc-tab-btn.active {
  color: #228b22;
  font-weight: 600;
}

.mc-tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #228b22;
}

/* Tab Content */
.mc-tab-content {
  display: none;
}

.mc-tab-content.active {
  display: block;
}

/* Information Tab */
.mc-info-grid {
  display: grid;
  gap: 25px;
}

.mc-info-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  align-items: start;
}

.mc-info-label {
  font-size: 14px;
  font-weight: 600;
  color: #555;
}

.mc-info-value {
  font-size: 15px;
  color: #333;
}

/* Right Sidebar */
.mc-sidebar {
  position: sticky;
  top: 30px;
}

/* Map Section */
.mc-map-container {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.mc-map-box {
  width: 100%;
  height: 300px;
  background: #f0f0f0;
  position: relative;
}

.mc-map-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc-map-controls {
  position: absolute;
  right: 10px;
  top: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mc-map-btn {
  width: 30px;
  height: 30px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  color: #1a1a1d;
}

.mc-map-btn:hover {
  background: #f5f5f5;
}

/* Recommendations Section */
.mc-recommendations {
  background: white;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.mc-rec-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mc-rec-icon {
  color: #228b22;
}

.mc-rec-grid {
  display: grid;
  gap: 20px;
}

.mc-rec-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mc-rec-item:hover {
  transform: translateX(5px);
}

.mc-rec-image {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
}

.mc-rec-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc-rec-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mc-rec-name {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.mc-rec-category {
  font-size: 13px;
  color: #1a1a1d;
  margin-bottom: 5px;
}

.mc-rec-location {
  font-size: 13px;
  color: #999;
  margin-bottom: 5px;
}

.mc-rec-rating {
  display: flex;
  align-items: center;
  gap: 5px;
}

.mc-rec-score {
  font-size: 13px;
  font-weight: 600;
  color: #333;
}

.mc-rec-stars {
  display: flex;
  gap: 2px;
}

.mc-rec-star {
  color: #ffd700;
  font-size: 12px;
}

/* Nearby Section */
.mc-nearby-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Responsive Design */
@media (max-width: 1199px) {
  .mc-layout-grid {
    grid-template-columns: 1fr 350px;
    gap: 30px;
  }
}

@media (max-width: 991px) {
  .mc-layout-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .mc-sidebar {
    position: static;
    max-width: 1200px;
  }
}

@media (max-width: 767px) {
  .mc-content-wrapper {
    padding: 40px 20px;
  }

  .mc-company-info {
    padding: 25px 20px;
  }

  .mc-company-title {
    font-size: 26px;
  }

  .mc-header-image {
    height: 250px;
  }

  .mc-info-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .mc-tabs-nav {
    overflow-x: auto;
  }
}

@media (max-width: 575px) {
  .mc-container {
    padding: 0 15px;
  }

  .mc-company-title {
    font-size: 22px;
  }

  .mc-tab-btn {
    padding: 10px 16px;
    font-size: 14px;
  }

  .mc-recommendations {
    padding: 20px;
  }
}

/* Main Registration Section */
.ar-registration-section {
  padding: 60px 0;
  background-color: #f5f5f5;
  min-height: calc(100vh - 200px);
}

.ar-container {
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Form Title */
.ar-form-title {
  font-size: 36px;
  font-weight: 700;
  color: #228b22;
  text-align: center;
  margin-bottom: 50px;
}

/* Form Card */
.ar-form-card {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Section Headers */
.ar-section-header {
  font-size: 24px;
  font-weight: 600;
  color: #228b22;
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e8f5e9;
}

/* Form Grid */
.ar-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

.ar-form-group {
  display: flex;
  flex-direction: column;
}

.ar-form-group.full-width {
  grid-column: span 2;
}

/* Form Labels */
.ar-label {
  font-size: 14px;
  font-weight: 500;
  color: #555;
  margin-bottom: 8px;
}

/* Form Inputs */
.ar-input,
.ar-select,
.ar-textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 15px;
  color: #333;
  background-color: #fafafa;
  transition: all 0.3s ease;
}

.ar-input:focus,
.ar-select:focus,
.ar-textarea:focus {
  outline: none;
  border-color: #228b22;
  background-color: white;
  box-shadow: 0 0 0 3px rgba(42, 157, 62, 0.1);
}

.ar-input::placeholder {
  color: #999;
}

.ar-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23666' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}

.ar-textarea {
  min-height: 120px;
  resize: vertical;
}

/* Currency Input Group */
.ar-currency-group {
  display: flex;
  align-items: stretch;
}

.ar-currency-prefix {
  padding: 12px 15px;
  background-color: #f0f0f0;
  border: 1px solid #e0e0e0;
  border-right: none;
  border-radius: 8px 0 0 8px;
  color: #1a1a1d;
  font-size: 15px;
  font-weight: 500;
}

.ar-currency-input {
  border-radius: 0 8px 8px 0;
  flex: 1;
}

/* Submit Button */
.ar-submit-section {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.ar-submit-btn {
  background-color: #228b22;
  color: white;
  border: none;
  padding: 15px 60px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ar-submit-btn:hover {
  background-color: #228b34;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42, 157, 62, 0.3);
}

.ar-submit-btn:active {
  transform: translateY(0);
}

/* Help Text */
.ar-help-text {
  font-size: 12px;
  color: #999;
  margin-top: 5px;
}

/* Required Indicator */
.ar-required {
  color: #d32f2f;
  margin-left: 3px;
}

/* Responsive Design */
@media (max-width: 1199px) {
  .ar-container {
    max-width: 800px;
  }
}

@media (max-width: 991px) {
  .ar-container {
    max-width: 700px;
  }

  .ar-form-card {
    padding: 35px;
  }
}

@media (max-width: 767px) {
  .ar-registration-section {
    padding: 40px 0;
  }

  .ar-form-title {
    font-size: 28px;
    margin-bottom: 35px;
  }

  .ar-form-card {
    padding: 30px 25px;
  }

  .ar-section-header {
    font-size: 20px;
    margin-bottom: 25px;
  }

  .ar-form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ar-form-group.full-width {
    grid-column: span 1;
  }
}

@media (max-width: 575px) {
  .ar-container {
    padding: 0 15px;
  }

  .ar-form-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .ar-form-card {
    padding: 25px 20px;
    border-radius: 12px;
  }

  .ar-section-header {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .ar-submit-btn {
    width: 100%;
    padding: 14px 30px;
  }

  .ar-input,
  .ar-select,
  .ar-textarea,
  .ar-currency-prefix {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .ar-form-card {
    padding: 20px 15px;
  }

  .ar-label {
    font-size: 13px;
  }

  .ar-input,
  .ar-select,
  .ar-textarea {
    padding: 10px 12px;
  }
}

/* Main Communities Section */
.bc-main-section {
  padding: 60px 0;
  background-color: #f5f5f5;
  min-height: calc(100vh - 200px);
}

.bc-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Back Navigation */
.bc-back-nav {
  margin-bottom: 40px;
}

.bc-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.bc-back-link:hover {
  color: #228b22;
  transform: translateX(-5px);
}

.bc-back-arrow {
  font-size: 16px;
}

/* Page Title */
.bc-page-header {
  margin-bottom: 50px;
}

.bc-title {
  font-size: 36px;
  font-weight: 700;
  color: #228b22;
}

/* Communities Grid */
.bc-communities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

/* Community Card */
.bc-community-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.bc-community-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Card Banner */
.bc-card-banner {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #ffd700 0%, #32cd32 100%);
  position: relative;
  overflow: hidden;
}

.bc-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bc-market-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.9) 0%,
    rgba(50, 205, 50, 0.9) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.bc-market-graphic {
  display: flex;
  align-items: center;
  gap: 20px;
}

.bc-fruit-icon {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

.bc-market-badge {
  background: white;
  padding: 15px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.bc-badge-text {
  font-size: 24px;
  font-weight: 700;
  color: #228b22;
  margin: 0;
}

.bc-badge-subtitle {
  font-size: 12px;
  color: #1a1a1d;
  margin: 0;
}

/* Card Content */
.bc-card-content {
  padding: 25px;
}

.bc-card-header {
  display: flex;
  align-items: start;
  gap: 15px;
  margin-bottom: 20px;
}

.bc-profile-pic {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.bc-profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bc-card-info {
  flex-grow: 1;
}

.bc-community-name {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.bc-stats-row {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 13px;
  color: #1a1a1d;
}

.bc-stat-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.bc-stat-icon {
  color: #228b22;
}

.bc-card-footer {
  display: flex;
  align-items: center;
  gap: 5px;
  padding-top: 15px;
  border-top: 1px solid #eee;
  font-size: 13px;
  color: #999;
}

.bc-location-icon {
  color: #228b22;
}

/* Single Card Layout (for odd number) */
.bc-single-card {
  grid-column: 1 / -1;
  max-width: 600px;
  margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 991px) {
  .bc-communities-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .bc-community-card {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .bc-main-section {
    padding: 40px 0;
  }

  .bc-title {
    font-size: 28px;
  }

  .bc-card-banner {
    height: 160px;
  }

  .bc-fruit-icon {
    width: 60px;
    height: 60px;
    font-size: 30px;
  }

  .bc-badge-text {
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  .bc-container {
    padding: 0 15px;
  }

  .bc-title {
    font-size: 24px;
  }

  .bc-card-content {
    padding: 20px;
  }

  .bc-market-graphic {
    gap: 10px;
  }

  .bc-market-badge {
    padding: 10px 15px;
  }

  .bc-badge-text {
    font-size: 18px;
  }
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  z-index: 1000;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Modal Container */
.modal-container {
  background: white;
  border-radius: 20px;
  max-width: 900px;
  width: 90%;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  transform: scale(0.7) translateY(20px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-overlay.active .modal-container {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.close-btn:hover {
  background: rgba(0, 0, 0, 0.1);
  transform: rotate(90deg);
}

.close-btn::before,
.close-btn::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background: #333;
  transition: all 0.3s ease;
}

.close-btn::before {
  transform: rotate(45deg);
}

.close-btn::after {
  transform: rotate(-45deg);
}

/* Left Content */
.modal-left {
  flex: 1;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.modal-title {
  font-size: 2.5rem;
  color: #228b22;
  margin-bottom: 20px;
  font-weight: 700;
  animation: slideInLeft 0.6s ease 0.3s both;
}

.modal-description {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  animation: slideInLeft 0.6s ease 0.4s both;
}

/* Checkboxes */
.checkbox-group {
  margin-bottom: 30px;
  animation: slideInLeft 0.6s ease 0.5s both;
}

.checkbox-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.checkbox-item:hover {
  transform: translateX(5px);
}

.checkbox-item input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-right: 15px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: #2ecc71;
}

.checkbox-item label {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.5;
  cursor: pointer;
  flex: 1;
}

/* CTA Button */
.cta-button {
  background: #228b22;
  color: white;
  border: none;
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #228b34;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(42, 157, 62, 0.3);
}

.cta-button:active {
  transform: translateY(0);
}

/* Right Image Container */
.modal-right {
  flex: 1;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.image-placeholder {
  width: 80%;
  max-width: 350px;
  height: 300px;
  background: rgba(255, 255, 255, 0.3);
  border: 2px dashed rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  animation: float 3s ease-in-out infinite;
}

.image-placeholder p {
  color: rgba(0, 0, 0, 0.5);
  font-size: 1.1rem;
  text-align: center;
  padding: 20px;
}

/* If you add an image, use this class */
/* .modal-right img {
  width: 80%;
  max-width: 350px;
  height: auto;
  object-fit: contain;
} */

/* Responsive Design */
@media (max-width: 768px) {
  .modal-container {
    flex-direction: column;
    max-height: 95vh;
    overflow-y: auto;
  }

  .modal-left {
    padding: 30px;
  }

  .modal-title {
    font-size: 2rem;
  }

  .close-btn {
    background: rgba(255, 255, 255, 0.9);
  }
}

/* Main forum page style */
/* 🌈 Hero Section */
.community-hero-area {
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
  padding: 60px 20px;
  text-align: center;
}

.community-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.community-hero-title {
  color: #333;
  margin-bottom: 20px;
  font-weight: 700;
}

.community-hero-subtitle {
  font-size: 1.2rem;
  color: #1a1a1d;
  margin-bottom: 30px;
}

.community-search-box {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.community-search-input {
  width: 100%;
  padding: 15px 50px 15px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 50px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.community-search-btn {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: #2ecc71;
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.community-search-btn:hover {
  background: #27ae60;
}

/* 📊 Stats Section */
.community-stats-area {
  background: white;
  padding: 30px 20px;
  border-bottom: 1px solid #e0e0e0;
}

.community-stats-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.community-stat-block {
  padding: 20px;
  border-radius: 10px;
  background: #f8f9fa;
  transition: transform 0.3s;
}

.community-stat-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.community-stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: #2ecc71;
  margin-bottom: 5px;
}

.community-stat-label {
  color: #1a1a1d;
  font-size: 0.9rem;
}

/* 🧱 Main Layout */
.community-main-layout {
  max-width: 1900px;
  margin: 40px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 250px 1fr 300px;
  gap: 30px;
}

/* 📂 Left Sidebar */
.community-left-sidebar {
  background: white;
  border-radius: 10px;
  padding: 20px;
  height: fit-content;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.community-sidebar-heading {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
}

.community-category-list {
  list-style: none;
}

.community-category-item {
  padding: 12px 15px;
  margin-bottom: 5px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.community-category-item:hover {
  background: #f0f0f0;
}

.community-category-item.active {
  background: #2ecc71;
  color: white;
}

.community-category-count {
  background: rgba(0, 0, 0, 0.1);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.8rem;
}

/* 💬 Forum Section */
.community-forum-section {
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.community-forum-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0f0f0;
}

.community-forum-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
}

.community-newpost-btn {
  background: #2ecc71;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.community-newpost-btn:hover {
  background: #27ae60;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

/* 🗨️ Forum Posts */
.community-post-card {
  padding: 20px;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.3s;
  cursor: pointer;
}

.community-post-card:hover {
  background: #fafafa;
}

.community-post-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.community-post-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
}

.community-post-meta {
  flex: 1;
}

.community-post-author {
  font-weight: 600;
  color: #333;
  margin-bottom: 3px;
}

.community-post-time {
  font-size: 0.85rem;
  color: #999;
}

.community-post-category {
  padding: 4px 12px;
  background: #e7f9ef;
  color: #2ecc71;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 500;
}

.community-post-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.community-post-excerpt {
  color: #1a1a1d;
  line-height: 1.5;
  margin-bottom: 15px;
}

.community-post-stats {
  display: flex;
  gap: 20px;
  align-items: center;
}

.community-stat-item {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #999;
  font-size: 0.9rem;
}

.community-stat-item:hover {
  color: #2ecc71;
}

/* 📈 Right Sidebar */
.community-right-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.community-widget {
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.community-widget-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.community-trending-topic {
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.community-trending-topic:last-child {
  border-bottom: none;
}

.community-trend-number {
  color: #2ecc71;
  font-weight: 600;
  margin-right: 10px;
}

.community-member-block {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
}

.community-member-avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
}

.community-member-info {
  flex: 1;
}

.community-member-name {
  font-weight: 500;
  color: #333;
  font-size: 0.95rem;
}

.community-member-posts {
  font-size: 0.8rem;
  color: #999;
}

/* 📱 Responsive */
@media (max-width: 1024px) {
  .community-main-layout {
    grid-template-columns: 1fr;
  }

  .community-left-sidebar {
    display: none;
  }

  .community-right-sidebar {
    display: none;
  }
}

@media (max-width: 768px) {
  .community-hero-title {
    font-size: 2rem;
  }

  .community-stats-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Main Blog Page Section */
.blog-main-section {
  padding: 60px 0;
  background-color: #f5f5f5;
  min-height: calc(100vh - 200px);
}

.blog-container {
  max-width: 1620px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section Headers */
.blog-section-title {
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 50px;
}

/* Category Tabs */
.blog-category-tabs {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  overflow-x: auto;
  scrollbar-width: none;
}

.blog-category-tabs::-webkit-scrollbar {
  display: none;
}

.blog-category-btn {
  padding: 8px 20px;
  background: none;
  border: none;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
}

.blog-category-btn:hover {
  color: #228b22;
}

.blog-category-btn.active {
  color: #228b22;
}

.blog-category-btn.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #228b22;
}

/* Search Bar */
.blog-search-bar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 40px;
}

.blog-search-input {
  width: 300px;
  padding: 10px 15px;
  padding-right: 40px;
  border: 1px solid #e0e0e0;
  border-radius: 25px;
  font-size: 14px;
  background-color: white;
  transition: all 0.3s ease;
}

.blog-search-input:focus {
  outline: none;
  border-color: #228b22;
  box-shadow: 0 0 0 3px rgba(42, 157, 62, 0.1);
}

.blog-search-wrapper {
  position: relative;
}

.blog-search-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  cursor: pointer;
}

/* Featured Blogs Grid */
.featured-blogs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

.featured-blog-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.featured-blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.featured-blog-image {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}

.featured-blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-blog-content {
  padding: 25px;
}

.featured-blog-date {
  font-size: 13px;
  color: #999;
  margin-bottom: 10px;
}

.featured-blog-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.4;
}

.featured-blog-excerpt {
  font-size: 14px;
  color: #1a1a1d;
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #228b22;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.blog-read-more:hover {
  color: #228b34;
  gap: 12px;
}

/* Recent Blogs Section */
.recent-blogs-section {
  padding-top: 40px;
}

.recent-blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.blog-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.blog-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #42a5f5 0%, #1976d2 100%);
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

.blog-date {
  font-size: 12px;
  color: #999;
  margin-bottom: 8px;
}

.blog-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-excerpt {
  font-size: 14px;
  color: #1a1a1d;
  line-height: 1.6;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 50px;
}

.pagination-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e0e0e0;
  background: white;
  color: #1a1a1d;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.pagination-btn:hover {
  background-color: #228b22;
  color: white;
  border-color: #228b22;
}

.pagination-btn.active {
  background-color: #228b22;
  color: white;
  border-color: #228b22;
}

.pagination-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination-dots {
  color: #999;
}

/* Responsive Design */
@media (max-width: 1199px) {
  .blog-container {
    max-width: 1000px;
  }
}

@media (max-width: 991px) {
  .recent-blogs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-section-title {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .blog-main-section {
    padding: 40px 0;
  }

  .blog-section-title {
    font-size: 28px;
    margin-bottom: 35px;
  }

  .featured-blogs-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .recent-blogs-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .blog-search-input {
    width: 250px;
  }

  .blog-category-tabs {
    gap: 15px;
  }
}

@media (max-width: 575px) {
  .blog-container {
    padding: 0 15px;
  }

  .blog-section-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .featured-blog-image {
    height: 200px;
  }

  .blog-search-bar {
    justify-content: center;
  }

  .blog-search-input {
    width: 100%;
  }

  .blog-category-btn {
    font-size: 13px;
    padding: 6px 15px;
  }

  .featured-blog-title {
    font-size: 18px;
  }

  .blog-pagination {
    gap: 5px;
  }

  .pagination-btn {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .featured-blog-content {
    padding: 20px;
  }

  .blog-content {
    padding: 15px;
  }

  .blog-title {
    font-size: 16px;
  }

  .blog-excerpt {
    font-size: 13px;
  }
}

/* Main Blog Inside Page Detail Section */
.bd-main-section {
  padding: 40px 0 80px;
  background-color: #f5f5f5;
  min-height: calc(100vh - 200px);
}

.bd-container {
  max-width: 1620px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Breadcrumb */
.bd-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  font-size: 14px;
  color: #1a1a1d;
}

.bd-breadcrumb a {
  color: #1a1a1d;
  text-decoration: none;
  transition: color 0.3s ease;
}

.bd-breadcrumb a:hover {
  color: #228b22;
  transform: translateX(-5px);
}

.bd-breadcrumb-separator {
  color: #999;
}

.bd-breadcrumb-current {
  color: #333;
  font-weight: 500;
}

/* Article Container */
.bd-article-container {
  margin-bottom: 60px;
}

/* Article Header */
.bd-article-header {
  margin-bottom: 30px;
}

.bd-article-title {
  font-size: 36px;
  font-weight: 700;
  color: #228b22;
  line-height: 1.3;
  margin-bottom: 20px;
}

.bd-article-meta {
  font-size: 14px;
  color: #999;
  margin-bottom: 30px;
}

/* Featured Image */
.bd-featured-image {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  margin-bottom: 40px;
  overflow: hidden;
  position: relative;
}

.bd-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bd-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 30px;
  color: white;
}

.bd-overlay-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}

.bd-overlay-date {
  font-size: 14px;
  opacity: 0.9;
}

/* Article Content */
.bd-article-content {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
}

.bd-article-content h2 {
  font-weight: 600;
  color: #228b22;
  margin: 40px 0 20px;
  text-transform: uppercase;
}

.bd-article-content h3 {
  font-size: 22px;
  font-weight: 600;
  color: #333;
  margin: 30px 0 15px;
}

.bd-article-content p {
  margin-bottom: 20px;
}

.bd-article-content ul,
.bd-article-content ol {
  margin: 20px 0;
  padding-left: 30px;
}

.bd-article-content li {
  margin-bottom: 10px;
  line-height: 1.8;
}

/* Overview Box */
.bd-overview-box {
  background-color: #f9fff9;
  border-left: 4px solid #228b22;
  padding: 25px;
  margin: 40px 0;
  border-radius: 8px;
}

.bd-overview-title {
  font-size: 20px;
  font-weight: 600;
  color: #228b22;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.bd-overview-content ul {
  margin: 0;
  padding-left: 20px;
}

.bd-overview-content li {
  margin-bottom: 10px;
}

/* Social Share */
.bd-social-share {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 30px 0;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  margin: 40px 0;
}

.bd-share-label {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1d;
}

.bd-share-buttons {
  display: flex;
  gap: 10px;
}

.bd-share-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0f0f0;
  border-radius: 50%;
  color: #1a1a1d;
  text-decoration: none;
  transition: all 0.3s ease;
}

.bd-share-btn:hover {
  background-color: #228b22;
  color: white;
  transform: translateY(-2px);
}

.bd-share-btn.facebook:hover {
  background-color: #1877f2;
}

.bd-share-btn.twitter:hover {
  background-color: #1da1f2;
}

.bd-share-btn.linkedin:hover {
  background-color: #0077b5;
}

/* Recent Blogs Section */
.bd-recent-section {
  margin-top: 60px;
}

.bd-section-title {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 30px;
}

.bd-recent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.bd-blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.bd-blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.bd-blog-image {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, #42a5f5 0%, #1976d2 100%);
  overflow: hidden;
}

.bd-blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bd-blog-content {
  padding: 20px;
}

.bd-blog-date {
  font-size: 12px;
  color: #999;
  margin-bottom: 8px;
}

.bd-blog-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.4;
}

.bd-blog-excerpt {
  font-size: 14px;
  color: #1a1a1d;
  line-height: 1.6;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bd-read-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #228b22;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.bd-read-more:hover {
  color: #228b34;
  gap: 8px;
}

/* Responsive Design */
@media (max-width: 1199px) {
  .bd-container {
    max-width: 800px;
  }
}

@media (max-width: 991px) {
  .bd-article-container {
    padding: 35px;
  }

  .bd-recent-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .bd-main-section {
    padding: 30px 0 60px;
  }

  .bd-article-container {
    padding: 30px 25px;
  }

  .bd-article-title {
    font-size: 28px;
  }

  .bd-featured-image {
    height: 250px;
  }

  .bd-overlay-title {
    font-size: 22px;
  }

  .bd-recent-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .bd-article-content h2 {
    font-size: 24px;
  }

  .bd-article-content h3 {
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  .bd-container {
    padding: 0 15px;
  }

  .bd-article-container {
    padding: 25px 20px;
    border-radius: 12px;
  }

  .bd-article-title {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .bd-featured-image {
    height: 200px;
    margin-bottom: 30px;
  }

  .bd-overlay-title {
    font-size: 18px;
  }

  .bd-article-content {
    font-size: 15px;
  }

  .bd-article-content h2 {
    font-size: 20px;
    margin: 30px 0 15px;
  }

  .bd-article-content h3 {
    font-size: 18px;
  }

  .bd-overview-box {
    padding: 20px;
    margin: 30px 0;
  }

  .bd-social-share {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .bd-breadcrumb {
    font-size: 13px;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .bd-article-container {
    padding: 20px 15px;
  }

  .bd-article-title {
    font-size: 20px;
  }

  .bd-blog-content {
    padding: 15px;
  }

  .bd-section-title {
    font-size: 24px;
  }
}

/* About Us Section */
/* Hero Banner Section */
.aup-hero-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

/* .aup-hero-pattern {
  position: absolute;
  top: 0;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
} */

.aup-hero-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.aup-hero-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aup-hero-content {
  max-width: 1920px;
  margin: 100px auto 0;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  text-align: center;
}

.aup-hero-title {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 60px 0;
}

.aup-hero-subtitle {
  font-weight: 300;
  max-width: 900px;
  margin: 0 auto;
  color: #1a1a1d;
}

/* Vision & Mission Section */
.aup-vm-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.aup-vm-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 450px;
}

/* Vision Box */
.aup-vision-box {
  background-color: #e8e8e8;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.aup-vm-icon {
  width: 120px;
  height: 120px;
  margin-bottom: 30px;
  position: relative;
}

.aup-vision-icon {
  width: 100%;
  height: 100%;
  stroke: #0066ff;
  fill: none;
  stroke-width: 2;
}

.aup-mission-icon {
  width: 100%;
  height: 100%;
  stroke: white;
  fill: none;
  stroke-width: 2;
}

.aup-mission-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  max-width: 550px;
}

.aup-mission-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  color: white;
  opacity: 0.95;
  font-size: 15px;
  line-height: 1.7;
}

.aup-mission-item:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  font-size: 18px;
}

.aup-vm-title {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.aup-vision-title {
  color: #1a1a1a;
}

.aup-vm-text {
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
  max-width: 500px;
}

.aup-vision-text {
  color: #4a4a4a;
}

/* Mission Box */
.aup-mission-box {
  background-color: #228b22;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.aup-mission-title {
  color: white;
}

.aup-mission-text {
  color: white;
  opacity: 0.95;
}

/* Core Values Section */
.aup-values-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.aup-values-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.aup-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.aup-section-title {
  font-size: 42px;
  font-weight: 700;
  color: #228b22;
  margin-bottom: 15px;
}

.aup-section-subtitle {
  font-size: 18px;
  color: #1a1a1d;
}

.aup-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.aup-value-card {
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.aup-value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(34, 139, 34, 0.15);
}

.aup-value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #228b22, #228b22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: white;
}

.aup-mission-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #ffffff, #ffffff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #228b22;
}

.aup-value-title {
  font-size: 22px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.aup-value-description {
  font-size: 15px;
  color: #1a1a1d;
  line-height: 1.6;
}

/* FAQs Section */
.aup-faq-section {
  padding: 80px 0;
  background-color: white;
}

.aup-faq-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.aup-faq-accordion {
  margin-top: 40px;
}

.aup-faq-item {
  margin-bottom: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.aup-faq-item:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.aup-faq-header {
  padding: 25px 30px;
  background: white;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.aup-faq-header:hover {
  background: #f8f9fa;
}

.aup-faq-header.active {
  background: #e8f5e9;
}

.aup-faq-question {
  font-size: 18px;
  font-weight: 500;
  color: #333;
  margin: 0;
}

.aup-faq-icon {
  font-size: 20px;
  color: #228b22;
  transition: transform 0.3s ease;
}

.aup-faq-header.active .aup-faq-icon {
  transform: rotate(180deg);
}

.aup-faq-body {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.aup-faq-body.active {
  padding: 20px 30px 30px;
  max-height: 500px;
}

.aup-faq-answer {
  font-size: 16px;
  color: #1a1a1d;
  line-height: 1.6;
}

/* Contact Section */
.aup-contact-section {
  padding: 80px 0;
  background: #f5f5f5;
}

.aup-contact-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.aup-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.aup-contact-info {
  color: var(--primary-color);
}

.aup-contact-title {
  font-weight: 700;
  margin-bottom: 20px;
}

.aup-contact-text {
  margin-bottom: 40px;
  opacity: 0.95;
}

.aup-contact-list {
  list-style: none;
  padding: 0;
}

.aup-contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  font-size: 16px;
}

.aup-contact-item i {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  font-size: 18px;
}

.aup-contact-form {
  background: var(--primary-color);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.aup-form-title {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 30px;
}

.aup-form-group {
  margin-bottom: 20px;
}

.aup-form-label {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 8px;
  display: block;
}

.aup-form-input,
.aup-form-textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.aup-form-input:focus,
.aup-form-textarea:focus {
  outline: none;
  border-color: #228b22;
  box-shadow: 0 0 0 3px rgba(42, 157, 62, 0.1);
}

.aup-form-textarea {
  resize: vertical;
  min-height: 120px;
}

.aup-form-submit {
  background: #ffffff;
  color: var(--primary-color);
  border: none;
  padding: 14px 40px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.aup-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(34, 139, 34, 0.3);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 991px) {
  .aup-vm-container {
    grid-template-columns: 1fr;
  }

  .aup-values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .aup-contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 767px) {
  .aup-hero-title {
    font-size: 36px;
  }

  .aup-hero-subtitle {
    font-size: 18px;
  }

  .aup-vision-box,
  .aup-mission-box {
    padding: 60px 40px;
  }

  .aup-vm-title {
    font-size: 32px;
  }

  .aup-values-grid {
    grid-template-columns: 1fr;
  }

  .aup-section-title {
    font-size: 32px;
  }

  .aup-faq-question {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .aup-hero-section {
    padding: 80px 0 60px;
  }

  .aup-hero-title {
    font-size: 28px;
  }

  .aup-hero-subtitle {
    font-size: 16px;
  }

  .aup-vision-box,
  .aup-mission-box {
    padding: 50px 30px;
  }

  .aup-vm-title {
    font-size: 28px;
  }

  .aup-vm-text {
    font-size: 14px;
  }

  .aup-contact-form {
    padding: 30px 20px;
  }
}

/* Headerprofile section */
.header-wrapper {
  background-color: var(--primary-color);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.header-wrapper.scrolled {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.header-container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 40px;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo Styles */
.logo-wrapper {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--white);
  transition: transform 0.3s ease;
}

.logo-wrapper:hover {
  transform: scale(1.05);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background-color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

.logo-icon i {
  color: var(--primary-color);
  font-size: 24px;
}

.logo-text {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
}

/* Navigation Styles */
.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}

.nav-menu a {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  position: relative;
  transition: opacity 0.3s ease;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--white);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
  opacity: 1;
}

/* CTA Button Styles */
.cta-primary {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  background-color: var(--white);
  color: var(--primary-color);
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cta-primary:hover {
  background-color: #186318;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Profile Dropdown Styles */
.lb-profile-dropdown {
  position: relative;
}

.lb-profile-button {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--white);
  border: 2px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lb-profile-button:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.lb-profile-button i {
  color: var(--primary-color);
  font-size: 22px;
}

/* Dropdown Menu */
.lb-dropdown-menu {
  position: absolute;
  top: calc(100% + 15px);
  right: 0;
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 1001;
  pointer-events: none;
}

.lb-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  right: 18px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid var(--white);
}

/* Show dropdown on hover */
.lb-profile-dropdown:hover .lb-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Keep dropdown visible when hovering over it */
.lb-dropdown-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lb-dropdown-header {
  padding: 20px;
  border-bottom: 1px solid var(--gray-border);
}

.lb-dropdown-header h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}

.lb-dropdown-header p {
  font-size: 13px;
  color: #1a1a1d;
}

.lb-dropdown-list {
  list-style: none;
  padding: 8px 0;
}

.lb-dropdown-list li {
  border-bottom: 1px solid var(--gray-border);
}

.lb-dropdown-list li:last-child {
  border-bottom: none;
}

.lb-dropdown-list a {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  color: var(--black);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
}

.lb-dropdown-list a:hover {
  background-color: var(--gray-light);
  color: var(--primary-color);
}

.lb-dropdown-list a i {
  width: 20px;
  margin-right: 12px;
  font-size: 16px;
}

.lb-dropdown-list .lb-logout-link {
  color: #dc3545;
}

.lb-dropdown-list .lb-logout-link:hover {
  background-color: #fff5f5;
  color: #dc3545;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-menu-btn:hover {
  transform: scale(1.1);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 998;
}

.mobile-menu-overlay.active {
  display: block;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: var(--white);
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  z-index: 999;
  overflow-y: auto;
  padding-top: 80px;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-content {
  padding: 30px 20px;
}

.mobile-menu .nav-menu {
  flex-direction: column;
  gap: 0;
  margin-top: 20px;
}

.mobile-menu .nav-menu li {
  border-bottom: 1px solid #eee;
}

.mobile-menu .nav-menu a {
  color: var(--black);
  font-size: 18px;
  padding: 15px 0;
  display: block;
}

.mobile-menu .nav-menu a::after {
  display: none;
}

.mobile-menu .cta-primary {
  width: 100%;
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
  margin-bottom: 20px;
}

/* Mobile Profile Section */
.mobile-profile {
  border-top: 1px var(--gray-border);
}

.mobile-profile-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.mobile-profile-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.mobile-profile-icon i {
  color: var(--white);
  font-size: 24px;
}

.mobile-profile-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 2px;
}

.mobile-profile-info p {
  font-size: 13px;
  color: #1a1a1d;
}

.mobile-profile-menu {
  list-style: none;
}

.mobile-profile-menu li {
  border-bottom: 1px solid #eee;
}

.mobile-profile-menu a {
  display: flex;
  align-items: center;
  padding: 12px 0;
  color: var(--black);
  text-decoration: none;
  font-size: 15px;
}

.mobile-profile-menu a:hover {
  background-color: var(--gray-light);
  color: var(--primary-color);
}

.mobile-profile-menu a i {
  width: 20px;
  margin-right: 12px;
}

.mobile-profile-menu .lb-logout-link {
  color: #dc3545;
}

body.menu-open {
  overflow: hidden;
}

/* Responsive Breakpoints */

@media (max-width: 1200px) {
  .nav-wrapper {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .profile-dropdown {
    display: none;
  }

  .header-container {
    padding: 0 30px;
  }
}

@media (max-width: 991px) {
  .header-container {
    padding: 0 20px;
  }
}

@media (max-width: 767px) {
  :root {
    --header-height: 70px;
  }

  .header-container {
    padding: 0 20px;
  }

  .logo-text {
    font-size: 20px;
  }

  .logo-icon {
    width: 35px;
    height: 35px;
  }

  .logo-icon i {
    font-size: 20px;
  }

  .mobile-menu {
    width: 100%;
  }

  .mobile-menu-content {
    padding: 20px 15px;
  }
}

@media (max-width: 575px) {
  :root {
    --header-height: 60px;
  }

  .header-container {
    padding: 0 15px;
  }

  .logo-text {
    font-size: 18px;
  }
}

/* Hero Section */
.tc-hero-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.tc-hero-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.tc-hero-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tc-hero-content {
  max-width: 1920px;
  margin: 100px auto 0;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  text-align: center;
}

.tc-hero-title {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 15px;
}

.tc-hero-subtitle {
  font-size: 18px;
  opacity: 0.95;
}

.tc-last-updated {
  font-size: 14px;
  margin-top: 10px;
  opacity: 0.9;
}

/* Main Content Section */
.tc-content-section {
  padding: 60px 0 80px;
}

.tc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.tc-content-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

/* Sidebar Navigation */
.tc-sidebar {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 30px;
}

.tc-sidebar-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #e8f5e9;
}

.tc-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tc-nav-item {
  margin-bottom: 10px;
}

.tc-nav-link {
  display: block;
  padding: 10px 15px;
  color: #1a1a1d;
  text-decoration: none;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.tc-nav-link:hover {
  background-color: #f8f9fa;
  color: #2a9d3e;
  border-left-color: #2a9d3e;
}

.tc-nav-link.active {
  background-color: #e8f5e9;
  color: #2a9d3e;
  border-left-color: #2a9d3e;
  font-weight: 500;
}

/* Main Content Area */
.tc-main-content {
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Content Sections */
.tc-section {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}

.tc-section:last-child {
  margin-bottom: 0;
}

.tc-section-title {
  font-size: 28px;
  font-weight: 600;
  color: #2a9d3e;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #e8f5e9;
}

.tc-subsection {
  margin-bottom: 30px;
}

.tc-subsection-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.tc-paragraph {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.tc-list {
  margin: 20px 0;
  padding-left: 0;
  list-style: none;
}

.tc-list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

.tc-list-item:before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 3px;
  color: #2a9d3e;
  font-size: 14px;
}

/* Highlight Box */
.tc-highlight-box {
  background-color: #f9fff9;
  border-left: 4px solid #2a9d3e;
  padding: 20px;
  margin: 25px 0;
  border-radius: 8px;
}

.tc-highlight-title {
  font-size: 18px;
  font-weight: 600;
  color: #2a9d3e;
  margin-bottom: 10px;
}

.tc-highlight-text {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Contact Box */
.tc-contact-box {
  background: linear-gradient(135deg, #2a9d3e 0%, #228b22 100%);
  color: white;
  padding: 30px;
  border-radius: 12px;
  margin-top: 40px;
  text-align: center;
}

.tc-contact-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

.tc-contact-text {
  font-size: 16px;
  margin-bottom: 20px;
  opacity: 0.95;
}

.tc-contact-button {
  display: inline-block;
  background: white;
  color: #2a9d3e;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.tc-contact-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  color: #228b22;
}

/* Back to Top Button */
.tc-back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #2a9d3e;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(42, 157, 62, 0.3);
  border: none;
}

.tc-back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.tc-back-to-top:hover {
  background: #228b22;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(34, 139, 34, 0.4);
}

/* Responsive Design */
@media (max-width: 1920px) {
  .tc-hero-container,
  .tc-container {
    max-width: 1920px;
  }
}

@media (max-width: 1440px) {
  .tc-hero-container,
  .tc-container {
    max-width: 1440px;
  }
}

@media (max-width: 1200px) {
  .tc-hero-container,
  .tc-container {
    max-width: 1200px;
  }

  .tc-content-grid {
    gap: 30px;
  }
}

@media (max-width: 991px) {
  .tc-content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .tc-sidebar {
    position: static;
    margin-bottom: 30px;
  }

  .tc-nav-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .tc-hero-title {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .tc-hero-section {
    padding: 80px 0 50px;
  }

  .tc-hero-title {
    font-size: 32px;
  }

  .tc-hero-subtitle {
    font-size: 16px;
  }

  .tc-main-content {
    padding: 30px 25px;
  }

  .tc-section-title {
    font-size: 24px;
  }

  .tc-nav-list {
    grid-template-columns: 1fr;
  }

  .tc-subsection-title {
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .tc-container {
    padding: 0 15px;
  }

  .tc-hero-section {
    padding: 60px 0 40px;
  }

  .tc-hero-title {
    font-size: 28px;
  }

  .tc-hero-subtitle {
    font-size: 15px;
  }

  .tc-main-content {
    padding: 25px 20px;
  }

  .tc-section-title {
    font-size: 22px;
  }

  .tc-subsection-title {
    font-size: 18px;
  }

  .tc-paragraph,
  .tc-list-item {
    font-size: 15px;
  }

  .tc-back-to-top {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
  }

  .tc-contact-box {
    padding: 25px 20px;
  }

  .tc-contact-title {
    font-size: 20px;
  }

  .tc-contact-text {
    font-size: 15px;
  }
}

@media (max-width: 375px) {
  .tc-hero-title {
    font-size: 24px;
  }

  .tc-section-title {
    font-size: 20px;
  }

  .tc-main-content {
    padding: 20px 15px;
  }
}

/* Privacy Policy Hero Section */
.pp-hero-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.pp-hero-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.pp-hero-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pp-hero-content {
  max-width: 1920px;
  margin: 100px auto 0;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  text-align: center;
}

.pp-hero-title {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.pp-hero-subtitle {
  font-size: 18px;
  opacity: 0.95;
}

.pp-last-updated {
  font-size: 14px;
  margin-top: 10px;
  opacity: 0.9;
}

/* Main Content Section */
.pp-content-section {
  padding: 60px 0 80px;
  background-color: #f5f5f5;
}

.pp-container {
  max-width: 1650px;
  margin: 0 auto;
  padding: 0 20px;
}

.pp-content-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

/* Sidebar Navigation */
.pp-sidebar {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 30px;
}

.pp-sidebar-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #e8f5e9;
}

.pp-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pp-nav-item {
  margin-bottom: 10px;
}

.pp-nav-link {
  display: block;
  padding: 10px 15px;
  color: #1a1a1d;
  text-decoration: none;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.pp-nav-link:hover {
  background-color: #f8f9fa;
  color: #2a9d3e;
  border-left-color: #2a9d3e;
}

.pp-nav-link.active {
  background-color: #e8f5e9;
  color: #2a9d3e;
  border-left-color: #2a9d3e;
  font-weight: 500;
}

/* Main Content Area */
.pp-main-content {
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Content Sections */
.pp-section {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}

.pp-section:last-child {
  margin-bottom: 0;
}

.pp-section-title {
  font-size: 28px;
  font-weight: 600;
  color: #2a9d3e;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #e8f5e9;
}

.pp-subsection {
  margin-bottom: 30px;
}

.pp-subsection-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.pp-paragraph {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.pp-list {
  margin: 20px 0;
  padding-left: 0;
  list-style: none;
}

.pp-list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

.pp-list-item:before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 3px;
  color: #2a9d3e;
  font-size: 14px;
}

/* Highlight Box */
.pp-highlight-box {
  background-color: #f9fff9;
  border-left: 4px solid #2a9d3e;
  padding: 20px;
  margin: 25px 0;
  border-radius: 8px;
}

.pp-highlight-title {
  font-size: 18px;
  font-weight: 600;
  color: #2a9d3e;
  margin-bottom: 10px;
}

.pp-highlight-text {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Table Styles */
.pp-table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  background: white;
  border-radius: 8px;
  overflow: hidden;
}

.pp-table th {
  background: #2a9d3e;
  color: white;
  padding: 15px;
  text-align: left;
  font-weight: 600;
}

.pp-table td {
  padding: 15px;
  border-bottom: 1px solid #e0e0e0;
}

.pp-table tr:last-child td {
  border-bottom: none;
}

/* Contact Box */
.pp-contact-box {
  background: linear-gradient(135deg, #2a9d3e 0%, #228b22 100%);
  color: white;
  padding: 30px;
  border-radius: 12px;
  margin-top: 40px;
  text-align: center;
}

.pp-contact-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

.pp-contact-text {
  font-size: 16px;
  margin-bottom: 20px;
  opacity: 0.95;
}

.pp-contact-button {
  display: inline-block;
  background: white;
  color: #2a9d3e;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.pp-contact-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  color: #228b22;
}

/* Back to Top Button */
.pp-back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #2a9d3e;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(42, 157, 62, 0.3);
  border: none;
}

.pp-back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.pp-back-to-top:hover {
  background: #228b22;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(34, 139, 34, 0.4);
}

/* Responsive Design */
@media (max-width: 991px) {
  .pp-content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .pp-sidebar {
    position: static;
    margin-bottom: 30px;
  }

  .pp-nav-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

@media (max-width: 767px) {
  .pp-hero-title {
    font-size: 32px;
  }

  .pp-hero-subtitle {
    font-size: 16px;
  }

  .pp-main-content {
    padding: 30px 25px;
  }

  .pp-section-title {
    font-size: 24px;
  }

  .pp-nav-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .pp-container {
    padding: 0 15px;
  }

  .pp-hero-section {
    padding: 80px 0 50px;
  }

  .pp-hero-title {
    font-size: 28px;
  }

  .pp-main-content {
    padding: 25px 20px;
  }

  .pp-section-title {
    font-size: 22px;
  }

  .pp-subsection-title {
    font-size: 18px;
  }

  .pp-paragraph,
  .pp-list-item {
    font-size: 15px;
  }

  .pp-back-to-top {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
  }
}

/* forgotpassword section */
.forgot-section {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.forgot-container {
  max-width: 480px;
  width: 100%;
}

.forgot-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.forgot-header {
  background: linear-gradient(135deg, #2a9d3e 0%, #228b22 100%);
  padding: 40px 30px;
  text-align: center;
  color: white;
}

.forgot-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 36px;
}

.forgot-header h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.forgot-header p {
  font-size: 15px;
  opacity: 0.95;
  line-height: 1.6;
}

.forgot-body {
  padding: 40px 30px;
}

.forgot-step {
  display: none;
}

.forgot-step.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-group {
  margin-bottom: 25px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.form-input-wrapper {
  position: relative;
}

.form-input {
  width: 100%;
  padding: 14px 45px 14px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: #2a9d3e;
  box-shadow: 0 0 0 4px rgba(42, 157, 62, 0.1);
}

.form-input.error {
  border-color: #dc3545;
}

.form-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 18px;
}

.error-message {
  color: #dc3545;
  font-size: 13px;
  margin-top: 5px;
  display: none;
}

.error-message.show {
  display: block;
}

.success-message {
  background: #d4edda;
  color: #155724;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
  border: 1px solid #c3e6cb;
  font-size: 14px;
  line-height: 1.6;
}

.info-box {
  background: #e8f5e9;
  border-left: 4px solid #2a9d3e;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 25px;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #2a9d3e 0%, #228b22 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(42, 157, 62, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

.submit-btn .spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid white;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto;
}

.submit-btn.loading .spinner {
  display: block;
}

.submit-btn.loading .btn-text {
  display: none;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.back-link {
  text-align: center;
  margin-top: 25px;
}

.back-link a {
  color: #2a9d3e;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.back-link a:hover {
  color: #228b22;
}

.back-link i {
  margin-right: 5px;
}

/* Code Input Styles */
.code-inputs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 30px 0;
}

.code-input {
  width: 50px;
  height: 60px;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.code-input:focus {
  outline: none;
  border-color: #2a9d3e;
  box-shadow: 0 0 0 4px rgba(42, 157, 62, 0.1);
}

.resend-code {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #666;
}

.resend-link {
  color: #2a9d3e;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}

.resend-link:hover {
  color: #228b22;
  text-decoration: underline;
}

.resend-link.disabled {
  color: #999;
  cursor: not-allowed;
  pointer-events: none;
}

/* Password Strength Indicator */
.password-strength {
  margin-top: 10px;
}

.strength-bar {
  height: 4px;
  background: #e0e0e0;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 5px;
}

.strength-fill {
  height: 100%;
  width: 0%;
  transition: all 0.3s ease;
}

.strength-fill.weak {
  width: 33%;
  background: #dc3545;
}

.strength-fill.medium {
  width: 66%;
  background: #ffc107;
}

.strength-fill.strong {
  width: 100%;
  background: #28a745;
}

.strength-text {
  font-size: 12px;
  color: #666;
}

.password-requirements {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
}

.password-requirements p {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.password-requirements ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.password-requirements li {
  font-size: 12px;
  color: #666;
  margin-bottom: 5px;
  padding-left: 20px;
  position: relative;
}

.password-requirements li:before {
  content: "○";
  position: absolute;
  left: 0;
  color: #999;
}

.password-requirements li.valid:before {
  content: "✓";
  color: #28a745;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: #28a745;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 50px;
  color: white;
  animation: successPop 0.5s ease;
}

@keyframes successPop {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.success-title {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  text-align: center;
}

.success-text {
  font-size: 15px;
  color: #666;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 575px) {
  .forgot-header {
    padding: 30px 20px;
  }

  .forgot-header h1 {
    font-size: 24px;
  }

  .forgot-body {
    padding: 30px 20px;
  }

  .code-input {
    width: 45px;
    height: 55px;
    font-size: 20px;
  }

  .forgot-icon {
    width: 70px;
    height: 70px;
    font-size: 32px;
  }
}
/* Trusted Content Section */
.trusted__section {
  width: 100%;
  padding: 80px 20px;
  background-color: #ffffff;
}

.trusted__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.trusted__image__wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.trusted__illustration {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
}

.trusted__content__wrapper {
  flex: 1;
}

.trusted__main__heading {
  font-weight: 700;
  color: rgb(34, 139, 34);
  margin-bottom: 24px;
  line-height: 1.2;
}

.trusted__description__text {
  font-size: 18px;
  color: #1a1a1d;
  line-height: 1.8;
}

/* Tablet Styles */
@media screen and (max-width: 968px) {
  .trusted__section {
    padding: 60px 20px;
  }

  .trusted__container {
    gap: 40px;
  }

  .trusted__main__heading {
    font-size: 2rem;
  }

  .trusted__description__text {
    font-size: 1rem;
  }
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
  .trusted__section {
    padding: 40px 16px;
  }

  .trusted__container {
    flex-direction: column;
    gap: 32px;
  }

  .trusted__image__wrapper {
    width: 100%;
    order: 1;
  }

  .trusted__illustration {
    max-width: 400px;
  }

  .trusted__content__wrapper {
    width: 100%;
    order: 2;
    text-align: center;
  }

  .trusted__main__heading {
    font-size: 1.75rem;
    margin-bottom: 20px;
  }

  .trusted__description__text {
    font-size: 0.9375rem;
  }
}

/* Small Mobile Styles */
@media screen and (max-width: 480px) {
  .trusted__section {
    padding: 32px 12px;
  }

  .trusted__container {
    gap: 24px;
  }

  .trusted__illustration {
    max-width: 100%;
  }

  .trusted__main__heading {
    font-size: 1.5rem;
    margin-bottom: 16px;
  }

  .trusted__description__text {
    font-size: 0.875rem;
    line-height: 1.6;
  }
}

/* Find and Hire Content Section */
.find__section {
  width: 100%;
  padding: 80px 20px;
  background-color: #f5f5f5;
}

.find__container {
  max-width: 1200px;
  margin: 0 auto;
}

.find__header__wrapper {
  text-align: center;
  margin-bottom: 60px;
}

.find__main__title {
  font-weight: 700;
  color: rgb(34, 139, 34);
  margin-bottom: 20px;
  line-height: 1.2;
}

.find__subtitle__text {
  font-size: 18px;
  color: #1a1a1d;
  line-height: 1.8;
  margin: 0 auto;
}

.find__steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.find__step__card {
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.find__step__card:hover {
  transform: translateY(-8px);
}

.find__icon__wrapper {
  width: 200px;
  height: 200px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.find__step__icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.find__step__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d8659;
  margin-bottom: 16px;
}

.find__step__description {
  font-size: 1rem;
  color: #555555;
  line-height: 1.6;
}

/* Tablet Styles */
@media screen and (max-width: 968px) {
  .find__section {
    padding: 60px 20px;
  }

  .find__main__title {
    font-size: 2rem;
  }

  .find__subtitle__text {
    font-size: 1rem;
  }

  .find__steps__grid {
    gap: 30px;
  }

  .find__icon__wrapper {
    width: 160px;
    height: 160px;
  }

  .find__step__title {
    font-size: 1.25rem;
  }

  .find__step__description {
    font-size: 0.9375rem;
  }
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
  .find__section {
    padding: 40px 16px;
  }

  .find__header__wrapper {
    margin-bottom: 40px;
  }

  .find__main__title {
    font-size: 1.75rem;
    margin-bottom: 16px;
  }

  .find__subtitle__text {
    font-size: 0.9375rem;
  }

  .find__steps__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .find__step__card {
    padding: 30px 20px;
  }

  .find__icon__wrapper {
    width: 140px;
    height: 140px;
    margin-bottom: 20px;
  }
}

/* Small Mobile Styles */
@media screen and (max-width: 480px) {
  .find__section {
    padding: 32px 12px;
  }

  .find__main__title {
    font-size: 1.5rem;
  }

  .find__subtitle__text {
    font-size: 0.875rem;
  }

  .find__steps__grid {
    gap: 24px;
  }

  .find__step__card {
    padding: 24px 16px;
  }

  .find__icon__wrapper {
    width: 120px;
    height: 120px;
  }

  .find__step__title {
    font-size: 1.125rem;
  }

  .find__step__description {
    font-size: 0.875rem;
  }
}

/* Join as Professional Section */
.professional__section {
  width: 100%;
  padding: 80px 20px;
  background-color: #ffffff;
}

.professional__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.professional__content__wrapper {
  flex: 1;
}

.professional__main__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d8659;
  margin-bottom: 24px;
  line-height: 1.2;
}

.professional__description__text {
  font-size: 1.125rem;
  color: #333333;
  line-height: 1.8;
  margin-bottom: 32px;
}

.professional__cta__button {
  display: inline-block;
  padding: 12px 30px;
  background-color: #228b22;
  color: white;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.professional__cta__button:hover {
  background-color: #228b34;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(42, 157, 62, 0.3);
}

.professional__cta__button:active {
  transform: translateY(0);
}

.professional__avatars__wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.professional__avatars__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.professional__avatar__item {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.professional__avatar__item:hover {
  transform: scale(1.1);
}

.professional__avatar__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Tablet Styles */
@media screen and (max-width: 968px) {
  .professional__section {
    padding: 60px 20px;
  }

  .professional__container {
    gap: 40px;
  }

  .professional__main__title {
    font-size: 2rem;
  }

  .professional__description__text {
    font-size: 1rem;
    margin-bottom: 28px;
  }

  .professional__cta__button {
    font-size: 1rem;
    padding: 14px 32px;
  }

  .professional__avatar__item {
    width: 120px;
    height: 120px;
  }

  .professional__avatars__grid {
    gap: 16px;
  }
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
  .professional__section {
    padding: 40px 16px;
  }

  .professional__container {
    flex-direction: column;
    gap: 40px;
  }

  .professional__content__wrapper {
    width: 100%;
    text-align: center;
    order: 2;
  }

  .professional__avatars__wrapper {
    width: 100%;
    order: 1;
  }

  .professional__main__title {
    font-size: 1.75rem;
    margin-bottom: 20px;
  }

  .professional__description__text {
    font-size: 0.9375rem;
    margin-bottom: 24px;
  }

  .professional__cta__button {
    font-size: 0.9375rem;
    padding: 12px 28px;
  }

  .professional__avatar__item {
    width: 100px;
    height: 100px;
  }

  .professional__avatars__grid {
    gap: 12px;
  }
}

/* Small Mobile Styles */
@media screen and (max-width: 480px) {
  .professional__section {
    padding: 32px 12px;
  }

  .professional__container {
    gap: 32px;
  }

  .professional__main__title {
    font-size: 1.5rem;
    margin-bottom: 16px;
  }

  .professional__description__text {
    font-size: 0.875rem;
    margin-bottom: 20px;
  }

  .professional__cta__button {
    font-size: 0.875rem;
    padding: 12px 24px;
    width: 100%;
    max-width: 200px;
  }

  .professional__avatar__item {
    width: 80px;
    height: 80px;
  }

  .professional__avatars__grid {
    gap: 10px;
  }
}

/* Grow Your Business Section */
.growbusiness__section {
  width: 100%;
  padding: 40px 20px;
  background-color: #ffffff;
  position: relative;
  overflow: visible;
}

.growbusiness__container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  min-height: 300px;
  position: relative;
  background: linear-gradient(135deg, #2d8659 0%, #3fa870 100%);
  border-radius: 20px;
  overflow: hidden;
}

.growbusiness__illustration__wrapper {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding-left: 40px;
}

.growbusiness__people__image {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: contain;
  object-position: bottom;
  display: block;
}

.growbusiness__content__wrapper {
  flex: 1;
  padding: 60px 60px 60px 40px;
  text-align: right;
  align-self: center;
}

.growbusiness__main__heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 32px;
}

.growbusiness__cta__button {
  display: inline-block;
  padding: 18px 48px;
  background-color: #ffffff;
  color: #2d8659;
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.growbusiness__cta__button:hover {
  background-color: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.growbusiness__cta__button:active {
  transform: translateY(-1px);
}

/* Tablet Styles */
@media screen and (max-width: 968px) {
  .growbusiness__section {
    padding: 30px 20px;
  }

  .growbusiness__container {
    min-height: 350px;
  }

  .growbusiness__illustration__wrapper {
    padding-left: 30px;
  }

  .growbusiness__people__image {
    max-width: 450px;
  }

  .growbusiness__content__wrapper {
    padding: 50px 40px 50px 30px;
  }

  .growbusiness__main__heading {
    font-size: 2.25rem;
    margin-bottom: 28px;
  }

  .growbusiness__cta__button {
    font-size: 1.125rem;
    padding: 16px 40px;
  }
}

/* Hide illustration on tablets and below */
@media screen and (max-width: 768px) {
  .growbusiness__section {
    padding: 20px 16px;
  }

  .growbusiness__container {
    min-height: auto;
    justify-content: center;
    border-radius: 16px;
  }

  .growbusiness__illustration__wrapper {
    display: none;
  }

  .growbusiness__content__wrapper {
    flex: none;
    width: 100%;
    padding: 60px 30px;
    text-align: center;
  }

  .growbusiness__main__heading {
    font-size: 2rem;
    margin-bottom: 24px;
  }

  .growbusiness__cta__button {
    font-size: 1rem;
    padding: 14px 36px;
  }
}

/* Small Mobile Styles */
@media screen and (max-width: 480px) {
  .growbusiness__section {
    padding: 16px 12px;
  }

  .growbusiness__container {
    border-radius: 12px;
  }

  .growbusiness__content__wrapper {
    padding: 40px 20px;
  }

  .growbusiness__main__heading {
    font-size: 1.75rem;
    margin-bottom: 20px;
  }

  .growbusiness__cta__button {
    font-size: 0.9375rem;
    padding: 12px 32px;
    width: 100%;
    max-width: 280px;
  }
}
/* PROFILE WRAPPER */
.lb-profile-wrapper {
  position: relative;
  margin-left: 15px;
}

/* PROFILE BUTTON */
.lb-profile-button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  color: #2e7d32;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* 🔴 BADGE – NOW REALLY TOP RIGHT */
.profile-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 18px;
  height: 18px;
  background: #dc3545;
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  box-shadow: 0 0 0 2px #2e7d32;
}
