<<<<<<< HEAD
/* Modern Profile Page Styling */
body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #a1c4fd, #c2e9fb);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Container */
.container {
    width: 420px;
    background: #df6e6e;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.7s ease-in-out;
    text-align: center;
}

/* Heading */
.container h2 {
    font-size: 26px;
    font-weight: bold;
    color: #222;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

/* User Info */
.user-info {
    margin: 20px 0;
    font-size: 16px;
    color: #555;
}

/* Buttons / Links */
.profile-links {
    margin-top: 25px;
}

.profile-links a {
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 10px;
    margin: 0 10px;
    transition: all 0.3s ease-in-out;
    color: #fff;
}

.profile-links .btn-home {
    background: #007bff;
}

.profile-links .btn-home:hover {
    background: #0056b3;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.profile-links .btn-logout {
    background: #dc3545;
}

.profile-links .btn-logout:hover {
    background: #a71d2a;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

/* Smooth fade animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
=======

body.profile-page {
  background: radial-gradient(circle at top, #2a1e47, #181326);;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  color: #111;
}


.profile-wrapper {
  max-width: 1200px;
  margin: 1rem auto 2rem auto; 
  background: rgba(255, 255, 255, 0.10);
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  padding: 2rem;
  backdrop-filter: blur(12px);
}

.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

/* Right Block */
.right-block {
  flex: 0 0 30%;
  background: #fff;
  padding: 0.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  position: relative;
  height: 520px;
  overflow: hidden;
}

.mySwiper {
  width: 100%;
  flex: 1;
  margin-bottom: 20px;
}

.mySwiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  overflow: hidden;
}

.mySwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: fill !important;  
  border-radius: 12px;
  transition: transform 0.3s ease-in-out;
}

.mySwiper .swiper-button-next,
.mySwiper .swiper-button-prev {
  color: cadetblue;
}

.mySwiper .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.6;
}

.mySwiper .swiper-pagination-bullet-active {
  background: #9333ea;
  opacity: 1;
}

/* Thumbnails as Swiper */
.swiper-thumbnails {
  width: 100%;
  margin-top: 10px;
}

.swiper-thumbnails .swiper-slide {
  width: auto;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-thumbnails .thumb {
  width: 75px;
  height: 75px;
  object-fit: cover;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid #ccc;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#thumbSwiper {
  position: relative;
}

#thumbSwiper .extra-count {
  position: absolute;
  right: 0;
  top: 0;
  width: 75px;
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 24px;
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
}

.swiper-thumbnails .extra-count:hover {
  transform: scale(1.1);
  box-shadow: 0 0 8px rgba(147, 51, 234, 0.7);
}
.swiper-thumbnails .thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 0 8px rgba(147, 51, 234, 0.7);
}

.left-block {
  flex: 0 0 60%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.profile-info-inline {
  display: flex;
  align-items: center; 
  gap: 2rem;
  flex-wrap: wrap; 
}

.profile-img-container {
  flex-shrink: 0; 
  width: 240px;
  height: 240px;
  border-radius: 50%;
  margin-left: 30%;
  overflow: hidden;
  box-shadow: 0 0 35px rgb(140, 255, 255);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-img-container:hover {
  transform: scale(1.05);
  box-shadow: 0 0 45px rgb(139, 182, 255);
}

.profile-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.info-card h3 {
  color: #7e22ce;
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.info-card p {
  margin: 0.4rem 0;
}

.match-bar {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  height: 8px;
  overflow: hidden;
  margin-top: 5px;
}

.match-bar .progress {
  height: 100%;
  background: linear-gradient(90deg, #f472b6, #9333ea);
}

.match-text {
  color: #ec4899;
  font-weight: 500;
}

.floating-buttons {
  position: fixed;
  top: 560px;
  left: 40px;
  display: flex;
  gap: 15px;
  z-index: 1000;
}

.floating-buttons button {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #f472b6, #ec4899);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-buttons button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
  .content-wrapper {
    flex-direction: column;
  }

  .right-block,
  .left-block {
    width: 100%;
  }

  .profile-img-container {
    width: 180px;
    height: 180px;
    margin: 0 auto;
  }

  .profile-info-inline {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
/* 📱 Tablet view (768px and below) */
@media (max-width: 768px) {
  .profile-wrapper {
    padding: 1.5rem;
  }

  .content-wrapper {
    flex-direction: column;
    gap: 1.5rem;
  }

  .left-block,
  .right-block {
    flex: 1 1 100%;
    width: 100%;
  }

  .mySwiper {
    height: 350px; /* reduce height for smaller screens */
    margin-bottom: 15px;
  }

  .mySwiper .swiper-slide img {
    object-fit: cover; /* keeps proportion, avoids stretching */
  }

  .swiper-thumbnails {
    gap: 8px;
    padding-bottom: 40px;
  }

  .swiper-thumbnails img.thumb {
    width: 65px;
    height: 65px;
  }

  .mySwiper .swiper-button-next,
  .mySwiper .swiper-button-prev {
    display: none; /* optional: hide arrows on tablet */
  }

  .profile-img-container {
    width: 160px;
    height: 160px;
    margin: 0 auto;
  }

  .info-card {
    padding: 1.2rem;
  }

  .floating-buttons {
    top: auto;
    bottom: 30px;
    left: 20px;
    gap: 10px;
  }

  .floating-buttons button {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

/* 📱 Mobile view (480px and below) */
@media (max-width: 480px) {
  body.profile-page {
    background: radial-gradient(circle at top, #2a1e47, #181326);
    padding: 0 10px;
  }

  .profile-wrapper {
    margin: 1rem auto;
    padding: 1rem;
    border-radius: 10px;
  }

  .profile-img-container {
    width: 130px;
    height: 130px;
  }

  .profile-info-inline {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .mySwiper {
    height: 280px;
  }
  .info-card {
    padding: 1rem;
  }

  .info-card h3 {
    font-size: 16px;
  }

  .info-card p {
    font-size: 13px;
  }

  .mySwiper {
    height: 250px; 
    margin-bottom: 10px;
  }

  .mySwiper .swiper-slide img {
    object-fit: cover; 
    border-radius: 10px;
  }

  .swiper-thumbnails {
    gap: 20px;
    padding-bottom: 10px;
  }

  .swiper-thumbnails img.thumb {
    width: 80px;
    height: 80px;
  }

  .mySwiper .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
  }

  .floating-buttons {
    position: fixed;
    top: 445px;
    left: 50%;
    transform: translateX(-50%);
    gap: 12px;
  }

  .floating-buttons button {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  .match-text {
    font-size: 14px;
  }
>>>>>>> be8a9c60c6a7058bb718895ca3f39a8d200eef8d
}
