/* ===== PINK THEME - GLOBAL STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #db3131;
  text-align: justify;
  overflow-x: hidden;
  max-width: 100%;
  word-wrap: break-word;
  word-break: break-word;
}

ul{
      margin: 20px;
}

h3, h2, ul{
  color: #fff;
}

.internal-link{
    color: #edff00;
    text-decoration: none;
    font-weight: bold;
}
/* ===== BACKGROUND UTILITY CLASSES ===== */
.bg-light {
  background: #ff0e0e;
}

.bg-dark {
  background: #ad2121;
}

/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #ff5252 0%, #d32f2f 100%);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(255, 82, 82, 0.3);
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}

.header-contact-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.header-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  color: #fff;
  border: none;
}

.header-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.header-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.email-btn {
  background: linear-gradient(135deg, #2196F3 0%, #1565C0 100%);
  box-shadow: 0 4px 12px rgba(33, 150, 243, 0.4);
}

.email-btn:hover {
  background: linear-gradient(135deg, #1976D2 0%, #0D47A1 100%);
  box-shadow: 0 6px 16px rgba(33, 150, 243, 0.5);
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn:hover {
  background: linear-gradient(135deg, #20BA5A 0%, #0E6D56 100%);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
}

.call-btn {
  background: linear-gradient(135deg, #ffa487 0%, #8b3114 100%);
  box-shadow: 0 4px 12px rgba(255, 87, 34, 0.4);
}

.call-btn:hover {
  background: linear-gradient(135deg, #F4511E 0%, #BF360C 100%);
  box-shadow: 0 6px 16px rgba(255, 87, 34, 0.5);
}

/* Old nav links - keeping for compatibility */
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ffe0e0;
}

.hamburger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
}

/* ===== MARQUEE ===== */
.marquee-section {
  background: linear-gradient(135deg, #ff5252, #d32f2f);
  padding: 1rem 0;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.marquee-section::before,
.marquee-section::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.marquee-section::before {
  left: 0;
  background: linear-gradient(to right, #ff5252, transparent);
}

.marquee-section::after {
  right: 0;
  background: linear-gradient(to left, #ff5252, transparent);
}

.marquee-container {
  width: 100%;
  overflow: hidden;
}

.marquee-content {
  display: flex;
  animation: marquee 13s linear infinite;
  white-space: nowrap;
}

.marquee-content:hover {
  animation-play-state: paused;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  padding: 0 3rem;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ===== SLIDER ===== */
.slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 60vh; /* Fixed height for desktop */
  min-height: 400px; /* Minimum height fallback */
  max-height: 600px; /* Maximum height cap */
}

.slides {
  display: flex;
  width: 100%;
  height: 100%;
}

.slide {
  flex: 1 0 100%;
  background-size: cover;
  background-position: center;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ===== BELOW BANNER SECTION ===== */
.full_content_section {
  padding: 2.5rem 2rem;
  margin: 1rem 13rem;
  text-align: center;
  /* background: #ffe8e8 !important;  */
  border-radius: 15px;
}

.full_content_section .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: justify;
}

.full_content_section h1 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  color: #fff;
}

.full_content_section p {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1rem;
  text-align: justify;
}

.full_content_section .cta-btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: linear-gradient(135deg, #ff5252 0%, #d32f2f 100%);
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.full_content_section .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 82, 82, 0.4);
}

/* ===== HERO ===== */
.hero {
  text-align: center;
  padding: 3rem 1rem;
  margin: 0 3rem;
  background: #ffcccc;
  border-radius: 12px;
}

.hero img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  border: 3px solid #ff8a8a;
}

.hero h1 {
  margin: 1rem 0;
  font-size: 2rem;
  color: #c62828;
}

.hero button {
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  border: none;
  background: linear-gradient(135deg, #ff5252 0%, #d32f2f 100%);
  color: #fff;
  cursor: pointer;
  border-radius: 5px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.hero button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 82, 82, 0.4);
}

/* ===== PROFILE CARDS SECTION ===== */
.profile_section {
  padding: 1rem 1rem;
  margin: 1rem 13rem;
  /* width: 100%; */
  box-sizing: border-box;
  overflow: hidden;
  /* background: #ffcccc; */
  border-radius: 15px;
}

.profiles-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 3rem 1.5rem;
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.profile-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(255, 82, 82, 0.15);
  padding: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s, transform 0.3s;
  border: 2px solid #ffe0e0;
  overflow: hidden;
}

.profile-card:hover {
  box-shadow: 0 6px 20px rgba(255, 82, 82, 0.3);
  transform: translateY(-5px);
}

.profile-card img {
  width: calc(100% - 10px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  margin: 5px 5px 0 5px;
  /* border-radius: 8px; */
  border: 2px solid #ff8a8a;
}

.profile-card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1rem 0.5rem 1rem;
  gap: 0.5rem;
}

.profile-card h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #c62828;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.profile-card .contact-icons {
  display: flex;
  gap: 0.4rem;
  flex-shrink: 0;
}

.profile-card .icon-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff5252 0%, #d32f2f 100%);
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  font-size: 0.9rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 4px rgba(255, 82, 82, 0.3);
}

.profile-card .icon-btn.whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  box-shadow: 0 2px 4px rgba(37, 211, 102, 0.3);
}

.profile-card .icon-btn.call {
  background: linear-gradient(135deg, #2196F3 0%, #1565C0 100%);
  box-shadow: 0 2px 4px rgba(33, 150, 243, 0.3);
}

.profile-card .icon-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 3px 8px rgba(255, 82, 82, 0.5);
}

.profile-card .icon-btn.whatsapp:hover {
  box-shadow: 0 3px 8px rgba(37, 211, 102, 0.5);
}

.profile-card .icon-btn.call:hover {
  box-shadow: 0 3px 8px rgba(33, 150, 243, 0.5);
}

.profile-card .card-description {
  font-size: 0.9rem;
  color: #b71c1c;
  padding: 0 1rem;
  margin: 0.3rem 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 2.8rem;
  text-align: justify;
}

.profile-card .card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1rem 1rem 1rem;
  margin-top: auto;
}

.profile-card .price {
  font-size: 1.1rem;
  font-weight: bold;
  color: #c62828;
}

.profile-card .rating {
  font-size: 0.9rem;
  color: #ffd700;
  letter-spacing: 1px;
}

/* ===== CONTENT SECTION ===== */
.content {
  padding: 3rem 2rem;
  text-align: center;
  /* background: #ffe8e8; */
  margin: 0 3rem;
  /* border-radius: 12px; */
}

.content h2 {
  margin-bottom: 1rem;
  color: #c62828;
}

.content p {
  color: #b71c1c;
  text-align: justify;
}

/* ===== SPLIT SECTION ===== */
 
 
 

/* ===== PRICING SECTION ===== */
.pricing-section {
  padding: 3rem 2rem;
  /* background: #ffe8e8; */
  margin: 1rem 13rem; 
  border-radius: 15px;
}

.pricing-section h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.pricing-table {
  /* max-width: 800px; */
  margin: 0 auto;
  overflow-x: auto;
}

.pricing-table table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(255, 82, 82, 0.15);
}

.pricing-table thead {
  background: linear-gradient(135deg, #ff5252 0%, #d32f2f 100%);
}

.pricing-table thead th {
  color: #fff;
  padding: 1.2rem;
  text-align: left;
  font-size: 1.1rem;
  font-weight: bold;
}

.pricing-table tbody tr {
  border-bottom: 1px solid #ffe0e0;
  transition: background 0.3s;
}

.pricing-table tbody tr:last-child {
  border-bottom: none;
}

.pricing-table tbody tr:hover {
  background: #ffe8e8;
}

.pricing-table tbody td {
  padding: 1rem 1.2rem;
  color: #b71c1c;
}

.pricing-table tbody td:first-child {
  font-weight: 600;
  color: #c62828;
}

.pricing-table tbody td:last-child {
  color: #d32f2f;
  font-weight: bold;
  font-size: 1.1rem;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 1rem 0.5rem;
  /* background: #ffcccc; */
  margin: 1rem 13rem; 
  border-radius: 15px;
}

.faq-section h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  /* background: #fff; */
  border: 2px solid #ff8a8a;
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(255, 82, 82, 0.2);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  /* background: linear-gradient(135deg, #ffe8e8 0%, #ffd6d6 100%); */
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: linear-gradient(135deg, #ffd6d6 0%, #ff8a8a 100%);
}

.faq-question h3 {
  color: #fff;
  font-size: 1.1rem;
  margin: 0;
  flex: 1;
}

.faq-toggle {
  font-size: 1.8rem;
  color: #ff5252;
  font-weight: bold;
  transition: transform 0.3s ease;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  margin-left: 1rem;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: #fff;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 1.2rem 1.5rem;
}

.faq-answer p {
  color: #b71c1c;
  margin: 0;
  line-height: 1.6;
  text-align: justify;
}

/* ===== HORIZONTAL PROFILE SECTION ===== */
.horizontal-profile-section {
  padding: 1rem 0.5rem;
  /* background: #ffe8e8; */
  margin: 1rem 13rem; 
  border-radius: 15px;
}

.horizontal-profile-section h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 2.5rem;
  font-size: 2rem;
}

.horizontal-profiles-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.horizontal-profile-card {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: #fff;
  padding: 0;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(255, 82, 82, 0.15);
  border: 2px solid #ff8a8a;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  min-height: 200px;
}

.horizontal-profile-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 82, 82, 0.25);
}

.horizontal-profile-card .profile-image {
  flex-shrink: 0;
  width: 200px;
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: #ffe8e8;
  margin: 0.75rem 0 0.75rem 0.75rem;
}

.horizontal-profile-card .profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  display: block;
  border-radius: 10px;
}

.horizontal-profile-card .profile-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 1rem 1rem 1rem;
}

.horizontal-profile-card .profile-details h3 {
  color: #c62828;
  font-size: 1.5rem;
  margin: 0;
}

.horizontal-profile-card .profile-desc {
  color: #b71c1c;
  line-height: 1.6;
  margin: 0;
  text-align: left; /* remove justify for better readability */
}

.profile-contact-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
  justify-content: flex-end;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.contact-btn svg {
  width: 20px;
  height: 20px;
}

.contact-btn.whatsapp-btn {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
}

.contact-btn.whatsapp-btn:hover {
  background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.contact-btn.call-btn {
  background: linear-gradient(135deg, #2196F3 0%, #1565C0 100%);
  color: #fff;
}

.contact-btn.call-btn:hover {
  background: linear-gradient(135deg, #1565C0 0%, #0D47A1 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(33, 150, 243, 0.4);
}

/* Responsive design for horizontal profile cards */
@media (max-width: 768px) {
  .horizontal-profile-card {
    flex-direction: row;
    align-items: stretch;
    position: relative;
    padding-bottom: 44px; /* reserve space for button row */
  }

  .horizontal-profile-card .profile-image {
    width: 140px; /* slightly smaller image to save space */
    height: 100%;
    float: none;
    margin: 0; /* revert margin; card already has internal spacing */
  }

  .horizontal-profile-card .profile-details {
    padding: 0.6rem; /* tighter padding */
  }

  .horizontal-profile-card .profile-desc {
    text-align: left;
    line-height: 1.5; /* slightly tighter than desktop but readable */
    /* show more text on mobile; remove clamp */
  }

  /* Restore absolute positioned centered buttons over full width */
  .horizontal-profile-card .profile-contact-buttons {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0.5rem;
    padding: 0 0.5rem;
    margin-top: 0;
  }
  .horizontal-profile-card .contact-btn {
    padding: 0.45rem 0.85rem; /* slightly smaller buttons */
    font-size: 0.8rem;
    white-space: nowrap;
  }

}
@media (max-width: 500px) {
  .horizontal-profile-card .profile-image {
    width: 110px; /* smaller on very small screens */
    height: 100%;
    margin: 0;
  }

  .horizontal-profile-card .profile-contact-buttons {
    gap: 0.4rem;
  }

  .horizontal-profile-card .contact-btn {
    padding: 0.38rem 0.65rem;
    font-size: 0.74rem;
  }
}

/* ===== FOOTER ===== */
/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
  color: #ffe8e8;
  padding: 3rem 2rem 1rem 2rem;
}

.footer-container {
  display: flex;
  gap: 3rem;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

.footer-logo {
  font-size: 1.8rem;
  color: #fff;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-description {
    color: #ffffff;
    line-height: 1.6;
    font-size: 16px;
}

.footer-heading {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: #ffe8e8;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #ffe8e8;
  line-height: 1.5;
}

.contact-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.footer-social {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #ffe8e8;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #fff;
  color: #d32f2f;
  transform: translateY(-3px);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer .copyright {
  color: #ff8a8a;
  font-size: 0.9rem;
  margin: 0;
}

/* ===== FIXED FOOTER MARQUEE ===== */
.fixed-footer-marquee {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #ff5252, #d32f2f);
  padding: 0.8rem 0;
  overflow: hidden;
  z-index: 9998;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
}

.footer-marquee-container {
  width: 100%;
  overflow: hidden;
}

.footer-marquee-content {
  display: flex;
  animation: footerMarquee 10s linear infinite;
  white-space: nowrap;
}

.footer-marquee-content:hover {
  animation-play-state: paused;
}

.footer-marquee-item {
  display: inline-flex;
  align-items: center;
  padding: 0 2.5rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.5px;
}

@keyframes footerMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Adjust body padding to prevent content from being hidden */
body {
  padding-bottom: 50px;
}

/* Footer Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 2rem;
  }
  
  .footer-column {
    min-width: 100%;
  }
  
  .footer-social {
    justify-content: flex-start;
  }
}

@media (max-width: 500px) {
  .footer {
    padding: 2rem 1rem 1rem 1rem;
  }
  
  .footer-container {
    gap: 1.5rem;
  }
  
  .contact-item {
    font-size: 0.9rem;
  }
}

/* ===== IMAGE LEFT CONTENT RIGHT SECTION ===== */
.image-and-content-section {
  padding: 1rem 1rem;
  margin: 1rem 13rem;
  /* background: #ffcccc;  */
  box-shadow: 0 4px 12px rgba(255, 82, 82, 0.15);
  border-radius: 15px;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
  padding: 1rem 1rem;
  /* background: #ffe8e8; */
  margin: 0 13rem;
  border-radius: 12px;
}

.gallery-section h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 2.5rem;
  font-size: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 82, 82, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 82, 82, 0.3);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(211, 47, 47, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.view-btn {
  background: #fff;
  color: #c62828;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.view-btn:hover {
  background: #c62828;
  color: #fff;
  transform: scale(1.05);
}

.view-btn svg {
  width: 20px;
  height: 20px;
}

/* ===== LIGHTBOX MODAL ===== */
.lightbox {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.lightbox-content {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(255, 82, 82, 0.4);
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
  }
  to {
    transform: scale(1);
  }
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #fff;
  font-size: 50px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 10001;
}

.lightbox-close:hover {
  color: #ff5252;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 82, 82, 0.8);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 1rem 1.5rem;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
  z-index: 10001;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: #ff5252;
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-caption {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  padding: 0.8rem 2rem;
  border-radius: 25px;
  z-index: 10001;
}

/* ===== IMAGE CONTENT SECTION STYLES ===== */

.image-content-container {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: space-between;
}

.content-text {
  flex: 1;
  min-width: 280px;
}

.content-image {
  flex: 1;
  min-width: 300px;
}

.content-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 3px solid #ff8a8a;
  box-shadow: 0 4px 12px rgba(255, 82, 82, 0.2);
}

.content-text {
  flex: 1;
  min-width: 300px;
}

.content-text h2 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

.content-text p {
  font-size: 1rem;
  color: #fff;
  line-height: 1.7;
  margin-bottom: 1rem;
  text-align: justify;
}

/* ===== FLOATING CONTACT BUTTONS ===== */
.floating-contact-buttons {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 9999; /* Increased z-index to ensure visibility */
}

.floating-contact-buttons a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #ff5252 0%, #d32f2f 100%);
  color: #fff;
  padding: 0.7rem 1.2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(255, 82, 82, 0.4);
  transition: transform 0.2s, box-shadow 0.3s;
  min-width: 60px; /* Ensure minimum width */
  min-height: 50px; /* Ensure minimum height */
  justify-content: center;
}

.floating-contact-buttons .whatsapp-btn {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.floating-contact-buttons .call-btn {
  background: linear-gradient(135deg, #2196F3 0%, #1565C0 100%);
  box-shadow: 0 4px 12px rgba(33, 150, 243, 0.4);
}

.floating-contact-buttons a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 82, 82, 0.5);
}

.floating-contact-buttons .whatsapp-btn:hover {
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.floating-contact-buttons .call-btn:hover {
  box-shadow: 0 6px 20px rgba(33, 150, 243, 0.5);
}

.floating-contact-buttons .btn-label {
  display: none;
}

/* ===== RESPONSIVE ===== */
@media (min-width: 500px) {
  .floating-contact-buttons .btn-label {
    display: inline;
  }
}

@media (max-width: 1100px) {
  .profiles-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 800px) {
  .full_content_section h1 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0.8rem 1rem;
  }

  .logo {
    font-size: 1.2rem;
  }

  .header-contact-buttons {
    gap: 0.5rem;
  }

  .header-btn {
    padding: 0.6rem 0.8rem;
    font-size: 0.85rem;
    gap: 0.4rem;
  }

  .header-btn svg {
    width: 18px;
    height: 18px;
  }

  .btn-text {
    display: inline;
  }

  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    background: linear-gradient(135deg, #ff5252 0%, #d32f2f 100%);
    flex-direction: column;
    width: 200px;
    display: none;
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(255, 82, 82, 0.4);
  }

  .nav-links.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  

  .image-content-container {
    flex-direction: column;
  }

  .content-text h2 {
    font-size: 1.5rem;
  }

  /* Mobile slider height */
  .slider {
    height: 40vh;
    min-height: 250px;
    max-height: 350px;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
  }

  .gallery-section {
    margin: 0 2rem;
    padding: 2.5rem 1.5rem;
  }

  /* Mobile breadcrumb height */
  .breadcrumb-banner {
    height: 30vh;
    min-height: 200px;
    max-height: 280px;
    padding: 1.5rem 1.25rem;
  }
}
 

@media (max-width: 700px) {
  .profiles-container {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .gallery-section {
    margin: 0 1.5rem;
    padding: 2rem 1rem;
  }

  .lightbox-prev,
  .lightbox-next {
    padding: 0.8rem 1.2rem;
    font-size: 1.5rem;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-close {
    font-size: 40px;
    right: 20px;
  }
}

/* ===== CONTACT PAGE ===== */
.contact-page { 
  padding: 3rem 2rem; 
  background: #ffcccc;
  margin: 0 3rem;
  border-radius: 12px;
}
.contact-wrapper { max-width: 1100px; margin: 0 auto; display: flex; gap: 3rem; flex-wrap: wrap; }
.contact-info, .contact-form { flex: 1; min-width: 320px; background: #fff; border: 2px solid #ff8a8a; border-radius: 15px; padding: 2rem; box-shadow: 0 4px 12px rgba(255,82,82,.15); }
.contact-info h2, .contact-form h2 { margin-top: 0; color: #c62828; font-size: 2rem; }
.contact-info p { color: #b71c1c; line-height: 1.6; }
.contact-info .info-block { margin-bottom: 1.25rem; }
.contact-info .info-block strong { display: block; color: #c62828; font-size: 0.95rem; margin-bottom: 0.35rem; }
.contact-form form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form .form-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.contact-form .form-row .field { flex: 1; min-width: 200px; }
.contact-form .field label { display: block; font-weight: 600; margin-bottom: 0.4rem; color: #b71c1c; }
.contact-form .field input, .contact-form .field textarea { width: 100%; padding: 0.75rem 1rem; border: 2px solid #ff8a8a; border-radius: 10px; background: #ffe8e8; font-size: 0.95rem; font-family: inherit; color: #b71c1c; }
.contact-form .field input:focus, .contact-form .field textarea:focus { outline: none; border-color: #ff5252; box-shadow: 0 0 0 3px rgba(255,82,82,0.2); }
.contact-form .field textarea { resize: vertical; min-height: 160px; }
.contact-form .submit-btn { align-self: flex-start; background: linear-gradient(135deg,#ff5252 0%,#d32f2f 100%); color: #fff; padding: 0.85rem 2rem; border: none; border-radius: 30px; font-weight: 600; font-size: 1rem; cursor: pointer; display: inline-flex; gap: 0.5rem; transition: all .3s ease; }
.contact-form .submit-btn:hover { transform: translateY(-3px); box-shadow: 0 6px 18px rgba(255,82,82,0.35); }
.contact-form .feedback { margin-top: 1rem; font-weight: 600; color: #c62828; }
.contact-info .map-box { margin-top: 2rem; border: 2px solid #ff8a8a; border-radius: 10px; overflow: hidden; }
.contact-info .contact-highlight { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.25rem; }
.contact-info .highlight-card { flex: 1; min-width: 180px; background: #ffe8e8; border: 2px solid #ff8a8a; border-radius: 12px; padding: 1rem; display: flex; flex-direction: column; gap: 0.4rem; }
.contact-info .highlight-card span { font-size: 0.85rem; color: #b71c1c; }
.contact-info .highlight-card strong { color: #c62828; font-size: 1rem; }
@media (max-width: 900px){ .contact-wrapper { gap: 2rem; } }
@media (max-width: 600px){
  .contact-page { padding: 2.5rem 1.25rem; }
  .contact-info, .contact-form { padding: 1.5rem 1.25rem; }
  .contact-info h2, .contact-form h2 { font-size: 1.65rem; }
  .contact-form .form-row { flex-direction: column; }
  .contact-form .submit-btn { width: 100%; justify-content: center; }
}

/* ===== BREADCRUMB BANNER ===== */
.breadcrumb-banner {
  background: linear-gradient(135deg, #ff5252 0%, #d32f2f 100%);
  padding: 2.5rem 2rem 2.8rem 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(255,82,82,0.35);
  height: 40vh; /* Fixed height for desktop */
  min-height: 250px; /* Minimum height fallback */
  max-height: 400px; /* Maximum height cap */
  display: flex;
  align-items: center;
}
.breadcrumb-banner.has-image {
  background: linear-gradient(135deg, rgba(255,82,82,0.75) 0%, rgba(211,47,47,0.85) 100%), url('../assets/image/banner/b1.jpg') center/cover no-repeat;
}
.breadcrumb-banner::before,
.breadcrumb-banner::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  top: -60px;
  left: -60px;
  filter: blur(2px);
}
.breadcrumb-banner::after {
  top: auto;
  bottom: -70px;
  left: auto;
  right: -70px;
}
.breadcrumb-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 2; }
.breadcrumb-inner .page-title {
  margin: 0 0 0.75rem 0;
  font-size: 2.2rem;
  color: #fff;
  letter-spacing: 1px;
}
.breadcrumb-trail ol { list-style: none; padding: 0; margin: 0; display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; }
.breadcrumb-trail a { color: #ffe8e8; text-decoration: none; font-weight: 600; transition: color .3s ease; }
.breadcrumb-trail a:hover { color: #fff; }
.breadcrumb-trail .separator { color: #ffc4c4; font-size: 1.1rem; }
.breadcrumb-trail .current { color: #fff; font-weight: 700; }
@media (max-width: 600px) {
  .breadcrumb-banner { 
    padding: 1.5rem 1.25rem; 
    height: 25vh;
    min-height: 180px;
    max-height: 250px;
  }
  .breadcrumb-inner .page-title { font-size: 1.7rem; }
  .breadcrumb-trail ol { font-size: 0.9rem; }
}

/* ===== ABOUT PAGE ===== */
.about-intro {
  padding: 3rem 2rem;
  background: #ffe8e8;
  margin: 0 3rem;
  border-radius: 12px;
}
.about-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  /* grid-template-columns: 2fr 1fr; */
  gap: 2rem;
}
.about-text h2 { color: #c62828; margin-bottom: 1rem; }
.about-text p { color: #b71c1c; line-height: 1.7; text-align: justify; margin-bottom: 1rem; }
.about-side-card {
  background: #fff;
  border: 2px solid #ff8a8a;
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 4px 12px rgba(255,82,82,0.15);
}
.about-side-card h3 { color: #c62828; margin: 0 0 0.75rem 0; }
.drive-list { margin: 0; padding-left: 1rem; color: #b71c1c; }
.drive-list li { margin: 0.35rem 0; }

.values-section { 
  padding: 3rem 2rem; 
  background: #ffcccc;
  margin: 0 3rem;
  border-radius: 12px;
}
.values-container { max-width: 1100px; margin: 0 auto; }
.values-container h2 { text-align: center; color: #c62828; margin-bottom: 2rem; font-size: 2rem; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.value-card {
  background: #fff;
  border: 2px solid #ff8a8a;
  border-radius: 12px;
  padding: 1rem;
  color: #b71c1c;
  box-shadow: 0 4px 12px rgba(255,82,82,0.15);
}
.value-card h3 { color: #c62828; margin-bottom: 0.5rem; }

.team-section { 
  padding: 3rem 2rem; 
  background: #ffe8e8;
  margin: 0 3rem;
  border-radius: 12px;
}
.team-container { max-width: 1100px; margin: 0 auto; }
.team-container h2 { text-align: center; color: #c62828; margin-bottom: 2rem; font-size: 2rem; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.team-card {
  background: #fff;
  border: 2px solid #ff8a8a;
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(255,82,82,0.15);
}
.team-card h3 { color: #c62828; margin: 0.6rem 0; }
.team-card p { color: #b71c1c; line-height: 1.6; }
.team-image { width: 120px; height: 120px; margin: 0 auto; border-radius: 50%; overflow: hidden; border: 3px solid #ff8a8a; }
.team-image img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 900px) {
  .about-container { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  
  /* Responsive margins for tablet */
  .below-banner-section,
  .hero,
  .content, 
  .pricing-section,
  .faq-section,
  .horizontal-profile-section,
  .contact-page,
  .about-intro,
  .values-section,
  .team-section {
    margin: 0 2rem;
    padding: 2rem 1.5rem;
  }
  
  .profiles-container {
    grid-template-columns: repeat(3, 1fr);
    margin: 0 2rem;
    padding: 2rem 1.5rem;
    width: calc(100% - 4rem);
  }
}

@media (max-width: 768px) {
  /* Responsive margins for small tablets */
  .below-banner-section,
  .hero,
  .content, 
  .pricing-section,
  .faq-section,
  .horizontal-profile-section,
  .contact-page,
  .about-intro,
  .values-section,
  .team-section {
    margin: 0 1.5rem;
    padding: 2rem 1rem;
  }
  
  .profiles-container {
    grid-template-columns: repeat(2, 1fr);
    margin: 0 1.5rem;
    padding: 2rem 1rem;
    width: calc(100% - 3rem);
    gap: 1.5rem;
  } 
  
  /* Reduce header padding */
  .navbar {
    padding: 0.75rem 1rem;
  }
}

@media (max-width: 600px) {
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  
  /* Responsive margins for mobile */
  .below-banner-section,
  .hero,
  .content,
  .pricing-section,
  .faq-section,
  .horizontal-profile-section,
  .contact-page,
  .about-intro,
  .values-section,
  .team-section {
    margin: 0 1rem;
    padding: 1.5rem 1rem;
  }
  
  .profiles-container {
    grid-template-columns: 1fr;
    margin: 0 1rem;
    padding: 1.5rem 1rem;
    width: calc(100% - 2rem);
    gap: 1rem;
  }
  
  .slider {
    height: 40vh;
    min-height: 250px;
    max-height: 350px;
  }
  
  .below-banner-section h1 {
    font-size: 1.5rem;
  }
  
  .content h2{
    font-size: 1.5rem;
  }
  
  .pricing-section h2,
  .faq-section h2,
  .horizontal-profile-section h2,
  .about-intro h2,
  .values-container h2,
  .team-container h2 {
    font-size: 1.5rem;
  }
  
  /* Reduce padding in nested containers */
  .pricing-table {
    padding: 1rem;
    max-width: 100%;
  }
  
  .faq-container {
    padding: 1rem;
  }
  
  .horizontal-profiles-container {
    padding: 1rem;
  }
  
  /* Mobile card adjustments */
  .profile-card {
    padding: 0;
  }
  
  /* Contact form responsive */
  .contact-form .form-row {
    flex-direction: column;
  }
  
  .contact-form .form-row .field {
    width: 100%;
    min-width: auto;
  }

  /* Gallery responsive */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .gallery-section {
    margin: 0 1rem;
    padding: 1.5rem 1rem;
  }

  .gallery-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .lightbox-content {
    max-width: 95%;
    max-height: 75vh;
  }

  .lightbox-caption {
    font-size: 1rem;
    padding: 0.6rem 1.5rem;
    bottom: 20px;
  }
  
  /* Navbar hamburger */
  .hamburger {
    display: block;
  }
  
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .nav-links.show {
    display: flex;
  }
}

@media (max-width: 480px) {
  /* Extra small mobile devices */
  .navbar {
    padding: 0.6rem 0.8rem;
  }

  .logo {
    font-size: 1rem;
  }

  .header-contact-buttons {
    gap: 0.3rem;
  }

  .header-btn {
    padding: 0.5rem 0.6rem;
    font-size: 0.75rem;
    border-radius: 20px;
  }

  .header-btn svg {
    width: 16px;
    height: 16px;
  }

  .btn-text {
    display: none;
  }

  .below-banner-section,
  .hero,
  .content,
  .pricing-section,
  .faq-section,
  .horizontal-profile-section,
  .contact-page,
  .about-intro,
  .values-section,
  .team-section {
    margin: 1rem 0.5rem;
    padding: 1rem 0.75rem;
    /* border-radius: 8px; */
  }
  
  .profiles-container {
    margin: 0 0.5rem;
    padding: 1rem 0.75rem;
    width: calc(100% - 1rem);
  }
  
  .nav-links a {
    font-size: 0.9rem;
  }
  
  .breadcrumb-banner {
    height: 20vh;
    min-height: 150px;
    padding: 1rem 0.75rem;
  }
  
  .breadcrumb-inner .page-title {
    font-size: 1.3rem;
  }
  
  .below-banner-section h1 {
    font-size: 1.2rem;
  }
  
  .hero img {
    max-width: 100%;
  }
  
  .pricing-table table {
    font-size: 0.85rem;
  }
  
  .faq-question h3 {
    font-size: 0.95rem;
  }
  
  .contact-form .field input,
  .contact-form .field textarea {
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
  }
  
  .floating-contact-buttons {
    gap: 0.5rem;
    bottom: 1rem;
    right: 1rem;
  }
  
  .floating-contact-buttons a {
    min-width: 50px;
    min-height: 45px;
    padding: 0.5rem 0.8rem;
    font-size: 0.8rem;
  }
}

/* ===== RESPONSIVE MEDIA QUERIES FOR CONTENT SECTIONS ===== */
@media (max-width: 900px) {
  .full_content_section {
    margin: 1rem 2rem;
    padding: 2rem 1.5rem;
  }
  
  .image-and-content-section {
    margin: 1rem 2rem;
    padding: 2rem 1.5rem;
  }
  
  .image-content-container {
    gap: 2rem;
  }
  .profile_section{
    margin: 1rem 0.5rem;
    padding: 2rem 0.1rem;
  }
}

@media (max-width: 768px) {
  .full_content_section {
    margin: 1rem 1.5rem;
    padding: 2rem 1rem;
  }
  
  .full_content_section h1 {
    font-size: 1.5rem;
  }
  
  .image-and-content-section {
    margin: 1rem 1.5rem;
    padding: 1.5rem 1rem;
  }
  
  .image-content-container {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .content-image,
  .content-text {
    flex: 1 !important;
    width: 100%;
    min-width: auto !important;
  }
}

@media (max-width: 600px) {
  .full_content_section {
    margin: 0 1rem;
    padding: 1.5rem 1rem;
  }
  
  .full_content_section h1 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  
  .full_content_section p {
    font-size: 0.95rem;
    text-align: justify;
  }
  
  .full_content_section .container {
    padding: 0 0.5rem;
  }
  
  .image-and-content-section {
    margin: 1rem 1rem;
    padding: 1.5rem 1rem;
  }
  
  .image-content-container {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }
  
  .content-image {
    width: 100%;
    min-width: auto;
  }
  
  .content-text {
    width: 100%;
    min-width: auto;
  }
  
  .content-image img {
    max-width: 100%;
    height: auto;
  }
  
  .content-text ul {
    padding-left: 1.5rem;
    margin: 1rem 0;
  }
  
  .content-text li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .full_content_section {
    margin: 1rem 0.5rem;
    padding: 1rem 0.75rem; 
  }
  
  .full_content_section h1 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }
  
  .full_content_section p {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
  }
  
  .full_content_section .container {
    padding: 0;
  }
  
  .image-and-content-section {
    margin: 1rem 0.5rem;
    padding: 1rem 0.75rem; 
  }

  .gallery-section {
    margin: 0 0.5rem;
    padding: 1rem 0.75rem;
  }

  .gallery-section h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }

  .view-btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }

  .lightbox-prev,
  .lightbox-next {
    padding: 0.6rem 0.8rem;
    font-size: 1.2rem;
  }

  .lightbox-close {
    font-size: 35px;
    right: 15px;
    top: 15px;
  }

  .lightbox-caption {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    bottom: 15px;
  }
  
  .image-content-container {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .content-image,
  .content-text {
    width: 100%;
  }
  
  .content-text ul {
    padding-left: 1.25rem;
    margin: 0.75rem 0;
  }
  
  .content-text li {
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
  }
  
  .content-text p {
    font-size: 0.85rem;
  }
}

.intenal_linking{
    color: #fff;
    font-weight: bold;
}
.footer_linking{
    color: #fff;
    font-weight: bold;
}