




:root {
  --primary-color: #007bff;
  --text-white: #ffffff;
}

.swiper {
  width: 100%;
  height: 500px; /* Desktop height */
  border-radius: 15px;
  overflow: hidden;
}

.swiper-slide {
  overflow: hidden;
  position: relative;
}

.slide-content {
  width: 100%;
  height: 100%;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 5s linear; /* Smooth Zoom duration */
}

/* Active slide par zoom effect */
.swiper-slide-active img {
  transform: scale(1.2);
}

.overlay {
  position: absolute;
  bottom: 10%;
  left: 5%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 12px;
  color: var(--text-white);
  max-width: 450px;
  border-left: 5px solid var(--primary-color);
  z-index: 10;
}

.overlay h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .swiper { height: 350px; }
  .overlay {
    width: 80%;
    padding: 15px;
  }
  .overlay h2 { font-size: 1.4rem; }
}


:root {
    --primary: #007bff;
    --dark: ;
    --light-bg: #f9f9f9;
    --text: #444;
}

.service-article {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color:yellow;
    line-height: 1.7;
}

.article-header h1 {
    color: var(--dark);
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.table-of-contents {
    background: var(--light-bg);
    padding: 15px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 4px solid var(--primary);
}

.table-of-contents ul {
    display: flex;
    gap: 15px;
    list-style: none;
    padding: 0;
    flex-wrap: wrap;
}

.table-of-contents a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
}

.content-block h2 {
    color: red;
    margin-top: 40px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.feature-card {
    background: #fff;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 10px;
    transition: 0.3s;
}

.feature-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.cta-button {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
}

/* Mobile Friendly Styles */
@media (max-width: 600px) {
    .article-header h1 { font-size: 1.8rem; }
    .service-article { padding: 15px; }
    
}

h3{
    color: red;
}

