body { margin:0; font-family: Arial, sans-serif; line-height:1.6; }
h1,h2,h3,p {padding-left: 10px;}
.navbar { display:flex; justify-content:space-between; align-items:center; padding:10px 20px; background:#fff; box-shadow:0 2px 5px rgba(0,0,0,0.1); position:sticky; top:0; z-index:999; }
.navbar .logo img { height:50px; margin-right:10px; vertical-align:middle; }
.nav-links { display:flex; list-style:none; margin:0; padding:0; }
.nav-links li { margin-left:20px; }
.nav-links li a { text-decoration:none; color:#333; font-weight:bold; }
.cta-buttons a { margin-left:15px; padding:10px 15px; text-decoration:none; border-radius:5px; font-weight:bold; }
.call-btn { background:#007bff; color:#fff; }
.book-btn { background:#28a745; color:#fff; }
.hamburger { display:none; flex-direction:column; cursor:pointer; }
.hamburger span { height:3px; width:25px; background:#333; margin:4px 0; border-radius:2px; }

@media(max-width:768px){
    .nav-links, .cta-buttons { display:none; flex-direction:column; }
    .hamburger { display:flex; }
    .nav-links.active, .cta-buttons.active { display:flex; }
}


.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    padding-left: 10px;
}
.social-icon {
    width: 32px;
    height: 32px;
    transition: transform 0.3s;
}
.social-icon:hover {
    transform: scale(1.1);
}

/*adding*/
.hero {
    position: relative;
    width: 100%;
    height: 70vh; /* Adjust height as needed */
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: rgba(0,0,0,0.35); /* optional dark overlay for text readability */
    padding: 0 20px;
    box-sizing: border-box;
}

.hero-text h1 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 15px;
}

.hero-text p {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.hero-text .call-btn,
.hero-text .book-btn {
    display: inline-block;
    margin: 0 10px;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
}

.hero-text .call-btn {
    background: #007bff;
    color: #fff;
}

.hero-text .book-btn {
    background: #28a745;
    color: #fff;
}

/* Responsive adjustments */
@media(max-width:768px){
    .hero-text h1 { font-size: 2rem; }
    .hero-text p { font-size: 1rem; }
    .hero-text .call-btn, .hero-text .book-btn { padding: 10px 20px; font-size: 0.9rem; }
}
/*end*/

