@import '../css/assets.css?v=2';
@import '../css/typography.css?v=2';
@import '../css/shortcodes/shortcodes.css?v=2';
@import '../css/style.css?v=2';
@import '../css/color/color-1.css?v=2';
@import '../vendors/revolution/css/layers.css?v=2';
@import '../vendors/revolution/css/settings.css?v=2';
@import '../vendors/revolution/css/navigation.css?v=2';
@import '../css/slidecustom.css?v=2';
@import '../css/buttonchat.css?v=2';
@import url('https://cdn.datatables.net/1.12.1/css/dataTables.bootstrap4.min.css');
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.4.0/font/bootstrap-icons.css');

figure.image {
    text-align: center;
}

figure img {
    max-width:100%;
    height:auto;
}

/* header-wrapper Styles */
.header-wrapper{
    .section-title {
        font-size: 2rem;
        font-weight: 600;
        color: #0B1340;
        margin: 0;
        position: relative;
        text-transform: uppercase;
        letter-spacing: 1px;
        line-height: 1.2;
    }

    .title-underline {
        width: 100px;
        height: 4px;
        background: linear-gradient(45deg, #0B1340, #1a237e);
        margin: 1rem 0;
        border-radius: 2px;
    }

    .section-description {
        font-size: 1.1rem;
        color: #4a4a4a;
        line-height: 1.6;
        max-width: 800px;
        position: relative;
        padding-left: 15px;
        border-left: 2px solid rgba(11, 19, 64, 0.2);
    }
}

/* Blog Section Styles */
.blog-section {
    .blog-card {
      border: none;
      border-radius: 8px;
      overflow: hidden;
      background: white;
      transition: all 0.3s ease;
      
      &:hover {
        transform: translateY(-5px);
      }
  
      .h5,
      .h6 {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
        text-overflow: ellipsis;
        font-weight: 400;
        font-size: 14px;
        color: #000000;
      }
    }
  
    .popular-post {
      transition: all 0.3s ease;
  
      &:hover {
        background-color: #f8f9fa;
      }
    }

    .popular-post a {
      text-decoration: none;
      color: #000000;
    }
  
    .categories {
      display: flex;
      align-items: center;
      gap: 5px;
    }
  
    .category-tag {
      background-color: #f0f4f8;
      padding: 2px 8px;
      border-radius: 4px;
      font-size: 11px;
      color: #0056b3;
      transition: all 0.2s ease;
  
      &:hover {
        background-color: #e0e7ff;
      }
    }
  
    .news-description {
      font-size: 13px;
      color: #666;
      margin: 8px 0;
      line-height: 1.5;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
}

/* Blog Components Styles */
.blog-components {
  /* Card Blog Styles */
  .placeholder-svg {
    width: 100%;
    height: auto;
    aspect-ratio: 1200/690;
    border-radius: 5px;
    background-color: #f0f0f0;
    transition: all 0.3s ease;
    
    &:hover {
      background-color: #e0e0e0;
    }
  }

  .imgbrt {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    /* height: 120px; */
  }

  .news-item {
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 8px;
    
    &:hover {
      background-color: #f8f9fa;
      transform: translateX(5px);
    }
  }

  .news-content {
    border-bottom: 2px solid #F6F6F6;
    padding-bottom: 15px;
  }

  .news-title {
    font-size: 15px;
    color: #333;
    text-decoration: none;
    font-weight: 400;
    line-height: 1.4;
    display: block;
    margin: 5px 0;
    
    &:hover {
      color: #0056b3;
    }
  }

  .news-description {
    font-size: 13px;
    color: #666;
    margin: 8px 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .news-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #777;
    margin-top: 8px;
  }

  .category-tag {
    background-color: #f0f4f8;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    color: #0056b3;
    transition: all 0.2s ease;
    
    &:hover {
      background-color: #e0e7ff;
    }
  }

  @media (max-width: 576px) {
    .imgbrt {
      height: auto !important;
    }
  }
}

/* Feature Section Styles */
.feature-wrapper {
  .feature-section {
    position: relative;
    
    &::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0,0,0,0.7);
      z-index: 0;
    }
  }

  .feature-container {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    
    &:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.2);
      background: rgba(255,255,255,0.15);
    }
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(247,178,5,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }

  .container {
    position: relative;
    z-index: 1;
  }

  .icon-content {
    position: relative;
    z-index: 1;
  }
}

/* Counter Section Styles */
.counter-wrapper {
  .counter-box {
    padding: 30px 15px;
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    text-align: center;
    
    &:hover {
      transform: translateY(-5px);
      background: rgba(255,255,255,0.15);
      box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }
  }

  .counter-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
    color: #fff;
  }

  .count-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
  }
}

/* Social Media Section Styles */
.social-media-section {
  background-color: #ffffff;
  
  .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0B1340;
    margin: 1rem 0;
    position: relative;
  }

  .social-icons-wrapper {
    padding: 2rem 0;
    gap: 2rem;
  }

  .social-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    
    &:hover {
      transform: translateY(-5px);
      
      .social-name {
        color: #1a237e;
      }
    }
  }

  .social-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 0.5rem;
  }

  .social-name {
    font-size: 0.9rem;
    color: #0B1340;
    margin-top: 0.5rem;
    font-weight: 500;
  }

  .title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #0B1340, #1a237e);
    margin: 1rem auto;
    border-radius: 2px;
  }

  .section-description {
    font-size: 1.1rem;
    color: #4a4a4a;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
  }

  /* Responsive styles */
  @media (max-width: 768px) {
    .social-icons-wrapper {
      justify-content: center;
      gap: 1.5rem;
    }
    
    .social-icon {
      width: 50px;
      height: 50px;
    }
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .feature-section {
    .col-lg-3 {
      width: 50%;
    }
    
    .feature-container {
      padding: 20px;
    }
  }
}

@media (max-width: 576px) {
  .feature-section {
    .col-lg-3 {
      width: 100%;
    }
  }
}

/* Feature1 Component Styles */
.feature1-component {

    .our-story {
      position: relative;
      overflow: hidden;
    }

    .our-story::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(45deg, rgba(0,0,0,0.02) 0%, rgba(255,255,255,0.1) 100%);
      z-index: 0;
    }

    .video-bx {
      position: relative;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
    }

    .video-bx:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    }

    .video-bx img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: all 0.5s ease;
    }

    .video-bx:hover img {
      transform: scale(1.05);
    }

    .heading-bx h2 {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      position: relative;
      padding-bottom: 1rem;
    }

    .heading-bx h2::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 60px;
      height: 3px;
      background: #f7b205;
      border-radius: 3px;
    }

    .heading-bx {
      padding: 1rem;
    }

    .heading-bx p {
      font-size: 1.1rem;
      line-height: 1.8;
      color: #505050;
      padding: 0 15px;
    }

    .heading-bx p ul {
      padding-left: 2rem;
      margin: 1rem 0;
    }

    .heading-bx p li {
      margin-bottom: 0.5rem;
      list-style-position: inside;
      padding-right: 15px;
    }

    @media (max-width: 768px) {
      .heading-bx h2 {
        font-size: 2rem;
        padding: 0 15px;
      }
      
      .heading-bx p {
        padding: 0 15px;
        margin-bottom: 2rem;
      }

      .p-lr {
        padding: 2rem 15px;
      }

      .container {
        padding-left: 15px;
        padding-right: 15px;
      }

      .heading-bx p ul {
        padding-left: 1rem;
      }

      .heading-bx p li {
        padding-right: 10px;
        word-wrap: break-word;
      }
    }

}