/* General styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #d1e8ff;
  margin: 0;
}

a {
  color: #333;
  text-decoration: none;
}

img {
  border-radius: 10px;
  max-width: 100%;
  object-fit: cover;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

h1:first-of-type {
  font-family: 'Raleway', sans-serif;
  font-size: 32px;
  color: rgba(255, 255, 255, 0.4);
  text-shadow: 1px 2px 3px #d1e8ff, 0 0 0 #000, 1px 2px 3px #d1e8ff;
}

h1,
h2,
h3 {
  font-family: 'Raleway', sans-serif;
  color: rgba(255, 255, 255, 0.4);
  text-shadow: 1px 2px 3px #d1e8ff, 0 0 0 #000, 1px 2px 3px #d1e8ff;
  text-shadow: 0 -2px rgba(0, 0, 0, 0.6);
}

/* Main content styles */
.main-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  max-width: 75%;
  margin: 0 auto;
  font-family: 'Arial', sans-serif;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .main-content {
    padding: 1rem;
  }

  .container {
    padding: 1rem;
  }
}

.service-container {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.service-card img {
  width: 100%;
  height: auto;
}

.header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-family: 'Raleway', sans-serif;
}

.header-divider-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.header-divider {
  position: absolute;
  top: 50%;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.1);
  width: calc(50% - 50px - 10px - 1.5rem);
  box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.075) inset;
}

.header-divider:first-child {
  left: 1.5rem;
}

.header-divider:last-child {
  right: 1.5rem;
}

.logo-container {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: visible; /* Change from hidden to visible */
  margin: 0 calc(10px - 1.5rem);
}

.logo-container:hover {
  filter: saturate(2);
}

.logo-image {
  width: 100%;
  height: 100%;
  display: flex;
  object-fit: contain;
}

.header-title {
  font-size: 24px;
  text-align: center;
  margin-top: 10px;
  font-family: 'Raleway', sans-serif;
}

.nav-menu {
  display: flex;
  list-style-type: none;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.nav-item {
  margin-right: 20px;
}

.nav-item:last-child {
  margin-right: 0;
}

.nav-item a {
  color: rgba(255, 255, 255, 0.4);
  text-shadow: 1px 2px 3px #d1e8ff, 0 0 0 #000, 1px 2px 3px #d1e8ff;
}

.nav-menu a:hover {
  color: #3898c3;
}

/* ... (continue with the previous CSS code, up to the .about-us-container styles) ... */

.about-us-content p {
  margin-bottom: 20px;
}

.calarts-card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}

.calarts-card {
  display: flex;
  flex-basis: calc(50% -0.5rem);
  flex-direction: column;
  align-items: center;
  max-width: 80%;
  margin: 2rem auto;
  padding: 1rem;
  background-color: #f7f2e8;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.075);
  border-radius: 8px;
  overflow: hidden;
}

.calarts-card.expanded {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
  background-color: #f7f2e8;
  overflow-y: auto;
}

.calarts-card-images {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: auto;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #333;
}

.calarts-card-images img {
  max-height: 200px;
  margin: 0 0.5rem;
  object-fit: cover;
  flex-shrink: 0;
}

.calarts-card-text {
  text-align: center;
}

.calarts-card-text h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: rgba(56, 152, 195, 0.9);
  text-shadow: 1px 2px 3px #d1e8ff, 0 0 0 #000, 1px 2px 3px #d1e8ff;
}

.calarts-card-text p {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
  margin-bottom: 0.5rem;
}

.calarts-card-text a {
  display: inline-block;
  text-decoration: none;
  background-color: rgba(56, 152, 195, 0.9);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.075);
  transition: background-color 0.3s ease;
}

.calarts-card-text a:hover {
  background-color: #3898c3;
}

/* Swiper Container */
.swiper-container {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}

/* Swiper Slide */
.swiper-slide {
  position: relative;
  height: calc(100vh - 220px);
  overflow: hidden; /* Hide any overflowing content */
  text-align: center;
  font-size: 18px;
  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-img-w-full {
  display: block;
  width: 100%;
  height: 100%;  /* Adjusted from height: auto; to height: 100%; to fill the height of the swiper-slide */
  object-fit: cover;
  object-position: center center;
}

/* Swiper Caption */
.wo-caption {
  position: absolute;
  bottom: 10%;
  left: 0;
  width: 100%;
  padding: 1em;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  text-align: left;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Text shadow for better readability */
}

.c-label {
  font-weight: bold; /* Adjust as needed */
  /* Add any other styles specific to the label inside the caption */
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

/* Swiper Caption Heading */
.wo-h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

/* Swiper Credit List */
.wo-credit {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

/* Swiper Credit Item */
.wo-credit li {
  margin-bottom: 0.5rem;
}

/* Swiper Navigation Buttons */
.swiper-button-next, .swiper-button-prev {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  margin-top: -25px;
  z-index: 10;
  cursor: pointer;
  background: #000;
  border-radius: 50%;
  color: #fff;
  line-height: 50px;
  text-align: center;
}

.swiper-button-next {
  right: 10px;
}

.swiper-button-prev {
  left: 10px;
}

/* Swiper Pagination */
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: .3s opacity;
  transform: translate3d(0,0,0);
  z-index: 10;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  margin: 0 5px;
}

.swiper-pagination-bullet-active {
  background: #3898c3;
}


/* Footer styles */
footer {
  /* Your footer styles */
  padding-top: 5rem;
}