body,html{margin:0;padding:0;overflow-x:hidden}html{scroll-behavior:smooth}.animated-toggler{padding:.25rem;width:42px;height:42px;border:none;background:transparent}.hamburger-icon{fill:none;stroke:#fff;stroke-width:5;stroke-linecap:round;cursor:pointer;transition:all .3s ease;width:36px!important;height:36px!important}.hamburger-icon .line{transition:.3s all ease-in-out}.animated-toggler.active .line.top{d:path("M 30,30 L 70,70")}.animated-toggler.active .line.middle{opacity:0}.animated-toggler.active .line.bottom{d:path("M 30,70 L 70,30")}.navbar-toggler:focus,.navbar-toggler:active{outline:none;box-shadow:none}.fixed-top-on-scroll{position:fixed;top:0;width:100%;z-index:1030;transition:top .3s ease}.bg-dblue{background-color:#082754}.no-x-padding{padding-left:0!important;padding-right:0!important;margin-left:0!important;margin-right:0!important}#footer{width:100%;margin:0!important;padding:0!important}#backToTop{border-radius:50%;width:44px;height:44px;padding:0;text-align:center;line-height:44px}.blink_me{animation:blinker 1s linear infinite}@keyframes blinker{50%{opacity:0}}.hero-banner{position:relative;width:100%;height:calc(100vh - 70px);overflow:hidden}.hero-banner img{width:100%;height:100%;object-fit:cover}.scroll-down-btn{position:absolute;bottom:20px;left:50%;transform:translateX(-50%);display:flex;flex-direction:column;align-items:center;cursor:pointer;z-index:10}.scroll-down-btn .arrow{animation:arrowBounce 1.5s infinite;opacity:0;margin:2px 0;stroke:#fff}.scroll-down-btn .arrow:nth-child(1){animation-delay:0s}.scroll-down-btn .arrow:nth-child(2){animation-delay:.3s}@keyframes arrowBounce{0%{opacity:0;transform:translateY(-10px)}50%{opacity:1;transform:translateY(0)}100%{opacity:0;transform:translateY(10px)}}

.isls-hero-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.isls-hero-image,
.isls-hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.isls-hero-image img {
    object-fit: cover;
    object-position: center;
}

/* Existing overlay */
.isls-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35); /* Adjust opacity if needed */
    z-index: 1;
}

/* Keep arrow above overlay */
.isls-scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}



/* Owl Navigation */
.owl-carousel {
    position: relative;
}

.owl-carousel .owl-nav {
    margin-top: 0;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50% !important;
    background: rgba(0,0,0,.55) !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,.25) !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    z-index: 100;
}

.owl-carousel .owl-nav button.owl-prev {
    left: 15px;
}

.owl-carousel .owl-nav button.owl-next {
    right: 15px;
}

.owl-carousel .owl-nav button i {
    font-size: 20px;
}

.owl-carousel .owl-nav button:hover {
    background: #b8860b !important; /* Your theme color */
    border-color: #b8860b !important;
    transform: translateY(-50%) scale(1.08);
}

.owl-carousel .owl-nav button:focus {
    outline: none;
    box-shadow: none;
}

.owl-carousel .owl-nav button span {
    display: none;
}

/* Mobile */
@media (max-width: 767px) {
    .owl-carousel .owl-nav button.owl-prev,
    .owl-carousel .owl-nav button.owl-next {
        width: 42px;
        height: 42px;
    }

    .owl-carousel .owl-nav button i {
        font-size: 16px;
    }

    .owl-carousel .owl-nav button.owl-prev {
        left: 10px;
    }

    .owl-carousel .owl-nav button.owl-next {
        right: 10px;
    }
}

/*====================================
  Conversations Section
====================================*/

.conversations-section{
    background:#f8f9fb;
}

.section-subtitle{
    max-width:760px;
    margin:15px auto 0;
    color:#666;
    font-size:17px;
    line-height:1.7;
}

.conversation-card{
    background:#fff;
    border-radius:16px;
    padding:35px 28px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
    border-top:4px solid #0b4ea2;
}

.conversation-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.conversation-icon{
    width:80px;
    height:80px;
    margin:0 auto 25px;
    border-radius:50%;
    background:#0b4ea2;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
}

.conversation-card h4{
    font-size:22px;
    font-weight:700;
    margin-bottom:15px;
    color:#0b4ea2;
}

.conversation-card p{
    color:#555;
    line-height:1.8;
    margin:0;
}

@media(max-width:991px){

    .conversation-card{
        padding:30px 22px;
    }

    .conversation-card h4{
        font-size:20px;
    }

}

@media(max-width:767px){

    .conversation-icon{
        width:70px;
        height:70px;
        font-size:28px;
    }

    .conversation-card{
        text-align:center;
    }

}