/*
Template Name: BizMax
�������أ�http://www.bootstrapmb.com
Version: 1.0.0
*/
/*=================================
    CSS Index Here
==================================*/
/*

01. Theme Base
    1.1. Mixin
    1.2. Function
    1.3. Variable
    1.4. Typography
    1.5. Extend
    1.7. Wordpress Default
02. Reset
    2.1. Container
    2.2. Grid
    2.3. Input
    2.4. Slick Slider
    2.5. Mobile Menu
03. Utilities
    3.1. Preloader
    3.2. Buttons
    3.3. Titles
    3.4. Common
    3.6. Font
    3.7. Background
    3.8. Text Color
    3.9. Overlay
    3.10. Animation
04. Template Style
    4.1. Widget
    4.2. Header
    4.3. Footer
    4.4. Breadcumb
    4.5. Pagination
    4.6. Blog
    4.7. Comments
    4.8. Hero Area
    4.9. Error    
    4.10. Feature
    4.11. About
    4.12. Service
    4.13. Counter
    4.14. Team
    4.15. Process
    4.16. Accordion
    4.17. Simple Sections
    4.18. Testimonial
    4.19. Popup Side Menu
    4.20. Price Plan
    4.21. Forms Style
    4.22. Projects
    4.23. Contact
05. Spacing

*/
/*=================================
    CSS Index End
==================================*/
/*=================================
   01. Theme Base
==================================*/
/*------------------- 1.1. Mixin -------------------*/
/*------------------- 1.2. Function -------------------*/
/*------------------- 1.3. Variable-------------------*/
  .vs-pagination {
      margin: 40px 0;
  }
  .pagination-list {
      display: flex;
      justify-content: center;
      align-items: center;
      list-style: none;
      padding: 0;
      margin: 0;
  }
  .pagination-list li {
      margin: 0 5px;
  }
  .pagination-list li a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 8px;
      background: #f5f5f5;
      color: #333;
      text-decoration: none;
      transition: all 0.3s ease;
  }
  .pagination-list li a:hover {
      background: #e9ecef;
  }
  .pagination-list li a.active {
      background: #007bff;
      color: white;
  }
  .pagination-list li .dots {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #666;
  }
  .prev-page, .next-page {
      background: #fff !important;
      border: 1px solid #ddd;
  }
  .pagination-info {
      color: #666;
      font-size: 14px;
  }
  @media (max-width: 576px) {
      .pagination-list li a {
          width: 35px;
          height: 35px;
      }
      .pagination-list li {
          margin: 0 2px;
      }
  }

/* Privacy Page Styles */
.privacy-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.privacy-section h4 {
    color: #2b2f4c;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.privacy-section h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #007bff;
}

.privacy-box {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

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

.privacy-box h6 {
    color: #2b2f4c;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-left: 25px;
    position: relative;
}

.privacy-box h6:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    background: #007bff;
    border-radius: 50%;
}

.privacy-box p {
    color: #6c757d;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.privacy-box .text-muted {
    padding-left: 20px;
    position: relative;
}

.privacy-box .text-muted i {
    color: #28a745;
    position: absolute;
    left: 0;
    top: 5px;
}

.privacy-box ul {
    list-style: none;
    padding-left: 0;
}

.privacy-box ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.privacy-box ul li:before {
    content: '•';
    color: #007bff;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -2px;
}

@media (max-width: 768px) {
    .privacy-section {
        padding: 40px 0;
    }
    
    .privacy-box {
        padding: 20px;
    }
    
    .privacy-section h4 {
        font-size: 24px;
    }
    
    .privacy-box h6 {
        font-size: 18px;
    }
}

/* Team Section Styles */
.team-section {
    background-color: #f8f9fa;
}

.team-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.member-image {
    position: relative;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.member-image .social-links {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background: rgba(0,123,255,0.9);
    padding: 15px 0;
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover .social-links {
    bottom: 0;
}

.social-links a {
    color: #ffffff;
    margin: 0 10px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #f8f9fa;
    transform: scale(1.2);
}

.member-info {
    padding: 20px;
    text-align: center;
}

.member-info h4 {
    color: #2b2f4c;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.member-info p {
    color: #007bff;
    font-size: 16px;
    margin-bottom: 10px;
}

.member-info span {
    color: #6c757d;
    font-size: 14px;
    display: block;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .member-image img {
        height: 250px;
    }
    
    .member-info h4 {
        font-size: 18px;
    }
    
    .member-info p {
        font-size: 14px;
    }
    
    .member-info span {
        font-size: 12px;
    }
}


