 /* Global Styles */
 * {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  background-color: #0b0b1f;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding-top: 70px;
  /* width: 100vw; */
  /* padding-left: 1%; */
}

/* Navbar */
.nav {
  justify-content: center;
}

.navbar {
  background-color: #1e3a8a;
  /* padding: 0.7rem 4rem; */
  width: 100%;
  position: fixed;
  top: 0;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
  z-index: 1000;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.8rem;
  color: #fff;
}

.nav-link {
  color: #ffffff;
  font-weight: 500;
  margin: 0 5px;
  transition: all 0.3s;
  cursor: pointer;
}

.nav-link:hover {
  color: #60a5fa;
  transform: translateY(-2px);
}

/* Hero Slider */
.hero-section {
  height: 70vh;
  position: relative;
  overflow: hidden;
  width: 100%;
  

}

.carousel-item {
  height: 100vh;
  background-size:cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
}

.carousel-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

/* Cards */
.profiles-heading {
  font-size: 2.2rem;
  color: #3b82f6;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 700;   
  text-shadow: 0 0 5px rgba(96, 165, 250, 0.5);
}

.card {
  background: linear-gradient(145deg, #1e1e3b, #2d3b55);
  border: 2px solid #3b82f6;
  border-radius: 1.2rem;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 0 15px rgba(96, 165, 250, 0.3);
  height: 450px;
  width: 100%;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(37, 99, 235, 0.6);
}

.card-img-container {
  position: relative;
  overflow: hidden;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2d3b55;
  y: 0%;
  background-position: 0 0;
  
}

.card-img-top {
  width: 100%;
  height: 100%;
  
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-img-top {
  transform: scale(1.05);
}

.verified-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: #2563eb;
  color: white;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 3px 10px;
  border-radius: 20px;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 4px;
}

.card-body {
  padding: 1.2rem;
  background-color: #1e1e3b;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100% - 800px);
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #3b82f6;
  margin-bottom: 0.5rem;
}

.card-text {
  color: #d1d5db;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.stars {
  color: #facc15;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.btn-container {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.contact-btn {
  flex: 1;
  font-weight: 600;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.btn-whatsapp {
  background-color: #25D366;
  border: none;
  color: white;
}

.btn-whatsapp:hover {
  background-color: #1ea855;
  transform: translateY(-2px);
}

.btn-call {
  background-color: #2563eb;
  border: none;
  color: white;
}

.btn-call:hover {
  background-color: #1e40af;
  transform: translateY(-2px);
}

/* Footer */
footer {
  background-color: #2563eb;
  padding: 2rem 0;
  color: white;
  text-align: center;
  margin-top: 3rem;
  width: 100%;
}

.footer-links a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
  transition: all 0.3s;
  font-size: 1rem;
}

.footer-links a:hover {
  color: #93c5fd;
}

/* Content Styling */
.content-section {
  /* margin: 3rem 0; */
  padding: 0 15px;
  width: 100%;
  margin-top: 50px;
}

.content-section h1 {
  font-size: 2.5rem;
  color: #3b82f6;
  text-align: center;
  margin-bottom: 1.5rem;
  font-weight: 700;

}

.content-section h2, h3 {
  font-size: 2rem;
  color: #3b82f6;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.content-section p {
  font-size: 1.1rem;
  color: #d1d5db;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.content-section ul {
  list-style-type: disc;
  padding-left: 20px;
  color: #d1d5db;
}

.content-section ul li {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.price-table {
  background-color: #1e1e3b;
  padding: 1.5rem;
  border-radius: 1rem;
  margin: 2rem 0;
  width: 100%;
}

.price-table table {
  width: 100%;
  color: #d1d5db;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid #3b82f6;
}

.price-table th {
  color: #3b82f6;
  font-weight: 600;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .content-section h1 {
      font-size: 2.2rem;
  }

  .content-section h2 {
      font-size: 1.8rem;
  }

  .hero-section, .carousel-item {
      height: 60vh;
  }

  .card {
      height: 380px;
  }

  .card-img-container {
      height: 300px;
  }
}

@media (max-width: 991px) {
  .content-section h1 {
      font-size: 2rem;
  }

  .content-section h2 {
      font-size: 1.6rem;
  }

  .hero-section, .carousel-item {
      height: 60vh;
  }

  .card {
      height: 360px;
  }

  .card-img-container {
      height: 300px;
  }
}

@media (max-width: 767px) {
  .content-section h1 {
      font-size: 1.8rem;
  }

  .content-section h2 {
      font-size: 1.5rem;
  }

  .content-section p,
  .content-section ul li {
      font-size: 1rem;
  }

  .hero-section, .carousel-item {
      height: 60vh;
  }

  .card {
      height: 340px;
  }

  .card-img-container {
      height: 300px;
  }

  .profiles-container .row {
      --bs-gutter-x: 1rem;
  }

  .profiles-container .col-6 {
      flex: 0 0 auto;
      width: 50%;
  }

  .navbar-brand {
      font-size: 1.6rem;
  }

  .nav-link {
      font-size: 1rem;
  }
}

@media (max-width: 575px) {
  
  .navbar-brand {
      font-size: 1.4rem;
  }

  .nav-link {
      font-size: 0.9rem;
  }

  .profiles-heading {
      font-size: 1.8rem;
  }

  .card-title {
      font-size: 1.2rem;
  }

  .card-text,
  .stars {
      font-size: 0.85rem;
  }

  .contact-btn {
      font-size: 0.8rem;
      padding: 0.35rem;
      margin-bottom: 10px;
  }

  .content-section h1 {
      font-size: 1.5rem;
  }

  .content-section h2 {
      font-size: 1.3rem;
  }

  .content-section p,
  .content-section ul li {
      font-size: 0.9rem;
  }

  .price-table th,
  .price-table td {
      font-size: 0.8rem;
      padding: 0.5rem;
  }

  .hero-section, .carousel-item {
      height: 20vh;
  }

  .card {
      height: 320px;
  }

  .card-img-container {
      height: 300px;
  }

  .card-body {
      /* height: 200px; */
  }
}

@media (max-width: 400px) {
  .hero-section, .carousel-item {
      height: 20vh;
  }
  .btn-container {
    display: flow-root;
  }

  .card {
      height: 300px;
  }

  .card-img-container {
      height: 300px;
  }


  .card-body {
      height: 18 0px;
  }

  .content-section {
      padding: 0 10px;
  }
}
.gallery-container {
  /* font-family: 'Poppins', sans-serif; */
  margin: 0 auto  ;
  padding: 0 15px 50px;
}
.gallery-item {
  padding: 0 15px;
}
.gallery-box {
  background-color: #1e1e3b;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.gallery-img-wrapper {
  aspect-ratio: 3/4;
  overflow: hidden;
  background-color: #1e1e3b;
}
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-box:hover .gallery-img {
  transform: scale(1.05);
}
.gallery-info {
  padding: 1.5rem;
  text-align: center;
  background-color: #1e1e3b ;

}
.gallery-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 0.5rem;
}
.gallery-text {
  font-size: 1rem;
  color: #555;
  margin: 0;
}
.highlight {
  color: red;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 992px) {
  .gallery-item {
      flex: 0 0 50%;
      max-width: 50%;
  }
  .gallery-title {
      font-size: 1.1rem;
  }
  .gallery-text {
      font-size: 0.9rem;
  }
  .gallery-img-wrapper {
      aspect-ratio: 3/4;
  }
}
@media (max-width: 576px) {
  .gallery-item {
      flex: 0 0 100%;
      max-width: 100%;
  }
  .gallery-box {
      margin: 0 auto;
      max-width: 350px;
  }
  .gallery-img-wrapper {
      aspect-ratio: 3/4;
  }
  .gallery-title {
      font-size: 1rem;
  }
  .gallery-text {
      font-size: 0.85rem;
  }
}
@media (min-width: 1200px) {
  .gallery-box {
      max-width: 400px;
      margin: 0 auto;
  }
}


.highlight {
  color: rgb(229, 255, 0);
  font-weight: bold;
}


/* Fixed position buttons */
.fixed-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fixed-buttons .btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s;
}

.fixed-buttons .btn-whatsapp {
  background-color: #25D366;
}

.fixed-buttons .btn-call {
  background-color: #007bff;
}

.fixed-buttons .btn:hover {
  transform: scale(1.1);
}

.highlight {
  color: rgb(229, 255, 0);
  font-weight: bold;
}


/* Fixed position buttons */
.fixed-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fixed-buttons .btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s;
}

.fixed-buttons .btn-whatsapp {
  background-color: #25D366;
}

.fixed-buttons .btn-call {
  background-color: #007bff;
}

.fixed-buttons .btn:hover {
  transform: scale(1.1);
}

p a {
  color: #0b0b1f;
}