body {
font-family: 'Outfit', sans-serif !important;
}
.banner {
background: #ffffff;
}
.banner-section h2 {
font-size: 38px;
}
.header-para {
font-size: 22px;
text-align: justify;
}
.banner {
/* background: linear-gradient(to right, #ffffff 0%, transparent 0%), 
url(https://unitedtvinternet.com/wp-content/uploads/2025/09/hero-banner-1.webp) 
no-repeat center left;
background-size: cover; */
}
/* Tablet and Desktop → gradient + image */
@media (min-width: 768px) {
.banner {
background: linear-gradient(to right, #ffffff 29%, transparent 50%), url(https://nowgetconnect.com/assets/images/hero-banner-1.jpeg) no-repeat center right;
background-size: cover;
}
.banner-section h2 {
font-size: 50px;
}
.header-para {
font-size: 20px;
}
}
.header-btn {
background: #1f5494 !important;
border-radius: 0 !important;
}
.feature-icon {
width: 76px;
height: 76px;
}
.feature-icon i {
font-size: 1.75rem;
}
/* ===== Fluent Form Bootstrap Style ===== */

/* Shake animation */
@keyframes shake {
0% {
transform: rotate(0deg);
}
20% {
transform: rotate(15deg);
}
40% {
transform: rotate(-15deg);
}
60% {
transform: rotate(10deg);
}
80% {
transform: rotate(-10deg);
}
100% {
transform: rotate(0deg);
}
}
/* Apply animation to phone icon */
.shake-icon {
display: inline-block;
animation: shake 0.8s infinite;
transform-origin: center;
}
footer a {
color: #fff !important;
text-decoration: none;
list-style-type: none;
}
footer ul li {
list-style-type: none;
}
.menu-item .nav-link {
/* font-weight:bold !important; */
color: #fff !important;
text-transform: uppercase !important;
}
.hover-lift {
transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.hover-lift:hover {
transform: translateY(-6px);
box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
.bg-fixed {
background-attachment: scroll;
}
}
.footer-link li .nav-link {
font-weight: 400 !important;
color: #fff !important;
text-transform: capitalize !important;
}
.custom-logo {
width: 110px;
height: 40px;
}
#button-glow {
box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
animation: pulse 1.5s infinite;
transition: transform 0.3s ease;
}
/* Animation */
@keyframes pulse {
0% {
transform: scale(0.9);
box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
}
70% {
transform: scale(1);
box-shadow: 0 0 0 50px rgba(255, 255, 255, 0);
}
100% {
transform: scale(0.9);
box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
}
}
/* According to Theme */
.carousel-bg {
background-size: cover;
background-position: center;
width: 100%;
height: 100vh;
}
.carousel-inner,
.carousel-item {
height: 100vh;
}
.carousel-overlay {
z-index: 2;
padding: 0 15px;
background: rgba(0, 0, 0, 0.45);
/* dark overlay for readability */
}
/* Navbar default */
.navbar {
background: transparent;
transition: all 0.4s ease;
}
/* Sticky header */
header {
position: sticky;
top: 0;
z-index: 9999;
transition: all 0.4s ease;
}
/* On scroll */
header.scrolled .navbar {
background-color: #fff !important;
box-shadow: rgba(0, 0, 0, 0.25) 0 0 10px;
}
/* Optional: Change link and brand color on scroll */
header.scrolled .nav-link,
header.scrolled .navbar-brand {
color: #000 !important;
transition: color 0.3s ease;
}
/* Default link color (optional) */
.nav-link,
.navbar-brand {
color: #fff;
/* agar white navbar ke upar ho */
transition: color 0.3s ease;
}
#home {
margin-top: -56px;
}
@media screen and (max-width: 700px) {
#home {
margin-top: 0px;
}
.carousel-overlay {
height: auto;
}
.navbar {
background-color: #fff;
color: #000;
}
}
header .navbar-brand {
font-size: 15px;
}
.carousel-overlay {
height: 100%;
}
  #amenities img {
            max-width: 70px;
        }
        #amenities ul {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            margin: 30px 0;
            list-style-type: none;
            gap: 20px;
            text-align: center;
        }
.form-box {
  position: absolute;
  right: 50px;
  top: 100px;
  max-width: 400px;
}
@media screen and (max-width: 700px) {
	.form-box {
position: unset;
}
}
/* === Fluent Form Custom Design === */
.fluentform_wrapper_1 {
  background: rgba(0, 0, 0, 0.6);
  padding: 30px;
  border-radius: 5px;
  color: #fff;
  width: 100%;
  max-width: 400px;
}

.fluentform_wrapper_1 h3,
.fluentform_wrapper_1 legend {
  color: #fff !important;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 15px;
}

/* Input & Textarea Fields */
.fluentform_wrapper_1 input[type="text"],
.fluentform_wrapper_1 input[type="email"],
.fluentform_wrapper_1 input[type="number"],
.fluentform_wrapper_1 textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
  color: #fff;
  width: 100%;
  padding: 10px 5px;
  font-size: 14px;
}

.fluentform_wrapper_1 input::placeholder,
.fluentform_wrapper_1 textarea::placeholder {
  color: #ddd;
  opacity: 0.9;
}

/* Labels */
.fluentform_wrapper_1 label {
  display: none !important; /* hides redundant labels if placeholders exist */
}

/* Submit Button */
.fluentform_wrapper_1 .ff-btn-submit {
  background-color: #0062cc;
  color: #fff;
  padding: 10px 25px;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  transition: 0.3s;
  width: 100%;
}

.fluentform_wrapper_1 .ff-btn-submit:hover {
  background-color: #004da5;
}

/* Checkbox consent text */
.fluentform_wrapper_1 .ff-el-input--content {
  color: #ccc;
  font-size: 13px;
}

/* Remove box shadow & default borders */
.fluentform_wrapper_1 fieldset {
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
}
