/* Global Styles */
:root {
    --primary: #5808E3;
    --secondary: #6c757d;
    --warning: #ffc107;
    --dark: #1e2a39;
    --light: #f8f9fa;
  }
  
  body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
  }
  
  /* Header & Navigation */
  header {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .navbar-brand img {
    height: 40px;
  }
  
  .nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    color: #333 !important;
  }
  
  .nav-link.active {
    color: var(--primary) !important;
  }
  
  /* Hero Section */
  .hero-section {
    background-image: url("/assets/new-images/banner.jpg");
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
  }
  
  .hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
  }
  
  .stats-row {
    position: relative;
    z-index: 2;
    margin-top: 50px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .stat-item h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }
  
  /* Services Section */
  .services-section {
    padding: 80px 0;
  }
  
  .service-card {
    background: #fff;
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 100%;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .icon-box {
    width: 80px;
    height: 80px;
    background: #f0f4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }
  
  /* About Section */
  .about-section {
    padding: 80px 0;
  }
  
  .about-content h2 {
    font-size: 2.5rem;
  }
  
  /* Projects Section */
  .projects-section {
    padding: 80px 0;
  }
  
  .project-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .project-content {
    border-radius: 0 0 8px 8px;
  }
  
  .pagination-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ddd;
    border-radius: 50%;
    margin: 0 5px;
  }
  
  .pagination-dot.active {
    background: var(--warning);
  }
  
  /* Testimonials Section */
  .testimonials-section {
    padding: 80px 0;
  }
  
  .testimonial-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    height: 100%;
  }
  
  .quote-mark {
    font-size: 4rem;
    line-height: 1;
    font-family: Georgia, serif;
    opacity: 0.8;
  }
  
  .testimonial-card .quote-mark {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 3rem;
  }
  
  /* Contact Section */
  .contact-section {
    background-image: url("/assets/new-images/banner.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 100px 0;
  }
  
  .contact-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
  }
  
  .contact-section .container {
    z-index: 2;
  }
  
  /* Blog Section */
  .blog-section {
    padding: 80px 0;
  }
  
  .blog-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background: #fff;
    height: 100%;
  }
  
  .blog-img {
    overflow: hidden;
  }
  
  .blog-img img {
    transition: transform 0.3s ease;
  }
  
  .blog-card:hover .blog-img img {
    transform: scale(1.05);
  }
  
  /* Footer */
  .footer-section {
    background-color: var(--dark);
    padding: 80px 0 40px;
  }
  
  .footer-section h5 {
    font-weight: 600;
    margin-bottom: 20px;
  }
  
  .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
  }
  
  .social-icons a:hover {
    background: var(--primary);
  }
  
  /* Responsive Adjustments */
  @media (max-width: 991px) {
    .hero-section {
      min-height: auto;
      padding: 150px 0 80px;
    }
  
    .about-content {
      padding-left: 0;
      margin-top: 40px;
    }
  }
  
  @media (max-width: 767px) {
    .stat-item {
      margin-bottom: 30px;
    }
  
    .service-card,
    .testimonial-card,
    .blog-card {
      margin-bottom: 30px;
    }
  }
  
.projects-section .swiper{
  padding: 50px 0;
  .swiper-wrapper{
    .swiper-slide{
      .content-area{
        padding: 20px;
        background: #FFFFFF !important;
        a{
        font-size: 18px;
        font-weight: 600;
        color: #333;
        text-decoration: none;
      }
    }
    }
  }
}