@charset "utf-8";
/* CSS Document */

    body {
      margin: 0;
      padding: 0;
    }

    .header-bg {
      background:#1599a3 fixed top center; /* Ocean background */
      padding: 20px 0;
    }

    .navbar-custom {
      background: #fff;
      border-radius: 50px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      padding: 0.5rem 2rem;
    }

    .navbar-brand img {
      height:70px;
    }

    .navbar-nav .nav-link {
      color: #333;
      font-weight: 500;
      margin: 0 0.5rem;
      transition: color 0.3s;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:focus {
      color: #1599a3;
    }

    .navbar-nav .nav-link.active {
      color: #1599a3;
      border-bottom: 2px solid #00bcd4;
    }

    .dropdown-menu {
      border-radius: 10px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .dropdown-item:hover {
      background-color: #1599a3;
      color: #fff;
    }

    .btn-appointment {
      background-color: #1599a3;
      color: #fff;
      border-radius: 30px;
      padding: 0.4rem 1.2rem;
      font-weight: 500;
    }

    .btn-appointment:hover {
      background-color: #0aeeff;
      color: #fff;
    }

    .carousel-caption {
      bottom: 20%;
    }
    .carousel-caption h5 {
      font-size: 3rem;
      font-weight: bold;
      text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    }
    .carousel-caption p {
      font-size: 1.25rem;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    }
    .carousel-caption .btn {
      background-color: #00bcd4;
      border: none;
      padding: 0.5rem 1.5rem;
      font-size: 1rem;
      border-radius: 30px;
      font-weight: 500;
    }
    .carousel-caption .btn:hover {
      background-color: #0097a7;
    }
    .carousel-item img {
      height: 90vh;
      object-fit: cover;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background-color: #f8f9fa;
      color: #333;
    }

    .content-section {
      padding: 70px 0;
    }

    .section-title {
      position: relative;
      display: inline-block;
      font-size: 2.5rem;
      font-weight: 700;
      color: #0077b6;
      margin-bottom: 1.5rem;
    }

    .section-title::after {
      content: '';
      position: absolute;
      width: 60%;
      height: 4px;
      background-color: #00bcd4;
      bottom: -10px;
      left: 0;
      border-radius: 5px;
    }

    .feature-image {
      border-radius: 15px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .content-section p {
      font-size: 1.1rem;
      line-height: 1.8;
      color: #555;
    }
	 .content-section p a{
      font-size: 1.1rem;
      line-height: 1.8;
      color: #555;
	  text-decoration:none !important;
    }
	.content-section p a:hover{
      font-size: 1.1rem;
      line-height: 1.8;
      color:#1599a3;
	   text-decoration:none !important;
    }

    .btn-custom {
      background-color: #00bcd4;
      color: #fff;
      border-radius: 30px;
      padding: 0.5rem 1.5rem;
      font-weight: 500;
      transition: background-color 0.3s ease;
      margin-top: 20px;
    }

    .btn-custom:hover {
      background-color: #0097a7;
      color: #fff;
    }

  .amenities-section {
    background: linear-gradient(rgba(0, 124, 136, 0.9), rgba(0, 124, 136, 0.9)),
                url('amenities.jpg') fixed no-repeat center center/cover;
    color: #ffffff;
    padding: 60px 20px;
  }

  .amenity-card {
    background-color: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    transition: transform 0.3s ease, background 0.3s ease;
  }

  .amenity-card:hover {
    transform: scale(1.03);
    background-color: rgba(255, 255, 255, 0.25);
  }

  .amenity-icon {
    font-size: 2rem;
    color: #ffffff;
    background-color: #007c88;
    border-radius: 50%;
    padding: 10px;
    margin-right: 10px;
  }

  .amenity-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    border-bottom: 2px solid #ffffff;
    display: inline-block;
    padding-bottom: 5px;
  }

  .amenity-card ul li i {
    color: #f5f5f5;
  }

    .attraction-card {
      border-radius: 20px;
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .attraction-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    }
    .attraction-img {
      height:300px;
      object-fit: cover;
    }
    .attraction-title {
      font-size: 1.25rem;
      font-weight: 600;
      color:#0077b6;
      text-align: center;
      padding: 10px 0;
    }

    .footer {
      background: url('bg.jpg') no-repeat center center;
      background-size: cover;
      color: #fff;
      position: relative;
      padding: 60px 0 20px;
    }
    .footer-overlay {
      background-color: rgba(0, 0, 0, 0.7);
      position: absolute;
      inset: 0;
    }
    .footer-content {
      position: relative;
      z-index: 1;
    }
    .footer a {
      color: #ccc;
      text-decoration: none;
      transition: color 0.3s ease;
    }
    .footer a:hover {
      color: #0dcaf0;
    }
    .social-icons a {
      font-size: 1.3rem;
      margin-right: 15px;
      color: #ccc;
      transition: color 0.3s ease, transform 0.3s ease;
    }
    .social-icons a:hover {
      color: #0dcaf0;
      transform: scale(1.1);
    }
    .back-to-top {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #1599a3;
      color: #fff;
      border: none;
      border-radius: 50%;
      padding: 10px 15px;
      font-size: 20px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }
    .back-to-top:hover {
      background-color: #0dcaf0;
    }
	#more {display: none;}