* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  font-size:large;
}

:root {
  --light-green: #9be7c4;
  --light-blue: #8fd3f4;
  --dark: #1a1a1a;
}

body {
  background: #f9f9f9;
  color: var(--dark);
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(90deg, var(--light-green), var(--light-blue));
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
  z-index: 1000;
}

.logopic{
  width: 40px;
  height: 40px;
  border-radius: 30%;
  overflow:hidden ;
  position: relative;
  left:2em;
  top:2px;
  display: flex;
}

.logo {
  font-size: 22px;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;

}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

ul li{
    padding: 8px 18px;
  border: none;
  border-radius: 20px;
  background: linear-gradient(90deg, var(--light-green), var(--light-blue));
}

ul li:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.signin-btn {
  padding: 8px 18px;
  border: none;
  border-radius: 20px;
  background: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.signin-btn:hover {
  background: #000;
  color: #fff;
  transform: scale(1.1);
}

/* HOME / SLIDER */
.home {
  margin-top: 3rem;
  position: relative;
  height: 45rem;
  overflow: hidden;
}

.slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

.slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.slide.active {
  display: block;
}

.home-text {
  position: absolute;
  bottom: 90px;
  left: 50px;
  background: rgba(255, 255, 255, 0.8);
  padding: 25px;
  border-radius: 12px;
}


.book-btn {
  margin-top: 10px;
  padding: 10px 22px;
  border: none;
  border-radius: 20px;
  background: linear-gradient(90deg, var(--light-green), var(--light-blue));
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: larger;
}

.book-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* SECTIONS */
.section {
  padding: 60px 40px;
  text-align: center;
}

.light-bg {
  background: #eefcff;
}

.service-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.service {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}






/* Hide radio buttons */
input {
  display: none;
}

/* Title Buttons */
label {
  display: inline-block;
  padding: 10px 20px;
  background: #222;
  color: rgb(255, 255, 255);
  margin: 5px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 18px;
}

/* Content (hidden by default) */
.content {
  display: none;
  padding: 20px;
  margin-top: 10px;
  background: #e8e81b;
  border-radius: 10px;
  font-size: 17px;
  
}

/* Show LEFT content */
#left:checked ~ .leftContent {
  display: block;
  background-color: #b1d0ee;
  width: 50em;
  height: 40em;
  
}

/* Show RIGHT content */
#right:checked ~ .rightContent {
  display: block;
  background-color: #affccc;
}

box {
  width: 300px;
}

.textbox {
  width: 25%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #7e2828;
  border-radius: 5px;
  display: flex;
}

.whatsappForm{
  width: 300em;
  background-color: #e30f0f;
}
.btn1{
  color: #df5050;
}

 
 

/* CONTACT BUTTON */
.contact-btn {
  margin-top: 15px;
  padding: 10px 22px;
  border: none;
  border-radius: 25px;
  background: linear-gradient(90deg, var(--light-green), var(--light-blue));
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.call-btn ,.callw-btn{
  margin-top: 15px;
  padding: 10px 22px;
  border: none;
  border-radius: 25px;
  background: linear-gradient(90deg, var(--light-green), var(--light-blue));
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  color:#000;
}


.call-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.callw-btn:hover{
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}


/* FOOTER */
.footer {
  background: black;
  color: #fff;
  text-align: center;
  padding: 15px;
}


@media (max-width: 600px) {
.nav-links{
  font-size: 700px;
}





}

h1{
  color:#0c1f7b;
  font-size: xx-large;
}


.hero-slider {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

/* EACH SLIDE */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

/* TEXT OVER IMAGE */
.text-overlay {
  position: absolute;
  bottom: 15%;
  left: 8%;
  color: #fff;
  max-width: 500px;
  text-shadow: 0 4px 12px rgba(0,0,0,0.6);
}

.text-overlay h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.text-overlay p {
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* BUTTON */
.hero-btn {
  display: inline-block;
  padding: 12px 22px;
  background: linear-gradient(90deg, #13eb1d, #7fdcff);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 15px;
  transition: 0.3s ease;
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(19, 235, 29, 0.4);
}

/* MOBILE VIEW */
@media (max-width: 768px) {
  .text-overlay {
    left: 5%;
    right: 5%;
    bottom: 10%;
  }

  .text-overlay h2 {
    font-size: 24px;
  }

  .text-overlay p {
    font-size: 14px;
  }

}
