body {
    font-family: sans-serif;
    background-color: #0C1C2B;
    color: #e2e8f0;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.navbar ul li a:hover{
    color: #fff;
}

.navbar ul li a{
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
}

@media screen and (min-width: 992px){
    .navbar form .search-icon{
        margin:0 30px !important;
    }   
}

.navbar form button{
    border: 1px solid #fff;
    font-size: 14px;
    text-transform: uppercase;
    padding: 10px 28px;
}

.navbar form button:hover{
    border: 1px solid #fff;
}

.navbar-toggler:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* carousel */
.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%; /* makes them circles */
  background-color: #fff;
  border: none;
  margin: 0 5px;
  transition: all 0.3s ease;
  opacity: inherit;
}

.carousel-indicators .active {
  background-color: #0095da; /* your theme color */
  transform: scale(1.2);
}

/* motive */
.header-content {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    font-weight: 300;
    line-height: 1.65;
    margin-top: 3.5rem;
    margin-bottom: 3.2rem;
    /* max-width: 720px; */
}

/* Logo Container */
.logo-container {
    position: relative;
    display: inline-block;
    width: 380px;
    height: 380px;
}

/* Main Orange Pulsating Glow */
.logo-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.45) 0%, rgba(255, 107, 0, 0) 70%);
    border-radius: 50%;
    filter: blur(20px);
    animation: pulse-glow 3s ease-in-out infinite;
    z-index: -1;
    opacity: 0.9;
}

/* Secondary softer glow layer for more depth */
.logo-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(255, 140, 50, 0.25) 0%, rgba(255, 107, 0, 0) 70%);
    border-radius: 50%;
    filter: blur(35px);
    animation: pulse-glow 3s ease-in-out 1.2s infinite;
    z-index: -2;
}

.logo {
    width: 380px;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 40px rgb(255, 81, 1));
}

/* Pulsing Glow Animation */
@keyframes pulse-glow {
    0% {
        transform: translate(-50%, -50%) scale(0.85);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.20);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(0.85);
        opacity: 0.6;
    }
}

/* Responsive */
@media (max-width: 480px) {
    .logo-container {
        width: 300px;
        height: 300px;
    }
    .logo {
        width: 300px;
    }
    .logo-container::before,
    .logo-container::after {
        width: 300px;
        height: 300px;
    }
}

@media (min-width: 1200px) {
    .logo-container {
        width: 650px;
        height: 650px;
    }

    .logo {
        width: 650px;
    }

    .logo-container::before {
        width: 650px;
        height: 650px;
    }

    .logo-container::after {
        width: 710px;
        height: 710px;
    }
}


.coming-soon{
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    font-weight: 300;
    line-height: 1.65;
    margin-top: 3.5rem;
    margin-bottom: 3.2rem;
}

/* Lake Image with top and bottom shadow fade */
.lake-image-container {
    position: relative;
    width: 100%;
    margin: 2.5rem auto 0;
    overflow: hidden;
}

.lake-image-container::before,
.lake-image-container::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 90px;
    z-index: 2;
    pointer-events: none;
}

.lake-image-container::before {
    top: 0;
    background: linear-gradient(to bottom, #0C1C2B, transparent);
}

.lake-image-container::after {
    bottom: 0;
    background: linear-gradient(to top, #0C1C2B, transparent);
}

.lake-image {
    width: 100%;
    height: clamp(200px, 35vw, 360px);
    object-fit: cover;
    display: block;
}

/* services */
.services{
    margin-top: 70px;
}

.services .card{
    background-color: transparent;
    border: none;
    color: #fff;
}

@media screen and (min-width: 768px){
    .services .card{
        width: 22rem;
        margin-bottom: 30px;
    }
}

@media screen and (min-width: 992px){
    .services .card{
        width: 19rem;
        margin-bottom: 30px;
    }
}

@media screen and (min-width: 1200px){
    .services .card{
        width: 23rem;
        margin-bottom: 30px;
    }
}

.services .card{
    margin-bottom: 40px;
}

.services .card .card-body .card-title{
    text-transform: uppercase;
}

.footer-line{
    font-size: clamp(1.1rem, 3vw, 1.6rem);
    font-weight: 300;
    line-height: 1.65;
    margin-top: 3.5rem;
    margin-bottom: 6rem;
    text-align: center;
}

/* footer */
footer{
    color: #fff !important;
}

.footer h5{
    text-transform: uppercase;
}

.footer .nav-item{
    text-transform: uppercase;
}

.footer h5{
    font-size: 15px;
    font-weight: 600;
}

.footer ul li a{
    font-size: 13px;
    text-decoration: underline;
}

.footer input::placeholder{
    color: #fff !important;
    opacity: 1; /* important for full white */
}

.social-links{
    align-items: center;
    margin-top: 20px;
    text-align: center;
}

.social-icon{
    color: #f0f0f0;
    transition: color 0.3s ease;
    display: inline-flex;
    pointer-events: auto;
    margin-right: 35px;
}

.copyright{
    margin-top: 28px;
    font-size: 0.58rem;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}