/* Global */
*,
*::before,
*::after {
  box-sizing: border-box;  /* Consistent sizing */
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f4f4f4;
  text-align: center;
}

/* Header */
header {
  background: white;
  padding: 60px 20px; /* Large top/bottom with horizontal padding */
}

.hero{
min-height:100vh;
width:100%;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
background:white;
text-align:center;
padding:20px;
}

/* Hero Logo */
.hero-logo {
  max-width: 420px;
  width: 100%;
  padding: 20px 0 30px; /* shorthand for top/right/left/bottom */
}

/* Hero Buttons */
.hero-buttons a {
  display: inline-block;
  margin: 10px;
  padding: 12px 24px;
  background: #1b5ea8;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.hero-buttons a:hover {
  background: #154d85; /* subtle hover effect */
}

.scroll-arrow{

margin-top:40px;
font-size:30px;
opacity:0.6;

animation: bounce 2s infinite;

}

@keyframes bounce{

0%,20%,50%,80%,100%{
transform:translateY(0);
}

40%{
transform:translateY(-10px);
}

60%{
transform:translateY(-5px);
}

}

/* Quote Section */
#quote-section {
  background: #1b5ea8;
  padding: 50px 20px;
}

/* Card inside the section */
.quote-card {
  max-width: 500px;
  margin: auto;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
}

/* Card heading */
.quote-card h3 {
  margin-bottom: 20px;
  color: #1b5ea8;
}

/* Card description */
.quote-card p {
  color: #1b5ea8;
}

/* Inputs */
.quote-card input {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 6px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

/* Button */
.quote-card button {
  padding: 12px 24px;
  background: #1b5ea8;
  color: white;
  border: none;
  border-radius: 8px;
  margin-top: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.quote-card button:hover {
  background: #154d85;
}

/* Price output */
#price {
  margin-top: 15px;
  font-weight: bold;
  font-size: 18px;
  color: #000;
}

/* Services Section */
.services {
  padding: 50px 20px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 10px;
}

.service-grid div {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Gallery Section */
.gallery {
  background: white;
  padding: 10px 20px 50px;
}

/* Map */
.map-container {
  width: 100%;
  height: 450px;
  overflow: hidden;
  border-radius: 10px;
  padding-bottom: 30px;
}

.map-container iframe {
  width: 90%;
  height: 520px;
  border: 0;
  margin-top: -70px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Trust Section */
.trust {
  padding: 40px 15px; /* Balanced vertical and horizontal padding */
  background: #1b5ea8;
  color: white;
  box-sizing: border-box;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  padding:0 10px;
  padding-bottom:40px;
  color: black;
  box-sizing: border-box;
}

.trust-grid div {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Facebook Section */
.facebook {
  padding: 50px 20px;
  background: white;
}

/* Footer */
footer {
  background: #1b5ea8;
  color: white;
  padding: 30px 20px;
}

/* Popup */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  padding: 20px;
  box-sizing: border-box;
  overflow-y: auto;
  z-index: 1000;
}

.popup-content {
  background: white;
  padding: 30px 25px;
  max-width: 400px;
  margin: 10% auto;
  border-radius: 8px;
  box-sizing: border-box;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.popup-content input,
.popup-content textarea {
  width: 100%;
  margin: 10px 0;
  padding: 10px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: Arial, sans-serif;
}

.close {
  cursor: pointer;
  float: right;
  font-size: 22px;
  font-weight: bold;
  user-select: none;
}

/* Booking */
.booking {
  background-color: #fafafa;
  padding: 15px 10px;
  box-sizing: border-box;
}

.footer{
  background:#1e5ea8;
  color:white;
  padding:40px 20px;
}

.footer-container{
  max-width:1000px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
}

.footer-left{
  max-width:500px;
  text-align:left;
}

.footer-right{
  display:flex;
  flex-direction:column;
  gap:25px;
  text-align:left;
}

.footer a{
  color:white;
  text-decoration:none;
  display:block;
  margin-top:6px;
}

.footer-bottom{
  text-align:center;
  margin-top:30px;
  font-size:14px;
  opacity:0.8;
}

@media (max-width:768px){

.footer-container{
flex-direction:column;
align-items:center;
text-align:center;
}

.footer-right{
text-align:center;
margin-top:10px;
}

.footer-left{
text-align:center;
}

}

.gallery{
padding:40px 20px;
text-align:center;
}

.carousel{
max-width:1100px;
margin:auto;
position:relative;
overflow:hidden;
}

.gallery-track{
display:flex;
gap:25px;
overflow-x:auto;
scroll-snap-type:x mandatory;
scroll-behavior:smooth;
padding:20px 10px;
cursor:grab;
}

.gallery-track:active{
cursor:grabbing;
}

.gallery-track::-webkit-scrollbar{
display:none;
}

/* Larger images */

.gallery-track img{
width:420px;
height:260px;
flex-shrink:0;
border-radius:12px;
object-fit:cover;
scroll-snap-align:center;
box-shadow:0 6px 16px rgba(0,0,0,0.18);
background:#f4f4f4;
}

/* Navigation dots */

.carousel-dots{
display:flex;
justify-content:center;
gap:10px;
margin-top:10px;
}

.carousel-dots button{
width:12px;
height:12px;
border-radius:50%;
border:none;
background:#cfcfcf;
cursor:pointer;
transition:0.2s;
}

.carousel-dots button.active{
background:#1b5ea8;
transform:scale(1.0);
}

/* Mobile adjustment */

@media (max-width:768px){

.gallery-track img{
width:320px;
height:200px;
}

}