.navbar-area {
    background-color: transparent !important;
    position: absolute;
    width: 100%;
    transition: background-color 0.3s ease;
}

.navbar-area.scrolled {
    background-color: white !important;
    position: fixed;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.theme-dark .navbar-area {
    background-color: rgba(0, 0, 0, 0.8) !important;
}

.desktop-nav .navbar .navbar-nav .nav-item a {
    font-size: 16px;
    color: white;
    line-height: 1;
    position: relative;
    font-weight: 500;
    font-family: "Jost", sans-serif;
    padding-left: 0;
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
    margin-left: 20px;
    margin-right: 20px;
}

.desktop-nav .navbar .navbar-nav .nav-item a:hover, .desktop-nav .navbar .navbar-nav .nav-item a:focus, .desktop-nav .navbar .navbar-nav .nav-item a.active {
    color: black;
}

.desktop-nav .navbar .navbar-nav .nav-item a {
    font-size: 16px;
    color: white;
    line-height: 1;
    position: relative;
    font-weight: 500;
    font-family: "Jost", sans-serif;
    padding: 0;
    margin: 0 20px;
    transition: color 0.3s ease;
}

.navbar-area.scrolled .navbar-nav .nav-item a {
    color: black !important;
}

.navbar-area.scrolled .navbar-nav .nav-item a:hover,
.navbar-area.scrolled .navbar-nav .nav-item a:focus,
.navbar-area.scrolled .navbar-nav .nav-item a.active {
    color: black !important;
}

.theme-dark .navbar-area.scrolled {
    color: black;
    background-color: #1a1a1a !important;
    box-shadow: 0 2px 8px rgba(255, 253, 253, 0.05);
}

.theme-dark .desktop-nav .navbar .navbar-nav .nav-item a:hover, .desktop-nav .navbar .navbar-nav .nav-item a:focus, .desktop-nav .navbar .navbar-nav .nav-item a.active {
    color: white;
}

.theme-dark .navbar-area.scrolled .navbar-nav .nav-item a {
    color: white !important;
}

.theme-dark .navbar-area.scrolled .navbar-nav .nav-item a:hover,
.navbar-area.scrolled .navbar-nav .nav-item a:focus,
.navbar-area.scrolled .navbar-nav .nav-item a.active {
    color: grey !important;
}

.banner-content-two h1,
.banner-content-two h3 {
    color: white !important;
}

.banner-btn a {
    color: white !important;
}

.single-blog-card {
    border: 1px solid #e58cc3 !important;
    border-radius: 0px;
    padding: 15px;
    background-color: #fff;
    transition: border-width 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
}

.single-blog-card:hover {
    border-width: 5px !important;
    box-shadow: 0 4px 12px #e58cc3;
    z-index: 2;
}

/*hero section */

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*.hero h3 {*/
/*    background: linear-gradient(*/
/*        90deg,*/
/*        #f36e75,*/
/*        #e06386,*/
/*        #ca559b*/
/*    );*/
/*    -webkit-background-clip: text;*/
/*    -webkit-text-fill-color: transparent;*/
/*    font-weight: 700;*/
/*}*/

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 40%,
        rgba(0, 0, 0, 0.2) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge, .hero-content a {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
}


.hero-btn {
    min-width: 260px;
    text-align: center;
}



@media (max-width: 1000px) {
    .hero::after {
        background: rgba(0, 0, 0, 0.13);
    }
}

.typing-cursor::after {
    content: "|";
    margin-left: 4px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50%, 100% {
        opacity: 1;
    }
    25%, 75% {
        opacity: 0;
    }
}


/*exceptional-services cards*/

/* Card Wrapper */
.adler-service {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: #c552a0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transition: transform .4s ease, box-shadow .4s ease;
}

/* Hover */
.adler-service:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

/* Image */
.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

/* Maintain aspect ratio instead of fixed height */
.service-img {
    aspect-ratio: 3 / 4;
}

/* Zoom */
.adler-service:hover img {
    transform: scale(1.08);
}

/* Overlay – */
.adler-service::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(197, 82, 160, 0.07) 0%,
        rgba(197, 82, 160, 0.63) 70%,
        rgba(197, 82, 160, 0.95) 100%
    );
}

/* Content */
.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    z-index: 2;
    color: #fff;
}

.service-content h3 {
    margin: 0;
    font-weight: 600;
    line-height: 1.4;
}

.service-content a {
    color: #fff;
    text-decoration: none;
}


