* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: #e8f1f4;
    color: #333;
}

/* TOP BAR */
.top-bar {
    background: rgb(30, 85, 95);
    color: rgb(255, 255, 255);
    font-size: 16px;
    font-weight: 600;
    padding: 20px 0;
}

.top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.top-left span {
    margin-right: 20px;
}

.whatsapp-btn {
    background:rgb(255, 208, 1);
    color: rgb(11, 83, 59);
    padding: 6px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.whatsapp-btn:hover {
    background: #04ce55;
   
}


.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

header {
    background: linear-gradient(to right, #01272e, #00434e);
    padding: 20px 0;
}

.logo {
    color: rgb(255, 208, 1);
    font-size: 60px;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav a {
    color: rgb(206, 206, 206);
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
    font-size: 20px;
}




.hero {
    background: linear-gradient(to right, #01272e, #02262c);
    color: white;
    padding: 80px 0;
 
}


.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.justify-text {
  text-align: justify;
}
.hero-text {
    flex: 1;
    padding-right: 40px;
}

.hero-text h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.hero-text p {
    margin-bottom: 30px;
    font-size: 18px;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: rgb(255, 208, 1);
    color: #01272e;
    text-decoration: none;

    border-radius: 25px;
    transition: 0.3s;
}

.btn:hover {
    background:  #04ce55;
}

.btn.white {
    background: white;
    color: #0d2b36;
}

.section {
    padding: 80px 0;
}

.light {
    background: #08303b;
}

.split {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.split.reverse {
    flex-direction: row-reverse;
}

.image img {
    width: 100%;
    border-radius: 10px;
}

.text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.text ul {
    list-style: none;
    margin-top: 20px;
}

.text ul li {
    margin-bottom: 10px;
}


@media(max-width: 768px) {
    .hero-content,
    .split,
    .contact {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        padding-right: 0;
    }
}


.catalog-section {
    background: linear-gradient(to bottom, #03161a 50%, #011b20 50%,);
    padding: 10px 0;
}

.catalog-title {
    text-align: center;
    font-size: 36px;
    color: rgb(0, 31, 24);
    margin-bottom: 5px;
}

.catalog-subtitle {
    text-align: center;
    color: #012f3a;
    margin-bottom: 10px;
    font-size: 20px;
}

.catalog-grid {
    display: flex;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: px;
}

.catalog-card {
    background: white;
    border-radius: 18px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.catalog-card:hover {
    transform: translateY(-10px);
}

.catalog-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}

.catalog-card h3 {
    font-size: 30px;
    margin-bottom: 10px;
    color: #0d2b36;
}

.catalog-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.catalog-card a {
    display: inline-block;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    color: #0d2b36;
    border-bottom: 1px solid #0d2b36;
    padding-bottom: 4px;
    transition: 0.3s;
}

.catalog-card a:hover {
    color: #5fa8b5;
    border-color: #5fa8b5;
}


.why-section {
    padding: 50px 0;
    background: #0d2b36;
    text-align: center;
}

.why-title {
    font-size: 34px;
    margin-bottom: 10px;
    color: rgb(255, 208, 1);
}

.why-subtitle {
    font-size: 16px;
    margin-bottom: 60px;
    color: #fdf9f9;
}

.why-grid {
    display: flex;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-card {
    background: rgb(255, 255, 255);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.why-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.why-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
}

.why-card h3 {
    margin-bottom: 10px;
    color: #0d2b36;
}

.why-card p {
    font-size: 14px;
    color: #555;
}


.sectionlight{
    background-color: #011b20;


  position: relative;
  height: 900px; /* adjust height as needed */
  background-image: url("Images/Bg\ image.png"); /* replace with your image path */
  background-size:cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white; /* text color */
  text-align: center;


}

.sectionlight .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(20, 30, 50, 0.11); /* black overlay with 50% opacity */
  z-index: 1;
}


.sectionlight .content {
  position: relative;
  z-index: 2; /* text appears above overlay */
}

.booking-section {
  position: relative;
  min-height: 650px;
  background-image: url('Images/Bg\ image.png'); /* Replace with your high-quality image */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 50px 0;
  font-family: Arial, sans-serif;
  color: rgb(255, 255, 255);
}

.booking-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5); /* semi-transparent dark overlay */
  z-index: 1;
}

.booking-section .content {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  gap: 50px;
  z-index: 2;
}

/* Left info text */
.booking-section .info {
  flex: 1;
  max-width: 40%;
}

.booking-section .info h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.booking-section .info p {
  font-size: 16px;
  line-height: 1.6;
}

/* Right booking form */
.booking-section .booking-form {
  flex: 1;
  max-width: 50%;
  background-color: rgba(1, 45, 58, 0.95); /* semi-transparent white */
  color: rgb(255, 246, 246);
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.booking-section .booking-form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.booking-section .booking-form label {
  font-weight: bold;
  margin-bottom: 5px;
}

.booking-section .booking-form input,
.booking-section .booking-form select,
.booking-section .booking-form textarea {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.booking-section .booking-form textarea {
  resize: vertical;
  min-height: 80px;
}

.booking-section .booking-form .btn {
  margin-top: 20px;
  padding: 14px;
  background-color: rgb(255, 208, 1);
  color: rgb(0, 0, 0);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.booking-section .booking-form .btn:hover {
  background-color: #04ce55;
}

/* Responsive for mobile */
@media(max-width: 900px){
  .booking-section .content {
    flex-direction: column;
    align-items: center;
  }

  .booking-section .info,
  .booking-section .booking-form {
    max-width: 100%;
  }

  .booking-section .info {
    margin-bottom: 30px;
  }
}



textarea {
    min-height: 100px;
    resize: vertical;
}

.cta {
    background: linear-gradient(to right, #01272e, #02262c);
    color: white;
    text-align: center;
    padding: 20px 20px;
}

.center {
    text-align: center;
    font-size: 30px;
    color: rgb(255, 208, 1);
}


.footer {
  background: #010b18;
  color: #fff;
  padding: 50px 20px 20px;
  font-family: Arial, sans-serif;
  font-size: 25px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}

.footer h3, .footer h4 {
  margin-bottom: 15px;
}

.footer p {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.footer a:hover {
  color: #00c3ff;
}

.icon {
  width: 50px;
  height: 50px;

}

.iconbar{
    font-size: 15px;
    text-align: justify;
}


.social-icon {
  width: 50px;
  margin-right: 25px;
  transition: 0.3s;
}

.social-icon:hover {
  transform: scale(1.2);
}



.footer-bottom {
  text-align: center;
  margin-top: 8px;
  font-size: 13px;
  border-top: -5px solid rgba(255,255,255,0.2);
  padding-top: 6px;
}



footer {
    background: #0f2c33;
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
}
