@charset "UTF-8";

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/

body {
      margin: 0;
      font-family: 'Inter', sans-serif;
      line-height: 1.6;
      color: #333;
      background: #f9f9f9;
    }

/* ===========================
   Hero Section
=========================== */
.about_svap-hero {
  position: relative;
  background: linear-gradient(rgba(13, 71, 161, 0.6), rgba(0, 150, 136, 0.5)),url('/images/svappharma_about-banners.webp') no-repeat center center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.svap-hero::after {
  content: "";
  position: absolute;
  top:0;left:0;right:0;bottom:0;
  background: rgba(0,0,0,0.55);
}
.about_svap-hero .about_svap-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.about_svap-hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  animation: fadeDown 1s ease-out;
  color: #fff;
}
.about_svap-hero p {
  font-size: 1.2rem;
  animation: fadeUp 1.3s ease-out;
}

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

/* ===========================
   About Section
=========================== */
.svap-about {
  display: flex;
  padding: 60px 10%;
  background: #fff;
  align-items: center;
}
.svap-about-text,
.svap-about-image {
  flex: 1;
}
.svap-about-text {
  font-size: 1rem;
  line-height: 1.6;
}
.svap-about img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  transition: transform .3s ease;
}
.svap-about img:hover {
  transform: scale(1.05);
}

.svap-about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #007bff;
}
/* ✅ Laptop/Desktop only gap */
@media (min-width: 769px) {
  .svap-about {
    gap: 2rem;   /* text & image ke bich ka gap */
  }
}
/* Mobile responsive */
@media (max-width: 768px) {
  .svap-about {
    flex-direction: column;   /* stack on small screens */
    text-align: left;
    justify-content: center;
  }
  .svap-about-image {
    margin-top: 20px;
  }
}


/* ===========================
   Mission & Vision
=========================== */
.svap-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 60px 10%;
  background: #f3f7fc;
  gap: 20px;
}
.svap-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  flex: 1 1 300px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform .3s, box-shadow .3s;
}
.svap-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.svap-card i {
  font-size: 40px;
  color: #007bff;
  margin-bottom: 15px;
  transition: transform .3s;
}
.svap-card:hover i {
  transform: rotate(15deg) scale(1.2);
}

/* ===========================
   Core Values
=========================== */
.svap-values {
  padding: 60px 10%;
  text-align: center;
}
.svap-values h2 {
  margin-bottom: 40px;
  font-size: 2rem;
  color: #1a2533;
}
.svap-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.svap-value-item {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.svap-value-item:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.svap-value-item i {
  font-size: 35px;
  color: #007bff;
  margin-bottom: 15px;
}

/* ===========================
   Team Section
=========================== */
.svap-team {
  padding: 60px 10%;
  background: #f3f7fc;
  text-align: center;
}
.svap-team h2 {
  margin-bottom: 40px;
  color: #007bff;
}
.svap-team-members {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.svap-member {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  width: 250px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform .3s, box-shadow .3s;
}
.svap-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.svap-member img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  transition: transform .3s;
}
.svap-member:hover img {
  transform: scale(1.1);
}
.svap-member h5 {
  margin: 10px 0 5px;
}
.svap-member p {
  font-size: 0.9rem;
  color: #666;
}

    /* Feature Product */
.product-swiper {
    width: 100%;
    padding: 20px 10px 50px;
}

.product-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card .price {
    font-weight: bold;
    color: #1a5f7a;
    font-size: 1.1rem;
    margin: 10px 0;
}

.swiper-button-next, .swiper-button-prev {
    color: #1a5f7a;
}

.swiper-pagination-bullet-active {
    background: #1a5f7a;
}

/* Fix for swiper buttons */
.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 24px;
    font-weight: bold;
}
