/* Custom Styles */
body {
  font-family: 'Roboto', sans-serif;
  scroll-behavior: smooth;
}

.swiper-container {
  width: 100%;
  height: 100vh;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

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

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

.reference-slider .swiper-slide {
	height:100px;
  padding: 0 15px;
}

form input,
form textarea {
  transition: border-color 0.3s;
}

form input:focus,
form textarea:focus {
  border-color: #db2777;
  outline: none;
}

@media (max-width: 768px) {
  .swiper-container {
    height: 60vh;
  }

  .swiper-slide h1 {
    font-size: 2rem;
  }

  .swiper-slide p {
    font-size: 1rem;
  }
}
.about-section {
            padding: 60px 20px;
            background-color: #fff;
            text-align: center;
        }
        .about-section h1 {
            font-size: 2.5em;
            color: #333;
            margin-bottom: 20px;
        }
        .about-section p {
            font-size: 1.1em;
            color: #666;
            line-height: 1.6;
            max-width: 800px;
            margin: 0 auto 20px;
        }
        .about-section .mission {
            font-style: italic;
            color: #d4a5a5;
            font-size: 1.2em;
            margin-top: 30px;
        }
        .about-section .team {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 40px;
        }
        .about-section .team-member {
            width: 200px;
            text-align: center;
        }
        .about-section .team-member img {
            width: 100%;
            border-radius: 50%;
            margin-bottom: 10px;
        }
        .about-section .team-member h3 {
            font-size: 1.2em;
            color: #333;
            margin: 10px 0 5px;
        }
        .about-section .team-member p {
            font-size: 0.9em;
            color: #888;
        }
        @media (max-width: 768px) {
            .about-section h1 {
                font-size: 2em;
            }
            .about-section p {
                font-size: 1em;
            }
        }
		.services-section {
            padding: 80px 20px;
            background-color: #fff;
            text-align: center;
        }
        .services-section h1 {
            font-size: 2.8em;
            color: #333;
            margin-bottom: 20px;
            font-weight: 700;
        }
        .services-section .intro {
            font-size: 1.2em;
            color: #666;
            line-height: 1.7;
            max-width: 900px;
            margin: 0 auto 50px;
        }
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .service-card {
            background-color: #f9f9f9;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: left;
        }
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
        }
        .service-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 20px;
        }
        .service-card h3 {
            font-size: 1.6em;
            color: #333;
            margin: 0 0 15px;
            font-weight: 600;
        }
        .service-card p {
            font-size: 1em;
            color: #666;
            line-height: 1.6;
            margin: 0 0 20px;
        }
        .service-card ul {
            list-style-type: none;
            padding: 0;
            margin: 0 0 20px;
        }
        .service-card ul li {
            font-size: 0.95em;
            color: #666;
            margin-bottom: 10px;
            position: relative;
            padding-left: 20px;
        }
        .service-card ul li:before {
            content: '✓';
            color: #d4a5a5;
            position: absolute;
            left: 0;
            font-weight: bold;
        }
        .service-card a {
            display: inline-block;
            padding: 10px 20px;
            background-color: #d4a5a5;
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 500;
            transition: background-color 0.3s ease;
        }
        .service-card a:hover {
            background-color: #b88a8a;
        }
        .services-section .cta {
            margin-top: 50px;
            font-size: 1.1em;
            color: #666;
        }
        .services-section .cta a {
            color: #d4a5a5;
            text-decoration: none;
            font-weight: bold;
        }
        .services-section .cta a:hover {
            text-decoration: underline;
        }
        @media (max-width: 768px) {
            .services-section h1 {
                font-size: 2.2em;
            }
            .services-section .intro {
                font-size: 1.1em;
            }
            .service-card {
                padding: 20px;
            }
            .service-card img {
                height: 180px;
            }
            .service-card h3 {
                font-size: 1.4em;
            }
        }
		
		.gallery-section {
            padding: 80px 20px;
            background-color: #fff;
            text-align: center;
        }
        .gallery-section h1 {
            font-size: 2.8em;
            color: #333;
            margin-bottom: 20px;
            font-weight: 700;
        }
        .gallery-section .intro {
            font-size: 1.2em;
            color: #666;
            line-height: 1.7;
            max-width: 900px;
            margin: 0 auto 50px;
        }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
        }
        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            display: block;
        }
        .gallery-item .caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.6);
            color: #fff;
            padding: 10px;
            font-size: 0.95em;
            opacity: 0;
            transition: opacity 0.3s ease;
            text-align: center;
        }
        .gallery-item:hover .caption {
            opacity: 1;
        }
        .gallery-section .cta {
            margin-top: 50px;
            font-size: 1.1em;
            color: #666;
        }
        .gallery-section .cta a {
            color: #d4a5a5;
            text-decoration: none;
            font-weight: bold;
            padding: 10px 20px;
            border: 2px solid #d4a5a5;
            border-radius: 5px;
            transition: background-color 0.3s ease, color 0.3s ease;
        }
        .gallery-section .cta a:hover {
            background-color: #d4a5a5;
            color: #fff;
        }
        @media (max-width: 768px) {
            .gallery-section h1 {
                font-size: 2.2em;
            }
            .gallery-section .intro {
                font-size: 1.1em;
            }
            .gallery-item img {
                height: 200px;
            }
            .gallery-item .caption {
                font-size: 0.9em;
                padding: 8px;
            }