body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: #333;
  line-height: 1.6;
}

.hover-scale:hover { transform: scale(1.05); transition: 0.3s; }
.carousel-caption h1, .carousel-caption p, .carousel-caption .btn {
  animation-duration: 1s; animation-delay: 0.5s;
}

/* ===Lodding=== */
#custom-loader {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #307a41;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  user-select: none;
}

/* স্পিনিং গোলাকার */
.loader-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle at center, #158d55, #03704e);
  box-shadow:
    0 0 20px #34d399,
    0 0 40px #10b981,
    0 0 60px #059669;
  animation:
    pulseGlow 1.8s ease-in-out infinite,
    spin360 3.6s linear infinite;
  position: relative;
  z-index: 2;
}

/* ওয়েভ এক্সপান্ডিং */
.loader-wave {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.6);
  animation: waveExpand 1.8s ease-in-out infinite;
  z-index: 1;
}

/* পলস গ্লো */
@keyframes pulseGlow {
  0%, 100% {
    transform: scale(1);
    box-shadow:
      0 0 20px #34d399,
      0 0 40px #10b981,
      0 0 60px #059669;
  }
  50% {
    transform: scale(1.15);
    box-shadow:
      0 0 40px #a7f3d0,
      0 0 60px #34d399,
      0 0 80px #10b981;
  }
}

/* ৩৬০ ডিগ্রি স্পিন */
@keyframes spin360 {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ওয়েভ বিস্তার */
@keyframes waveExpand {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  70%, 100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* ===End Lodding=== */

/* Starting state: hidden & slightly shifted down */
.animate-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Active visible state */
.animate-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =======================Navbar=============== */
  /* Navbar Desktop */
  .desktop-navbar {
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    animation: slideDownFade 0.8s ease forwards;
    transform: translateY(-100%);
    opacity: 0;
  }

  @keyframes slideDownFade {
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  /* Dropdown Slide Down Animation */
  .dropdown-menu.animate-slide {
    animation: slideDown 0.3s ease forwards;
    transform-origin: top;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }


  /* Sidebar (Mobile) */
  .mobile-sidebar {
    position: fixed;
    top: 0;
    left: -280px;
    width: 260px;
    height: 100%;
    background-color: #fff;
    box-shadow: 2px 0 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 1050;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
  }
  .mobile-sidebar.active {
    left: 0;
  }

  .sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .sidebar-header a {
    font-weight: 700;
    font-size: 1.5rem;
    color: #198754;
    text-decoration: none;
  }
  .sidebar-header .btn-close {
    font-size: 1.2rem;
    border-radius: 4px; /* ডিফল্ট আকার */
    transition: transform 0.6s ease, border-radius 0.3s ease;
    display: inline-block; /* transform কাজ করার জন্য */
  }
  .sidebar-header .btn-close:hover {
    border-radius: 50%; /* হোভার হলে পুরো গোলাকার হবে */
    transform: rotate(360deg);
  }

  /* Sidebar Links */
  .sidebar-link {
    display: block;
    padding: 10px 0;
    font-weight: 500;
    color: #198754;
    border-bottom: 1px solid #eee;
    transition: color 0.3s ease;
    text-decoration: none;
  }
  .sidebar-link:hover {
    color: #0a6847;
    border-bottom: 2px solid #058b48;
    transition: color 0.3s ease, border-bottom 0.3s ease;
  }

  /* Overlay */
  .sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1049;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .sidebar-overlay.active {
    display: block;
    opacity: 1;
  }

  /* Hide desktop navbar on small screens */
  @media (max-width: 991.98px) {
    .desktop-navbar {
      display: none;
    }
  }

  /* Hide mobile toggle button on desktop */
  @media (min-width: 992px) {
    #menuToggleBtn {
      display: none;
    }
  }

  /* Hamburger Button Animation */
  #menuToggleBtn {
    width: 30px;
    height: 22px;
    position: relative;
    cursor: pointer;
    display: inline-block;
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.3s ease;
    border: none;
    background: none;
    z-index: 1100;
  }

  #menuToggleBtn span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #198754;
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transform-origin: left center;
    transition: all 0.35s ease;
  }

  #menuToggleBtn span:nth-child(1) {
    top: 0;
  }
  #menuToggleBtn span:nth-child(2) {
    top: 9px;
  }
  #menuToggleBtn span:nth-child(3) {
    top: 18px;
  }

  /* When active (menu open) */
  #menuToggleBtn.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
    left: 0;
  }
  #menuToggleBtn.active span:nth-child(2) {
    opacity: 0;
    left: -60px;
  }
  #menuToggleBtn.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 9px;
    left: 0;
  }

  /* Navbar links (active or not) */
  .navbar-nav .nav-link {
    position: relative;
    font-weight: 500;
    color: #333;
    padding: 8px 15px;
    transition: color 0.3s ease;
  }

  /* Hover underline animation */
  .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: #198754; /* হরর কালার */
    border-radius: 50px;
    transform: translateX(-50%);
    transition: width 0.4s ease;
  }

  /* Hover: underline grows */
  .navbar-nav .nav-link:hover::after {
    width: 60%;
  }

  /* Hover: color change */
  .navbar-nav .nav-link:hover {
    color: #198754;
  }

  /* Active link styles (as before) */
  .navbar-nav .nav-link.custom-active {
    font-weight: 700;
    color: #198754;
    position: relative;
  }

  .navbar-nav .nav-link.custom-active::before {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background-color: #198754;
    border-radius: 50px;
    transition: width 0.4s ease;
  }

  /* Buttons Animation */
  /* Common button animation */
  .btn-animate {
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    z-index: 0;
  }

  /* Hover effect: subtle scale + shadow + background change */
  .btn-animate:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(25, 135, 84, 0.3);
    color: #fff !important;
  }

  /* Optional: Animated underline effect for outline buttons */
  .btn-outline-success.btn-animate::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: #198754;
    border-radius: 3px;
    transition: width 0.4s ease, left 0.4s ease;
    transform: translateX(-50%);
    z-index: -1;
  }

  .btn-outline-success.btn-animate:hover::after {
    width: 100%;
    left: 50%;
  }

  /* For solid success buttons - gentle shadow glow on hover */
  .btn-success.btn-animate:hover {
    background-color: #198754;
    box-shadow: 0 10px 25px rgba(25, 135, 84, 0.5);
    color: #fff;
  }
/* ==========End Navbar================== */


/* Scroll Button */
#scrollTopBtn {
  display: none;
  position: fixed;
  bottom: 50px;
  right: 25px;
  width: 45px;
  height: 45px;
  background: linear-gradient(45deg, #069b50, #058b48);
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 255, 106, 0.6);
  cursor: pointer;
  z-index: 9999;
  transition: background 0.3s ease, transform 0.3s ease;
  color: white;
  font-size: 24px;
  text-align: center;
  line-height: 45px;
}

#scrollTopBtn:hover {
  background: linear-gradient(45deg, #058b48, #069b50);
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 230, 104, 0.8);
}

/* Hero Section */
.hero-slide {
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
}
.carousel-caption {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%);
}
.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ffffff;
  border: none;
  opacity: 0.6;
}
.carousel-indicators .active {
  opacity: 1;
  background-color: #28a745;
}
@media (max-width: 768px) {
  .hero-slide h1 {
    font-size: 2rem;
  }
  .hero-slide p {
    font-size: 1rem;
  }
}

/* Fun Facts Counters */
.counter-card {
  transition: transform 0.3s ease;
}
.counter-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.counter {
  font-size: 2.5rem;
  font-weight: bold;
}

.icon-box {   
  transition: transform 0.4s ease;
}

.counter-card:hover .animate-icon {
  animation: bounce 0.8s ease;
}

@keyframes bounce {
  0%   { transform: scale(1); }
  30%  { transform: scale(1.3); }
  50%  { transform: scale(0.95); }
  70%  { transform: scale(1.1); }
  100% { transform: scale(1); }
}
  

/* Features section */
.features-section .icon-wrap {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #28a745, #20c997);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 28px;
  color: #fff;
  transition: 0.4s ease;
}

.feature-box:hover .icon-wrap {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 10px rgba(32, 201, 151, 0.5);
}

.feature-box {
  transition: all 0.4s ease-in-out;
}

.feature-box:hover {
  box-shadow: 0 0 20px rgba(40, 167, 69, 0.15);
  transform: translateY(-5px);
}


/* Services Section */
.service-card {
  transition: all 0.4s ease-in-out;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(40, 167, 69, 0.15);
}

.card-img-wrap {
  height: 220px;
}
.card-img-wrap img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover img {
  transform: scale(1.08);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.0), rgba(0,0,0,0.3));
  opacity: 0;
}
.service-card:hover .overlay {
  opacity: 1;
}

/*  Testimonial Section  */
.testimonial-card {
  background: #f8f9fa;
  border-left: 5px solid #28a745;
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Mission Section */
.progress-item {
  transition: transform 0.3s ease;
}
.progress-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(40, 167, 69, 0.15);
}
.progress {
  height: 10px;
  border-radius: 20px;
  background-color: #e9ecef;
  overflow: hidden;
}
.progress-bar {
  width: 0%;
  transition: width 1.5s ease-out;
}

/* Our Client */
.bg-light-green {
  background: linear-gradient(135deg, #f0fff4, #e0fce4);
}
.clients-scroll-wrapper {
  overflow: hidden;
  position: relative;
}
.clients-scroll-track {
  display: flex;
  width: max-content;
  animation: scrollClient 25s linear infinite;
}
.client-logo {
  flex: 0 0 auto;
  width: 160px;
  height: 100px;
  margin: 0 20px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
.client-logo img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
}
.client-logo:hover {
  transform: scale(1.08);
  cursor:no-drop;
}

@keyframes scrollClient {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .client-logo {
    width: 120px;
    height: 80px;
    margin: 0 10px;
  }
}

/* Newsletter-style CTA Section */
.newsletter-section {
  border-radius: 0 0 40px 40px;
  box-shadow: inset 0 -2px 10px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease-in-out;
}

.newsletter-section:hover {
  background: linear-gradient(135deg, #e6ffed, #f4fff7);
}

/*  */
.accordion-button {
  transition: all 0.3s ease;
  font-size: 1.05rem;
}
.accordion-button:hover {
  background-color: #e6f4ea;
  color: #14532d;
}
.accordion-body {
  background-color: #f9fdfb;
  font-size: 0.95rem;
}




/* ========================Pages=========================== */

/* Breadcrumb Section  Page Header Section*/
.page-header-section {
  height: 300px;
  background: linear-gradient(135deg, #e6fff2, #d4fce7);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.page-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #03704e;
  margin-bottom: 10px;
}

.breadcrumb {
  font-size: 1rem;
}
.breadcrumb a {
  color: #03704e;
  text-decoration: none;
}
.breadcrumb a:hover {
  color: #08a171;
  text-decoration: underline;
}
.breadcrumb-item.active {
  color: #025238;
}

/* Decorative Particles */
.header-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 0;
}
.particle {
  position: absolute;
  width: 14px;
  height: 14px;
  opacity: 0.2;
  animation: floatAnim 6s ease-in-out infinite alternate;
}
.particle.circle {
  background-color: #03704e;
  border-radius: 50%;
}
.particle.square {
  background-color: #08a171;
  animation-delay: 1.5s;
}
.particle.triangle {
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 14px solid #03704e;
  background: none;
  animation-delay: 3s;
}
@keyframes floatAnim {
  0%   { transform: translateY(0) rotate(0deg) scale(1); }
  100% { transform: translateY(-15px) rotate(20deg) scale(1.2); }
}

/* Responsive */
@media (max-width: 768px) {
  .page-title {
    font-size: 2rem;
  }
}


/* Hover background for sidebar items */
.hover-bg:hover {
  background-color: #e6f8ef;
  transition: 0.3s;
}

.service-detail ul li {
  padding: 6px 0;
  font-size: 0.95rem;
}

/* Food corner */
.card:hover img {
  transform: scale(1.05);
  transition: 0.4s ease-in-out;
}

.btn-animate:hover {
  transform: scale(1.05);
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(255, 255, 255, 0.3);
}

/* ================box page=================== */
/* Product Categories Section Styles */
.product-categories-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f9f0 100%);
    min-height: 100vh;
    font-family: 'Arial', sans-serif;
}

.category-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4caf50, #81c784);
    border-radius: 15px 15px 0 0;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(76, 175, 80, 0.2);
    border-color: #4caf50;
}

.category-image {
    text-align: center;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 10px;
}

.category-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.category-card:hover .category-img {
    transform: scale(1.05);
}

.category-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2e7d32;
    text-align: center;
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e8f5e8;
    transition: all 0.3s ease;
}

.category-item:last-child {
    border-bottom: none;
}

.category-item:hover {
    background: #f1f8e9;
    padding-left: 10px;
    border-radius: 8px;
}

.item-name {
    font-size: 0.95rem;
    color: #424242;
    font-weight: 500;
    flex: 1;
}

.item-count {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    min-width: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.category-item:hover .item-count {
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 992px) {
    .product-categories-section {
        padding: 40px 0;
    }
    
    .category-card {
        padding: 25px 15px;
        margin-bottom: 20px;
    }
    
    .category-icon i {
        font-size: 2.5rem;
        width: 70px;
        height: 70px;
    }
    
    .category-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .product-categories-section {
        padding: 30px 0;
    }
    
    .category-card {
        padding: 20px 15px;
        margin-bottom: 15px;
    }
    
    .category-icon i {
        font-size: 2rem;
        width: 60px;
        height: 60px;
    }
    
    .category-title {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .item-name {
        font-size: 0.9rem;
    }
    
    .item-count {
        font-size: 0.8rem;
        padding: 3px 10px;
    }
}

@media (max-width: 576px) {
    .product-categories-section {
        padding: 20px 0;
    }
    
    .category-card {
        padding: 15px 10px;
        border-radius: 10px;
    }
    
    .category-icon i {
        font-size: 1.8rem;
        width: 50px;
        height: 50px;
    }
    
    .category-title {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    .category-item {
        padding: 10px 0;
    }
    
    .item-name {
        font-size: 0.85rem;
    }
    
    .item-count {
        font-size: 0.75rem;
        padding: 2px 8px;
    }
}

/* Animation for loading effect */
.category-card {
    animation: fadeInUp 0.6s ease-out;
}

.category-card:nth-child(1) {
    animation-delay: 0.1s;
}

.category-card:nth-child(2) {
    animation-delay: 0.2s;
}

.category-card:nth-child(3) {
    animation-delay: 0.3s;
}

.category-card:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effects for better interactivity */
.category-item .item-name:hover {
    color: #2e7d32;
    font-weight: 600;
}

/* Additional responsive utilities */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}


/* ====================Team Page================ */
/* Team Section Styles */
.team-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f9f0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.team-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(144, 238, 144, 0.2);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(144, 238, 144, 0.3);
    border-color: #90EE90;
}

.team-image {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #90EE90;
    transition: all 0.3s ease;
}

.team-card:hover .profile-img {
    border-color: #32CD32;
    transform: scale(1.05);
}

.social-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(144, 238, 144, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.team-card:hover .social-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #32CD32;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    transform: scale(0.8);
}

.social-link:hover {
    background: #32CD32;
    color: white;
    transform: scale(1);
}

.team-info {
    padding-top: 10px;
}

.team-name {
    font-size: 24px;
    font-weight: 700;
    color: #2c5530;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.team-card:hover .team-name {
    color: #32CD32;
}

.team-position {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 0;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .team-section {
        padding: 60px 0;
    }
    
    .team-card {
        padding: 25px;
        margin-bottom: 20px;
    }
    
    .profile-img {
        width: 120px;
        height: 120px;
    }
    
    .team-name {
        font-size: 20px;
    }
    
    .team-position {
        font-size: 14px;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .team-section {
        padding: 40px 0;
    }
    
    .team-card {
        padding: 20px;
    }
    
    .profile-img {
        width: 100px;
        height: 100px;
    }
    
    .team-name {
        font-size: 18px;
    }
    
    .social-link {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Additional decorative elements */
.team-card::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #90EE90, #98FB98, #90EE90);
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover::before {
    opacity: 0.3;
}

.team-card::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 8px;
    height: 8px;
    background: #90EE90;
    border-radius: 50%;
    opacity: 0.6;
}

/* Light green accents */
.team-section {
    background-attachment: fixed;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(144, 238, 144, 0.2) 0%, transparent 25%),
        radial-gradient(circle at 75% 75%, rgba(152, 251, 152, 0.2) 0%, transparent 25%);
}

/* Light green theme decorative elements */
.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(144, 238, 144, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(152, 251, 152, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(144, 238, 144, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.team-section::after {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 100px;
    height: 100px;
    background: rgba(144, 238, 144, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.team-section .container {
    position: relative;
    z-index: 2;
}


/* =========================== Footer Sections ================================ */
/* Footer Base */
.footer-section {
    background-color: #0f172a !important; /* Premium Dark Navy Blue */
    font-family: 'Inter', sans-serif;
}

.footer-heading {
    position: relative;
    padding-bottom: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

/* Heading Underline Effect */
.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #198754; /* Success color */
}

/* Navigation Links */
.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: inline-block;
}

.footer-links li a:hover {
    color: #198754;
    transform: translateX(5px);
}

/* Newsletter Input Upgrade */
.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 10px 15px;
}

.newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: none;
    border-color: #198754;
    color: #fff;
}
/* Policy Links Styling */
.policy-link {
    transition: all 0.3s ease;
    font-size: 0.75rem; /* Standard footer policy font size */
    color: #94a3b8 !important; /* Soft secondary color */
}

.policy-link:hover {
    color: #198754 !important; /* Success color on hover */
    text-decoration: underline !important;
}

.policy-divider {
    font-size: 0.8rem;
    opacity: 0.5;
}

/* Mobile check: center on small screens if needed */
@media (max-width: 767px) {
    .policy-links-container {
        justify-content: start; /* Change to center if you want center alignment on mobile */
    }
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.05) !important;
}

/* Responsive Text */
.text-secondary {
    color: #94a3b8 !important;
}


/* ================= Dashboard Box Hover Animation ================= */
/* Base box */
.dashboard-box-item {
    transition: all 0.4s ease-in-out; /* smooth for all changes */
    border: 2px solid #ccc;           /* initial border color */
    border-radius: 12px;              /* initial rounded corners */
    box-shadow: 0 0 5px rgba(0,0,0,0.05);
}

/* Hover effects */
.dashboard-box-item:hover {
    transform: scale(1.05);           /* zoom in */
    box-shadow: 0 0 20px rgba(0,0,0,0.2); /* glow */
    border-color: #ff6a00;            /* border color change */
    border-radius: 25px;              /* increase roundness smoothly */
}

/* Optional: animated gradient border */
.dashboard-box-item.hover-gradient-border {
    border: 2px solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(45deg, #ff9a9e, #fad0c4, #5ee7df);
}

.dashboard-box-item.hover-gradient-border:hover {
    border-image-source: linear-gradient(45deg, #ff6a00, #ffecd2, #667eea);
}

.transition-box-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Transition Box */
.transition-box-card {
    transition: all 0.3s ease;
}

/* Image wrapper */
.dashboard-box-item .icon-wrapper img {
    transition: all 0.4s ease-in-out; /* smooth transition for image */
    transform: rotate(0deg) scale(1);
}

/* Image hover (when parent box is hovered) */
.dashboard-box-item:hover .icon-wrapper img {
    transform: rotate(-10deg) scale(1.2); /* rotate and zoom image */
}

/* Optional: shadow/glow for image */
.dashboard-box-item:hover .icon-wrapper img {
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    border-radius: 50%; /* circular image effect */
}

/* ---------- Box Text ---------- */
.dashboard-box-item h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #333;                  /* default text color */
    transition: all 0.4s ease-in-out;
    position: relative;
}

/* Hover effect for text (parent box hover) */
.dashboard-box-item:hover h6 {
    color: #ff6a00;               /* text color change */
    transform: scale(1.05);       /* slight zoom */
}

/* Optional: Animated Gradient Text */
.dashboard-box-item h6.gradient-text {
    background: linear-gradient(45deg, #ff9a9e, #fad0c4, #5ee7df);
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientAnimation 3s ease infinite;
}

/* Keyframes for gradient animation */
@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
