html {
  scroll-behavior: smooth;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
  padding: 0;
}

.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #e73370;
  color: #e0e0e0;
  font-size: 24px;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

html {
  scroll-behavior: smooth;
}

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

body {
  font-family: "Roboto", sans-serif;
  background: #fafafa;
  color: #333;
}

.header_div {
  background: linear-gradient(135deg, #ffffff, #f0f0f0);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 10px 0;
  border-bottom: 3px solid #ff4081;
  animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.logo img {
  height: 60px;
  transition: transform 0.5s;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
  position: relative;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 8px 12px;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #ff4081;
}

nav ul li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 3px;
  background: #ff4081;
  transition: width 0.3s;
  transform: translateX(-50%);
}

nav ul li a:hover::after {
  width: 100%;
}

section iframe {
  width: 100%;
  height: 100vh;
  border: none;
  transition: opacity 0.5s;
}

.cookies-section {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1100;
  animation: slideInUp 0.5s ease-out;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cookies-div {
  background: #ffffff;
  border: 2px solid #ff4081;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookies-div p {
  font-size: 0.9rem;
  color: #333;
}

#acceptButton {
  background: #ff4081;
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

#acceptButton:hover {
  background: #e73370;
}

.footer {
  background: linear-gradient(135deg, #ffffff, #f0f0f0);
  padding: 40px 20px 20px;
  border-top: 3px solid #ff4081;
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

.footer-logo,
.footer-contact,
.footer-hours {
  margin-bottom: 20px;
}

.footer-logo img {
  height: 50px;
  transition: transform 0.5s;
}

.footer-logo img:hover {
  transform: scale(1.1);
}

.footer-logo p {
  font-size: 1.1rem;
  color: #333;
}

.footer-contact h3,
.footer-hours h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #ff4081;
}

.footer-contact p,
.footer-hours p {
  font-size: 0.95rem;
  margin-bottom: 5px;
  color: #333;
}

.footer-links {
  width: 100%;
  text-align: center;
  margin-top: 20px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 0;
}

.footer-links ul li a {
  text-decoration: none;
  font-size: 0.95rem;
  color: #333;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #ff4081;
}

.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  color: #333;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
  }
  nav ul {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }
  .footer-container {
    flex-direction: column;
    align-items: center;
  }
}

.hero {
  position: relative;
  min-height: 80vh;
  background-color: #001f3f;
  overflow: hidden;
}

.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: slideAnimation 15s infinite;
}

.slide1 {
  animation-delay: 0s;
}
.slide2 {
  animation-delay: 5s;
}
.slide3 {
  animation-delay: 10s;
}

@keyframes slideAnimation {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #e0e0e0;
  padding: 20px;
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  animation: fadeIn 1.5s ease-out;
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 30px;
  animation: fadeIn 1.5s ease-out 0.5s forwards;
  opacity: 0;
}

.hero-btn {
  padding: 12px 25px;
  background: #ff4081;
  color: #001f3f;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s;
  animation: fadeIn 1.5s ease-out 1s forwards;
  opacity: 0;
}

.hero-btn:hover {
  background: #ff9966;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-content p {
    font-size: 1.2rem;
  }
}

.about-section {
  background-color: #ffffff;
  padding: 60px 20px;
}

.about-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.about-column {
  flex: 1 1 45%;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 123, 255, 0.2);
  animation: fadeInUp 1s ease-out;
}

.about-column h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #e73370;
  text-shadow: 0 2px 4px rgba(0, 123, 255, 0.5);
}

.about-column p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

.left-column img {
  width: 100%;
  margin-top: 20px;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.left-column img:hover {
  transform: scale(1.05);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }
  .about-column {
    flex: 1 1 100%;
  }
  .about-column h2 {
    font-size: 1.8rem;
  }
  .about-column p {
    font-size: 1rem;
  }
}

.services {
  background-color: #fff;
  padding: 60px 20px;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.services h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #ff4081;
  text-shadow: 0 2px 4px rgba(255, 64, 129, 0.5);
}

.services-description {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-item {
  background-color: #f9f9f9;
  border: 2px solid #ff4081;
  border-radius: 10px;
  overflow: hidden;
  padding: 20px;
  text-align: left;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s ease forwards;
}

.services-grid .service-item:nth-child(1) {
  animation-delay: 0.2s;
}
.services-grid .service-item:nth-child(2) {
  animation-delay: 0.4s;
}
.services-grid .service-item:nth-child(3) {
  animation-delay: 0.6s;
}
.services-grid .service-item:nth-child(4) {
  animation-delay: 0.8s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(255, 64, 129, 0.3);
}

.service-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.service-item h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #ff4081;
}

.service-item p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

.gallery {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item img {
  width: 100%;
  border: 3px solid #ff4081;
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(255, 64, 129, 0.5);
}

.contact {
  background: #ffffff;
  padding: 80px 20px;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.contact-info {
  text-align: left;
  animation: fadeInLeft 1s ease;
}

.contact-info h2 {
  font-size: 2.8rem;
  color: #ff4081;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #333;
}

.contact-info img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(255, 64, 129, 0.3);
  transition: transform 0.3s ease;
}

.contact-info img:hover {
  transform: scale(1.03);
}

.contact-form {
  background: linear-gradient(135deg, #ffffff, #f7f7f7);
  padding: 40px;
  border: 2px solid #ff4081;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(255, 64, 129, 0.3);
  animation: fadeInRight 1s ease;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group label {
  font-size: 1rem;
  color: #333;
  margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #ff4081;
}

.contact-form button {
  padding: 15px;
  border: none;
  border-radius: 5px;
  background: #ff4081;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #e73370;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}
