/* =========================================================
   DHIVEHI WEBSITE
   RTL VERSION
   All classes use dv- prefix
========================================================= */

.dv-page {
    direction: rtl;
    text-align: right;

    font-family:
        "MV Faseyha",
        "Faruma",
        "Noto Sans Thaana",
        "Noto Sans",
        Arial,
        sans-serif;

    width: 100%;
    min-height: 100vh;
    font-size: 16px;

    overflow-x: hidden;
}


/* =========================================================
   NAVIGATION
========================================================= */

.dv-site-nav {
    position: fixed;

    top: 0;
    right: 0;
    left: 0;

    width: 100%;

    z-index: 9999;

    padding: 16px 0;

    transition:
        padding .3s ease;
}


.dv-site-nav.scrolled {
    padding: 8px 0;
}


.dv-nav-container {
    width: var(--container);

    margin: 0 auto;

    min-height: 70px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding:
        6px 20px 6px 12px;

    border:
        1px solid
        rgba(255,255,255,.20);

    border-radius: 20px;

    background:
        rgba(9, 40, 25, 0.653);

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);

    box-shadow:
        0 12px 40px
        rgba(0,0,0,.13);

    transition:
        background .3s ease,
        box-shadow .3s ease,
        min-height .3s ease;
}


.dv-site-nav.scrolled
.dv-nav-container {

    background:
        rgba(10, 53, 34, .88);

    box-shadow:
        0 12px 40px
        rgba(0,0,0,.20);
}


/* =========================================================
   LOGO
========================================================= */

.dv-nav-logo {
    display: flex;

    align-items: center;

    gap: 13px;

    flex-shrink: 0;

    color: #fff;

    text-decoration: none;

    direction: rtl;
}


.dv-council-logo {
    width: 58px;
    height: 58px;

    padding: 4px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #fff;

    border-radius: 17px;

    overflow: hidden;

    box-shadow:
        0 8px 25px
        rgba(0,0,0,.18);
}


.dv-council-logo img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}


.dv-council-name {
    display: flex;

    flex-direction: column;

    line-height: 1.35;

    text-align: right;
}


.dv-council-title {
    font-size: 19px;

    font-weight: 750;

    color: #fff;

    white-space: nowrap;
}


.dv-council-location {
    margin-top: 5px;

    font-size: 13px;

    color:
        rgba(255,255,255,.78);

    white-space: nowrap;
}


/* =========================================================
   NAV MENU
========================================================= */

.dv-nav-menu {
    display: flex;

    align-items: right;

    justify-content: flex-start;

    gap: 3px;

    list-style: none;

    padding: 0;

    margin:
        0 auto 0 0;
}


.dv-nav-menu li {
    margin: 0;
}


.dv-nav-link {
    position: relative;

    display: block;

    padding:
        11px 13px;

    color:
        rgba(255,255,255,.90);

    text-decoration: none;

    font-size: 13px;

    font-weight: 600;

    border-radius: 10px;

    transition:
        color .3s ease,
        background .3s ease,
        transform .3s ease;

    white-space: nowrap;
}


.dv-nav-link:hover,
.dv-nav-link.active {

    color: #d1f29b;

    background:
        rgba(255,255,255,.09);
}


.dv-nav-link::after {

    content: "";

    position: absolute;

    right: 50%;

    bottom: 4px;

    width: 0;

    height: 2px;

    transform:
        translateX(50%);

    background: #c8ed91;

    border-radius: 10px;

    transition:
        width .3s ease;
}


.dv-nav-link:hover::after,
.dv-nav-link.active::after {

    width: 22px;
}


/* =========================================================
   NAV BUTTON
========================================================= */

.dv-nav-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    padding:
        11px 18px;

    margin-right: 7px;

    border-radius: 50px;

    background:
        var(--green-light);

    color: #173d28;

    text-decoration: none;

    font-size: 13px;

    font-weight: 750;

    box-shadow:
        0 8px 20px
        rgba(0,0,0,.10);

    transition:
        .3s ease;

    white-space: nowrap;
}


.dv-nav-button:hover {

    transform:
        translateY(-2px);

    background: #d8f5a7;

    color: #173d28;
}


/* =========================================================
   MOBILE MENU
========================================================= */

.dv-menu-toggle {

    display: none;

    width: 44px;
    height: 44px;

    margin-right: auto;

    border:
        1px solid
        rgba(255,255,255,.25);

    border-radius: 12px;

    background:
        rgba(255,255,255,.08);

    color: #fff;

    cursor: pointer;

    font-size: 22px;

    align-items: center;

    justify-content: center;
}


/* =========================================================
   HERO
========================================================= */

.dv-site-hero {

    position: relative;

    min-height: 75vh;

    width: 100%;

    overflow: hidden;

    direction: rtl;
}


.dv-site-hero-video {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 0;
}


.dv-site-hero-overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            270deg,
            rgba(0,38,25,.82),
            rgba(0,60,37,.48),
            rgba(0,20,10,.25)
        );
}


.dv-site-hero-green-glow {

    position: absolute;

    width: 600px;
    height: 600px;

    top: 10%;
    right: 5%;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(185,230,105,.17),
            transparent 68%
        );

    filter: blur(15px);

    z-index: 2;

    pointer-events: none;
}


/* =========================================================
   HERO CONTENT — HALF SCREEN
========================================================= */

.dv-site-hero-content {

    position: relative;

    z-index: 5;

    width: var(--container);

    height: 50%;

    min-height: 75vh;

    margin: auto;

    display: flex;

    align-items: center;

    /*
     * Keep content on the RIGHT side
     */
    justify-content: flex-start;

    padding-top: 15px;

    text-align: right;

    direction: rtl;
}


/*
 * Main Dhivehi content occupies approximately
 * HALF of the available screen.
 */

.dv-hero-text {

    width: 50%;

    max-width: 680px;

    min-width: 0;

    margin-right: 0;

    margin-left: auto;

    animation:
        dvHeroIn 1.1s ease forwards;
}


/* =========================================================
   HERO SUBTITLE
========================================================= */

.dv-hero-subtitle {

    margin-bottom: 16px;

    margin-top: 0;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

    color: #d9f3b5;

    text-align: right;
}


/* =========================================================
   HERO TITLE
========================================================= */

.dv-hero-title {

    margin:
        35px 0 0 0 !important;

    font-size:
        clamp(50px, 6vw, 88px);

    line-height: 1.1;

    font-weight: 850;

    color: #fff;

    text-shadow:
        0 6px 30px
        rgba(0,40,20,.45);

    text-align: right;
}


.dv-hero-title span {

    display: block;

    margin-top: 0;

    color: #c8ed91;
}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.dv-hero-description {

    max-width: 570px;

    margin:
        24px 0 28px auto;

    font-size: 16px;

    line-height: 2;

    color:
        rgba(255,255,255,.90);

    text-align: right;
}


/* =========================================================
   HERO ACTIONS
========================================================= */

.dv-hero-actions {

    display: flex;

    align-items: center;

    /*
     * Buttons stay aligned to the right
     * for Dhivehi RTL layout.
     */
    justify-content: flex-start;

    gap: 12px;

    flex-wrap: wrap;

    direction: rtl;
}


/* =========================================================
   HERO BUTTON
========================================================= */

.dv-hero-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding:
        14px 26px;

    border-radius: 50px;

    background: #b7df75;

    color: #173d28;

    font-weight: 750;

    text-decoration: none;

    box-shadow:
        0 12px 35px
        rgba(40,80,30,.30);

    transition:
        .35s ease;
}


.dv-hero-btn:hover {

    transform:
        translateY(-4px);

    background: #d5f3a4;

    color: #173d28;
}


.dv-hero-secondary-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding:
        13px 22px;

    border:
        1px solid
        rgba(255,255,255,.35);

    border-radius: 50px;

    color: #fff;

    text-decoration: none;

    background:
        rgba(255,255,255,.08);

    backdrop-filter:
        blur(10px);

    transition:
        .3s ease;
}


.dv-hero-secondary-btn:hover {

    background:
        rgba(255,255,255,.16);

    color: #fff;

    transform:
        translateY(-3px);
}


/* =========================================================
   HERO BOTTOM FADE
========================================================= */

.dv-hero-bottom-fade {

    position: absolute;

    z-index: 4;

    right: 0;

    bottom: 0;

    width: 100%;

    height: 110px;

    background:
        linear-gradient(
            transparent,
            rgba(247,250,245,.95)
        );

    pointer-events: none;
}


/* =========================================================
   HERO ANIMATION
========================================================= */

@keyframes dvHeroIn {

    from {

        opacity: 0;

        transform:
            translateY(35px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 992px) {

    .dv-hero-text {

        width: 60%;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .dv-site-hero-content {

        justify-content: flex-start;

        padding:
            100px 20px 50px;

    }


    .dv-hero-text {

        width: 100%;

        max-width: 100%;

    }


    .dv-hero-title {

        font-size:
            clamp(42px, 11vw, 65px);

    }


    .dv-hero-description {

        max-width: 100%;

        font-size: 15px;

    }


    .dv-hero-actions {

        justify-content: flex-start;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .dv-site-hero-content {

        padding:
            10px 15px 40px;

    }


    .dv-hero-text {

        width: 100%;

    }


    .dv-hero-title {

        font-size: 42px;

        line-height: 1.15;

    }


    .dv-hero-subtitle {

        font-size: 10px;

        letter-spacing: 1px;

    }


    .dv-hero-description {

        font-size: 14px;

        line-height: 1.9;

    }


    .dv-hero-btn,
    .dv-hero-secondary-btn {

        width: 100%;

    }

}

/* =========================================================
   MAIN
========================================================= */

.dv-council-main {

    direction: rtl;

    text-align: right;

    background:
        #f7faf5;
}


/* =========================================================
   SECTION
========================================================= */

.dv-section {

    width: var(--container);

    margin: 0 auto;

    padding:
        100px 0;
}


.dv-section-header {

    max-width: 760px;

    margin:
        0 auto 55px;

    text-align: center;
}


.dv-section-kicker {

    display: inline-block;

    margin-bottom: 12px;

    color: #51863f;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 1px;
}


.dv-section-title {

    margin: 0;

    color: #173d28;

    font-size:
        clamp(24px, 4vw, 30px);

    line-height: 1.25;

    font-weight: 850;
}


.dv-section-description {

    max-width: 680px;

    margin:
        18px auto 0;

    color: #66766b;

    font-size: 16px;

    line-height: 2;
}


/* =========================================================
   WELCOME
========================================================= */

.dv-welcome-section {

    padding-top: 110px;
}


.dv-welcome-grid {

    display: grid;

    grid-template-columns:
        1.15fr .85fr;

    gap: 35px;

    align-items: stretch;
}

.dv-quick-card {
    justify-content: flex-start;
}


.dv-welcome-card {

    padding: 45px;

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            #174c32,
            #0e3927
        );

    color: #fff;

    box-shadow:
        0 20px 55px
        rgba(20,70,40,.18);
}


.dv-welcome-card h2 {

    margin: 0 0 20px;

    font-size: 32px;

    color: #d5f3a4;
}


.dv-welcome-card p {

    margin: 0;

    color:
        rgba(255,255,255,.86);

    line-height: 2;

    font-size: 16px;
}


.dv-welcome-points {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 14px;

    margin-top: 30px;
}


.dv-welcome-point {

    display: flex;

    align-items: center;

    gap: 10px;

    color:
        rgba(255,255,255,.92);

    line-height: 1.8;
}


.dv-welcome-point-icon {

    width: 29px;
    height: 29px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #b7df75;

    color: #173d28;

    font-weight: 900;
}


/* =========================================================
   QUICK PANEL
========================================================= */

.dv-quick-panel {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 15px;
}


.dv-quick-card {

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 25px;

    border-radius: 22px;

    background: #fff;

    color: #173d28;

    text-decoration: none;

    border:
        1px solid
        rgba(30,70,45,.08);

    box-shadow:
        0 12px 35px
        rgba(30,70,45,.07);

    transition:
        .35s ease;
}


.dv-quick-card:hover {

    transform:
        translateY(-5px);

    box-shadow:
        0 20px 45px
        rgba(30,70,45,.13);

    color: #173d28;
}


.dv-quick-icon {

    width: 52px;
    height: 52px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 16px;

    background:
        #edf7df;

    font-size: 24px;
}


.dv-quick-card h3 {

    margin: 0 0 6px;

    font-size: 16px;

    line-height: 1.6;
}


.dv-quick-card span {

    color: #718074;

    font-size: 13px;
}


/* =========================================================
   SERVICES
========================================================= */

.dv-services-section {

    padding:
        100px 0;

    background:
        #edf5eb;
}


.dv-services-inner {

    width: var(--container);

    margin: auto;
}


.dv-services-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;
}


.dv-service-card {

    padding: 32px;

    border-radius: 24px;

    background: #fff;

    border:
        1px solid
        rgba(30,70,45,.08);

    box-shadow:
        0 12px 35px
        rgba(30,70,45,.06);

    transition:
        .35s ease;
}


.dv-service-card:hover {

    transform:
        translateY(-7px);

    box-shadow:
        0 22px 45px
        rgba(30,70,45,.12);
}


.dv-service-icon {

    font-size: 35px;

    width: 60px;
    height: 60px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 18px;

    background:
        #eff8e4;

    margin-bottom: 20px;
}


.dv-service-card h3 {

    margin: 0 0 12px;

    color: #173d28;

    font-size: 20px;

    line-height: 1.7;
}


.dv-service-card p {

    margin: 0 0 22px;

    color: #68766d;

    line-height: 2;

    font-size: 14px;
}


.dv-service-link {

    color: #4b8238;

    font-weight: 800;

    text-decoration: none;

    transition:
        .3s ease;
}


.dv-service-link:hover {

    color: #173d28;

    padding-right: 5px;
}


/* =========================================================
   ONLINE BANNER
========================================================= */

.dv-online-banner {

    margin-top: 30px;

    padding:
        28px 35px;

    border-radius: 22px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    background:
        #173d28;

    color: #fff;
}


.dv-online-banner h3 {

    margin: 0 0 6px;

    color: #d5f3a4;

    font-size: 21px;
}


.dv-online-banner p {

    margin: 0;

    color:
        rgba(255,255,255,.72);
}


.dv-online-banner a {

    display: inline-flex;

    padding:
        12px 20px;

    border-radius: 50px;

    background: #b7df75;

    color: #173d28;

    text-decoration: none;

    font-weight: 800;

    white-space: nowrap;
}


/* =========================================================
   VACANCIES
========================================================= */

.dv-vacancy-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 25px;
}


.dv-vacancy-card {

    padding: 28px;

    border-radius: 24px;

    background: #fff;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    border:
        1px solid
        rgba(30,70,45,.08);

    box-shadow:
        0 12px 35px
        rgba(30,70,45,.06);
}


.dv-vacancy-left {

    display: flex;

    align-items: center;

    gap: 18px;
}


.dv-vacancy-icon {

    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 16px;

    background: #edf7df;

    font-size: 25px;
}


.dv-vacancy-card h3 {

    margin: 0 0 5px;

    color: #173d28;

    font-size: 19px;
}


.dv-vacancy-card p {

    margin: 0;

    color: #718074;

    line-height: 1.8;

    font-size: 14px;
}


.dv-vacancy-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding:
        11px 18px;

    border-radius: 50px;

    background: #b7df75;

    color: #173d28;

    text-decoration: none;

    font-weight: 800;

    white-space: nowrap;
}


/* =========================================================
   CONSULTATION
========================================================= */

.dv-consultation-section {

    padding-top: 70px;
}


.dv-consultation-grid {

    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    gap: 30px;
}


.dv-consultation-feature {

    padding: 45px;

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            #174c32,
            #0d3524
        );

    color: #fff;
}


.dv-consultation-feature h3 {

    margin: 0 0 18px;

    color: #d5f3a4;

    font-size: 30px;
}


.dv-consultation-feature p {

    margin: 0 0 25px;

    color:
        rgba(255,255,255,.82);

    line-height: 2;
}


.dv-consultation-feature a {

    color: #c8ed91;

    text-decoration: none;

    font-weight: 800;
}


.dv-consultation-list {

    display: flex;

    flex-direction: column;

    gap: 15px;
}


.dv-consultation-item {

    padding: 25px 30px;

    border-radius: 20px;

    background: #fff;

    border:
        1px solid
        rgba(30,70,45,.08);

    box-shadow:
        0 10px 30px
        rgba(30,70,45,.06);
}


.dv-consultation-item h4 {

    margin: 0 0 8px;

    color: #173d28;

    font-size: 19px;
}


.dv-consultation-item p {

    margin: 0;

    color: #718074;

    line-height: 1.9;
}


/* =========================================================
   WEATHER
========================================================= */

.dv-weather-section {

    padding-bottom: 100px;
}


.dv-weather-card {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 25px;

    padding: 35px;

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            #173d28,
            #0e3424
        );

    color: #fff;

    box-shadow:
        0 20px 55px
        rgba(20,70,40,.15);
}


.dv-weather-location {

    color:
        rgba(255,255,255,.78);

    font-size: 15px;

    margin-bottom: 15px;
}


.dv-weather-status {

    font-size: 55px;

    font-weight: 850;

    color: #d5f3a4;

    line-height: 1;
}


.dv-weather-description {

    margin-top: 15px;

    font-size: 18px;

    color: #fff;
}


.dv-weather-updated {

    margin-top: 10px;

    color:
        rgba(255,255,255,.55);

    font-size: 12px;
}


.dv-weather-details {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 15px;
}


.dv-weather-detail {

    padding: 20px;

    border-radius: 18px;

    background:
        rgba(255,255,255,.08);

    border:
        1px solid
        rgba(255,255,255,.10);
}


.dv-weather-detail span {

    display: block;

    color:
        rgba(255,255,255,.65);

    font-size: 13px;

    margin-bottom: 8px;
}


.dv-weather-detail strong {

    font-size: 20px;

    color: #d5f3a4;
}


/* =========================================================
   CONTACT
========================================================= */

.dv-contact-section {

    width: var(--container);

    margin: 0 auto;

    padding:
        0 0 100px;
}


.dv-contact-cta {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding:
        45px 50px;

    border-radius: 28px;

    background:
        #dff0c7;
}


.dv-contact-cta h2 {

    margin: 0 0 8px;

    color: #173d28;

    font-size: 30px;
}


.dv-contact-cta p {

    margin: 0;

    color: #5d6e60;

    line-height: 1.9;
}


.dv-contact-btn {

    display: inline-flex;

    padding:
        14px 25px;

    border-radius: 50px;

    background: #173d28;

    color: #fff;

    text-decoration: none;

    font-weight: 800;

    white-space: nowrap;
}


/* =========================================================
   FOOTER
========================================================= */

.dv-council-footer {

    direction: rtl;

    background:
        #0d2f20;

    color: #fff;
}


.dv-footer-main {

    width: var(--container);

    margin: auto;

    padding:
        75px 0 55px;

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr 1fr;

    gap: 50px;
}


.dv-footer-brand {

    max-width: 380px;
}


.dv-footer-logo {

    display: flex;

    align-items: center;

    gap: 13px;

    color: #fff;

    text-decoration: none;
}


.dv-footer-logo-image {

    width: 55px;
    height: 55px;

    padding: 4px;

    object-fit: contain;

    background: #fff;

    border-radius: 14px;
}


.dv-footer-logo-text {

    font-size: 18px;

    font-weight: 800;
}


.dv-footer-brand p {

    margin:
        20px 0 0;

    color:
        rgba(255,255,255,.65);

    line-height: 2;
}


.dv-footer-heading {

    margin:
        0 0 20px;

    color: #d5f3a4;

    font-size: 17px;
}


.dv-footer-links {

    list-style: none;

    padding: 0;

    margin: 0;
}


.dv-footer-links li {

    margin-bottom: 12px;
}


.dv-footer-links a {

    color:
        rgba(255,255,255,.68);

    text-decoration: none;

    transition:
        .3s ease;
}


.dv-footer-links a:hover {

    color: #d5f3a4;

    padding-right: 5px;
}


.dv-footer-contact-item {

    color:
        rgba(255,255,255,.68);

    line-height: 2;

    margin-bottom: 15px;
}


.dv-footer-bottom {

    border-top:
        1px solid
        rgba(255,255,255,.08);
}


.dv-footer-bottom-inner {

    width: var(--container);

    margin: auto;

    min-height: 70px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    color:
        rgba(255,255,255,.50);

    font-size: 13px;
}


.dv-footer-bottom-links {

    display: flex;

    gap: 20px;
}


.dv-footer-bottom-links a {

    color:
        rgba(255,255,255,.50);

    text-decoration: none;
}


.dv-footer-bottom-links a:hover {

    color: #d5f3a4;
}


/* =========================================================
   CHATBOT
========================================================= */

.dv-councilor-widget {

    position: fixed;

    left: 25px;

    bottom: 25px;

    z-index: 10000;

    direction: rtl;
}


.dv-councilor-chat {

    position: absolute;

    left: 0;

    bottom: 80px;

    width: 370px;

    max-width:
        calc(100vw - 30px);

    height: 540px;

    border-radius: 25px;

    overflow: hidden;

    background: #fff;

    box-shadow:
        0 25px 70px
        rgba(0,0,0,.25);

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(20px)
        scale(.96);

    transform-origin:
        bottom left;

    transition:
        .3s ease;
}


.dv-councilor-chat.show {

    opacity: 1;

    visibility: visible;

    transform:
        translateY(0)
        scale(1);
}


.dv-councilor-header {

    min-height: 75px;

    padding:
        12px 18px;

    display: flex;

    align-items: center;

    gap: 12px;

    background:
        #173d28;

    color: #fff;
}


.dv-councilor-header-fish {

    width: 48px;

    height: 48px;

    flex-shrink: 0;
}


.dv-councilor-header h4 {

    margin: 0;

    font-size: 17px;
}


.dv-councilor-header span {

    display: block;

    margin-top: 3px;

    color:
        rgba(255,255,255,.65);

    font-size: 11px;
}


.dv-councilor-close {

    margin-right: auto;

    width: 35px;
    height: 35px;

    border: 0;

    border-radius: 50%;

    background:
        rgba(255,255,255,.10);

    color: #fff;

    font-size: 24px;

    cursor: pointer;
}


/* =========================================================
   CHAT BODY
========================================================= */

.dv-councilor-body {

    height:
        calc(100% - 75px);

    display: flex;

    flex-direction: column;

    background:
        #f4f8f1;
}


.dv-councilor-messages {

    flex: 1;

    overflow-y: auto;

    padding: 20px;

    display: flex;

    flex-direction: column;

    gap: 10px;
}


.dv-chat-row {

    display: flex;

    width: 100%;
}


.dv-chat-row.bot {

    justify-content: flex-start;
}


.dv-chat-row.user {

    justify-content: flex-end;
}


.dv-chat-message {

    max-width: 82%;

    padding:
        11px 14px;

    border-radius: 16px;

    line-height: 1.8;

    font-size: 13px;

    position: relative;
}


.dv-chat-row.bot
.dv-chat-message {

    background: #fff;

    color: #304b3a;

    border-bottom-right-radius: 4px;

    box-shadow:
        0 3px 10px
        rgba(0,0,0,.05);
}


.dv-chat-row.user
.dv-chat-message {

    background: #173d28;

    color: #fff;

    border-bottom-left-radius: 4px;
}


.dv-chat-time {

    display: block;

    margin-top: 4px;

    font-size: 9px;

    opacity: .5;
}


/* =========================================================
   TYPING
========================================================= */

.dv-councilor-typing {

    display: none;

    padding:
        0 20px 10px;
}


.dv-councilor-typing.show {

    display: block;
}


.dv-typing-dots {

    display: flex;

    gap: 4px;

    padding:
        10px 14px;

    width: max-content;

    background: #fff;

    border-radius: 15px;
}


.dv-typing-dots span {

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #7c9884;

    animation:
        dvTyping 1.2s infinite;
}


.dv-typing-dots span:nth-child(2) {

    animation-delay: .15s;
}


.dv-typing-dots span:nth-child(3) {

    animation-delay: .3s;
}


/* =========================================================
   CHAT INPUT
========================================================= */

.dv-councilor-input-area {

    padding:
        12px;

    background: #fff;

    border-top:
        1px solid
        rgba(0,0,0,.06);
}


.dv-councilor-form {

    display: flex;

    align-items: center;

    gap: 8px;
}


.dv-councilor-input {

    flex: 1;

    min-width: 0;

    height: 45px;

    padding:
        0 15px;

    border:
        1px solid
        #d9e2d8;

    border-radius: 50px;

    outline: none;

    direction: rtl;

    text-align: right;

    font-family: inherit;
}


.dv-councilor-input:focus {

    border-color: #8fbd63;

    box-shadow:
        0 0 0 3px
        rgba(143,189,99,.12);
}


.dv-councilor-send {

    width: 45px;
    height: 45px;

    flex-shrink: 0;

    border: 0;

    border-radius: 50%;

    background: #b7df75;

    color: #173d28;

    cursor: pointer;

    font-size: 18px;
}


.dv-councilor-send:disabled {

    opacity: .45;

    cursor: not-allowed;
}


.dv-chat-reset {

    display: none;

    width: 100%;

    margin-top: 8px;

    padding: 8px;

    border: 0;

    background: transparent;

    color: #51863f;

    cursor: pointer;

    font-family: inherit;

    font-weight: 800;
}


.dv-chat-reset.show {

    display: block;
}


/* =========================================================
   CHAT BUTTON
========================================================= */

.dv-councilor-button {

    width: 65px;
    height: 65px;

    border: 0;

    border-radius: 50%;

    background: #b7df75;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    box-shadow:
        0 15px 35px
        rgba(20,70,40,.25);

    transition:
        .3s ease;
}


.dv-councilor-button:hover {

    transform:
        translateY(-4px);

    box-shadow:
        0 20px 40px
        rgba(20,70,40,.30);
}


.dv-fish-icon {

    width: 43px;

    height: 43px;
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes dvHeroIn {

    from {

        opacity: 0;

        transform:
            translateY(35px);
    }

    to {

        opacity: 1;

        transform:
            translateY(0);
    }

}


@keyframes dvTyping {

    0%,
    60%,
    100% {

        transform:
            translateY(0);

        opacity: .45;
    }

    30% {

        transform:
            translateY(-4px);

        opacity: 1;
    }

}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.dv-scroll-reveal {

    opacity: 0;

    transform:
        translateY(35px);

    transition:
        opacity .8s ease,
        transform .8s ease;
}


.dv-scroll-reveal.visible {

    opacity: 1;

    transform:
        translateY(0);
}


.dv-reveal-left {

    transform:
        translateX(-45px);
}


.dv-reveal-right {

    transform:
        translateX(45px);
}


.dv-reveal-left.visible,
.dv-reveal-right.visible {

    transform:
        translateX(0);
}


.dv-reveal-delay-1 {

    transition-delay: .1s;
}


.dv-reveal-delay-2 {

    transition-delay: .2s;
}


.dv-reveal-delay-3 {

    transition-delay: .3s;
}


.dv-reveal-delay-4 {

    transition-delay: .4s;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1200px) {

    .dv-nav-link {

        padding:
            10px 8px;

        font-size: 12px;
    }

    .dv-nav-button {

        padding:
            10px 13px;

        font-size: 12px;
    }

    .dv-services-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 1000px) {

    .dv-nav-container {

        width:
            calc(100% - 30px);
    }


    .dv-nav-menu {

        position: absolute;

        top: calc(100% + 10px);

        right: 15px;

        left: 15px;

        display: none;

        flex-direction: column;

        align-items: stretch;

        padding: 15px;

        border-radius: 20px;

        background:
            rgba(10,53,34,.96);

        backdrop-filter:
            blur(20px);

        box-shadow:
            0 20px 50px
            rgba(0,0,0,.25);
    }


    .dv-nav-menu.show {

        display: flex;
    }


    .dv-nav-link {

        width: 100%;

        padding:
            13px 15px;

        text-align: right;
    }


    .dv-nav-button {

        width: 100%;

        margin:
            5px 0;

        box-sizing: border-box;
    }


    .dv-menu-toggle {

        display: flex;
    }


    .dv-welcome-grid,
    .dv-consultation-grid,
    .dv-weather-card {

        grid-template-columns:
            1fr;
    }


    .dv-footer-main {

        grid-template-columns:
            1fr 1fr;
    }

}


@media (max-width: 768px) {

    /* =====================================================
       HERO
    ===================================================== */

    .dv-site-hero-content {
        width: calc(100% - 35px);
        justify-content: flex-start;
    }

    .dv-hero-title {
        font-size: clamp(45px, 13vw, 70px);
    }

    .dv-hero-description {
        font-size: 15px;
        line-height: 1.9;
    }


    /* =====================================================
       SECTION SPACING
    ===================================================== */

    .dv-section {
        padding: 75px 0;
    }


    /* =====================================================
       NORMAL SECTIONS
    ===================================================== */

    .dv-services-inner,
    .dv-contact-section,
    .dv-footer-main,
    .dv-footer-bottom-inner {
        width: calc(100% - 35px);
    }


    /* =====================================================
       WELCOME SECTION
       EXACT SAME WIDTH AS NAVIGATION
    ===================================================== */

    .dv-welcome-section {
        width: calc(100% - 30px) !important;
        max-width: none;
        margin-left: auto;
        margin-right: auto;
        padding: 75px 0;
        box-sizing: border-box;
        margin-top: 50px;
    }

    .dv-welcome-grid {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        max-width: none;
        margin: 0;
        gap: 35px;
        box-sizing: border-box;
    }


    /* =====================================================
       GREEN WELCOME CARD
    ===================================================== */

    .dv-welcome-card {
        width: 100%;
        max-width: none;
        margin: 0;
        box-sizing: border-box;
        text-align: center;
    }

    .dv-welcome-card h2,
    .dv-welcome-card p {
        text-align: right;
    }


    /* =====================================================
       WELCOME POINTS
    ===================================================== */

    .dv-welcome-points {
        width: 100%;
        grid-template-columns: 1fr;
        justify-items: right;
    }

    .dv-welcome-point {
        width: 100%;
        justify-content:right;
        text-align: right;
    }

    .dv-welcome-point-icon {
        flex-shrink: 0;
    }


    /* =====================================================
       WHITE QUICK CARDS
    ===================================================== */

    .dv-quick-panel {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        max-width: none;
        margin: 0;
        gap: 15px;
        box-sizing: border-box;
    }

    /* Parent containing the quick cards */
    .dv-quick-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        width: 100%;
        direction: rtl;
    }

    .dv-quick-card {
        width: 100%;
        max-width: none;
        box-sizing: border-box;

        display: flex;
        align-items: center;
        justify-content: flex-start;

        direction: rtl;
        text-align: right;

        margin: 0;
    }
    
    .dv-quick-card h3,
    .dv-quick-card span {
        text-align: right;
    }


    /* =====================================================
       SERVICES
    ===================================================== */

    .dv-services-grid {
        grid-template-columns: 1fr;
    }


    /* =====================================================
       VACANCIES
    ===================================================== */

    .dv-vacancy-grid {
        grid-template-columns: 1fr;
    }

    .dv-vacancy-card {
        align-items: flex-start;
        flex-direction: column;
    }


    /* =====================================================
       ONLINE BANNER
    ===================================================== */

    .dv-online-banner {
        flex-direction: column;
        align-items: flex-start;
    }


    /* =====================================================
       CONTACT
    ===================================================== */

    .dv-contact-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 35px;
    }


    /* =====================================================
       FOOTER
    ===================================================== */

    .dv-footer-main {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .dv-footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 0;
    }


    /* =====================================================
       CHATBOT
    ===================================================== */

    .dv-councilor-widget {
        left: 15px;
        bottom: 15px;
    }

    .dv-councilor-chat {
        width: calc(100vw - 30px);
        height: 500px;
    }
}


@media (max-width: 480px) {

    .dv-council-title {

        font-size: 15px;
    }


    .dv-council-location {

        font-size: 11px;
    }


    .dv-council-logo {

        width: 50px;
        height: 50px;
    }


    .dv-hero-subtitle {

        font-size: 10px;

        letter-spacing: 1px;
    }


    .dv-hero-title {

        font-size: 48px;
    }


    .dv-hero-actions {

        width: 100%;

        flex-direction:
            column;

        align-items:
            stretch;
    }


    .dv-hero-btn,
    .dv-hero-secondary-btn {

        justify-content:
            center;

        width: 100%;

        box-sizing:
            border-box;
    }


    .dv-weather-details {

        grid-template-columns:
            1fr;
    }


    .dv-councilor-button {

        width: 58px;
        height: 58px;
    }

}


/* ============================================================
   DHIVEHI / RTL PAGE
   Addu Hulhudhoo Council
============================================================ */


/* ============================================================
   GLOBAL RTL
============================================================ */



[dir="rtl"] {
    direction: rtl;
    text-align: right;
}


/* Keep icons visually correct */
[dir="rtl"] .fas,
[dir="rtl"] .fa,
[dir="rtl"] .far,
[dir="rtl"] .fab {
    direction: ltr;
}


/* ============================================================
   TYPOGRAPHY
============================================================ */

[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3,
[dir="rtl"] h4,
[dir="rtl"] h5,
[dir="rtl"] h6,
[dir="rtl"] p,
[dir="rtl"] span,
[dir="rtl"] small,
[dir="rtl"] strong {
    font-family:
        "MV Waheed",
        "Faruma",
        "Noto Sans Thaana",
        sans-serif;
}


/* Numbers and Latin text remain readable */
[dir="rtl"] .display-5,
[dir="rtl"] h1,
[dir="rtl"] h2 {
    unicode-bidi: plaintext;
}


/* ============================================================
   PAGE HEADER
============================================================ */

[dir="rtl"] .sub-page-header {
    text-align: right;
    padding-top: 10px;
}

[dir="rtl"] .sub-opage-content {
    padding-right: 20px;
    padding-left: 20px;
}

[dir="rtl"] .sub-opage-content h6 {
    letter-spacing: 0;
    font-weight: 700;
}

[dir="rtl"] .sub-opage-content h1 {
    font-weight: 800;
    line-height: 1.6;
}

[dir="rtl"] .sub-opage-content p {
    line-height: 2;
}


/* ============================================================
   STATISTICS
============================================================ */

[dir="rtl"] .stats-section {
    direction: rtl;
}

[dir="rtl"] .stats-section .text-center {
    text-align: center !important;
}

[dir="rtl"] .floating-card {
    direction: rtl;
    text-align: right;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

[dir="rtl"] .floating-card:hover {
    transform: translateY(-7px);
    box-shadow:
        0 1rem 2rem rgba(0, 0, 0, 0.09) !important;
}


/* ============================================================
   STATISTIC HEADERS
============================================================ */

[dir="rtl"] .stats-section
.d-flex.justify-content-between {
    text-align: right;
}

[dir="rtl"] .stats-section
.d-flex.justify-content-between > div:first-child {
    flex: 1;
}

[dir="rtl"] .stats-section
.rounded-circle {
    flex-shrink: 0;
}


/* ============================================================
   STATISTIC VALUES
============================================================ */

[dir="rtl"] .display-5 {
    font-weight: 800;
    direction: ltr;
    unicode-bidi: plaintext;
}

[dir="rtl"] .stats-section strong {
    direction: ltr;
    unicode-bidi: plaintext;
}


/* ============================================================
   STATISTIC BREAKDOWN BOXES
============================================================ */

[dir="rtl"] .stats-section .p-3 {
    height: 100%;
}

[dir="rtl"] .stats-section
.d-flex.align-items-center.gap-2 {
    text-align: right;
}

[dir="rtl"] .stats-section
.d-flex.align-items-center.gap-2 > div:last-child {
    min-width: 0;
}


/* ============================================================
   TEAM SECTION
============================================================ */

[dir="rtl"] .team-section {
    direction: rtl;
}

[dir="rtl"] .team-section .text-center {
    text-align: center !important;
}

[dir="rtl"] .team-section p {
    line-height: 2;
}

[dir="rtl"] .team-member {
    direction: rtl;
    text-align: center;
    transition:
        transform 0.3s ease;
}

[dir="rtl"] .team-member:hover {
    transform: translateY(-6px);
}

[dir="rtl"] .team-member img {
    display: block;
    margin-right: auto;
    margin-left: auto;
}

[dir="rtl"] .team-member h6 {
    line-height: 1.8;
}

[dir="rtl"] .team-member small,
[dir="rtl"] .team-member p {
    line-height: 1.8;
}


/* ============================================================
   MAP SECTION
============================================================ */

.hulhudhoo-map-section {
    position: relative;
    overflow: hidden;
}

.hulhudhoo-map-wrapper {
    position: relative;
    width: 100%;
    min-height: 560px;
    overflow: hidden;
    border-radius: 0;
}

.hulhudhoo-map {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    border: 0;
}

.hulhudhoo-map-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            270deg,
            rgba(0, 0, 0, 0.72) 0%,
            rgba(0, 0, 0, 0.35) 38%,
            rgba(0, 0, 0, 0.05) 75%,
            rgba(0, 0, 0, 0.15) 100%
        );

    pointer-events: none;
}


/* ============================================================
   MAP INFORMATION CARD
============================================================ */

.hulhudhoo-map-card {
    position: absolute;

    top: 50%;
    right: 7%;

    transform:
        translateY(-50%);

    width: min(430px, 90%);

    padding: 32px;

    border-radius: 24px;

    color: #fff;

    background:
        rgba(15, 35, 25, 0.88);

    backdrop-filter:
        blur(14px);

    -webkit-backdrop-filter:
        blur(14px);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.28);

    direction: rtl;
    text-align: right;

    z-index: 5;
}

.map-eyebrow {
    display: flex;

    align-items: center;
    gap: 10px;

    color: #9ee5b4;

    font-size: 13px;
    font-weight: 700;

    line-height: 1.8;
}

.map-eyebrow i {
    color: #66d98a;
}


.map-divider {
    width: 100%;
    height: 1px;

    margin: 20px 0;

    background:
        rgba(255, 255, 255, 0.18);
}


.map-details {
    margin-bottom: 25px;
}

.map-detail {
    display: flex;

    align-items: flex-start;

    gap: 15px;
}

.map-detail > i {
    color: #70db92;

    font-size: 20px;

    margin-top: 4px;
}

.map-detail small {
    display: block;

    margin-bottom: 4px;

    color:
        rgba(255, 255, 255, 0.62);

    font-size: 13px;
}

.map-detail strong {
    display: block;

    color: #fff;

    font-size: 17px;

    line-height: 1.8;
}


/* ============================================================
   MAP BUTTON
============================================================ */

.map-explore-btn {
    display: flex;

    align-items: center;
    justify-content: space-between;

    width: 100%;

    padding: 14px 18px;

    color: #193b28;
    background: #fff;

    border-radius: 12px;

    text-decoration: none;

    font-weight: 700;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.map-explore-btn:hover {
    color: #193b28;
    background: #dff7e7;

    transform: translateY(-2px);
}

.map-explore-btn i {
    color: #193b28;
}


/* ============================================================
   MAP LABEL
============================================================ */

.map-label {
    position: absolute;

    bottom: 25px;
    right: 30px;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 10px 16px;

    color: #fff;

    background:
        rgba(20, 50, 35, 0.82);

    border:
        1px solid rgba(255, 255, 255, 0.15);

    border-radius: 50px;

    font-weight: 700;

    z-index: 6;

    direction: rtl;
}

.map-pulse {
    width: 10px;
    height: 10px;

    background: #59e486;

    border-radius: 50%;

    box-shadow:
        0 0 0 5px rgba(89, 228, 134, 0.2);

    animation:
        mapPulse 1.8s infinite;
}

@keyframes mapPulse {

    0% {
        box-shadow:
            0 0 0 0 rgba(89, 228, 134, 0.45);
    }

    70% {
        box-shadow:
            0 0 0 9px rgba(89, 228, 134, 0);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(89, 228, 134, 0);
    }

}


/* ============================================================
   SCROLL FLOAT ANIMATION
============================================================ */

.scroll-float {
    opacity: 0;

    transform:
        translateY(35px);

    transition:
        opacity 0.75s ease,
        transform 0.75s cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );
}

.scroll-float.visible {
    opacity: 1;

    transform:
        translateY(0);
}


/* ============================================================
   ANIMATION DELAYS
============================================================ */

.delay-1 {
    transition-delay: 0.08s;
}

.delay-2 {
    transition-delay: 0.16s;
}

.delay-3 {
    transition-delay: 0.24s;
}

.delay-4 {
    transition-delay: 0.32s;
}

.delay-5 {
    transition-delay: 0.40s;
}


/* ============================================================
   CHATBOT RTL
============================================================ */

#councilorChat {
    direction: rtl;
    text-align: right;
}

#councilorMessages {
    direction: rtl;
    text-align: right;
}

.chat-row {
    display: flex;
    width: 100%;
    margin-bottom: 10px;
}

.chat-row.bot {
    justify-content: flex-start;
}

.chat-row.user {
    justify-content: flex-end;
}

.chat-message {
    max-width: 82%;

    padding: 10px 14px;

    border-radius: 14px;

    line-height: 1.9;

    word-break: break-word;
}

.chat-row.bot .chat-message {
    color: #193b28;
    background: #eef8f1;
}

.chat-row.user .chat-message {
    color: #fff;
    background: #198754;
}

.chat-time {
    display: block;

    margin-top: 5px;

    opacity: 0.55;

    font-size: 10px;

    direction: ltr;

    text-align: left;
}


/* ============================================================
   CHAT INPUT
============================================================ */

#councilorInput {
    direction: rtl;
    text-align: right;

    font-family:
        "MV Waheed",
        "Faruma",
        "Noto Sans Thaana",
        sans-serif;
}

#councilorInput::placeholder {
    text-align: right;
}


/* ============================================================
   CHAT TYPING
============================================================ */

#councilorTyping {
    direction: rtl;
    text-align: right;
}

#councilorTyping.show {
    display: block;
}


/* ============================================================
   CHAT RESET
============================================================ */

#chatReset {
    display: none;
}

#chatReset.show {
    display: block;
}


/* ============================================================
   NAVIGATION RTL
============================================================ */

[dir="rtl"] #mainNavigation {
    direction: rtl;
}

[dir="rtl"] #mainNavigation ul {
    direction: rtl;
}

[dir="rtl"] #mainNavigation a {
    text-align: right;
}


/* ============================================================
   BUTTONS
============================================================ */

[dir="rtl"] button,
[dir="rtl"] .btn {
    font-family:
        "MV Waheed",
        "Faruma",
        "Noto Sans Thaana",
        sans-serif;
}


/* ============================================================
   BOOTSTRAP RTL HELPERS
============================================================ */

[dir="rtl"] .me-auto {
    margin-right: 0 !important;
    margin-left: auto !important;
}

[dir="rtl"] .ms-auto {
    margin-left: 0 !important;
    margin-right: auto !important;
}

[dir="rtl"] .text-start {
    text-align: right !important;
}

[dir="rtl"] .text-end {
    text-align: left !important;
}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 991.98px) {

    .hulhudhoo-map-wrapper {
        min-height: 620px;
    }

    .hulhudhoo-map-card {
        top: auto;

        right: 50%;
        bottom: 30px;

        transform:
            translateX(50%);

        width: min(
            500px,
            calc(100% - 30px)
        );
    }

    .map-label {
        top: 20px;
        right: 20px;

        bottom: auto;
    }

}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 767.98px) {

    [dir="rtl"] .sub-opage-content {
        padding-right: 10px;
        padding-left: 10px;
    }

    [dir="rtl"] .sub-opage-content h1 {
        font-size: 30px;
        line-height: 1.6;
    }

    [dir="rtl"] .sub-opage-content p {
        font-size: 15px;
        line-height: 2;
    }

    .hulhudhoo-map-wrapper {
        min-height: 650px;
    }

    .hulhudhoo-map-card {
        padding: 25px;

        border-radius: 20px;
    }

    .map-detail strong {
        font-size: 15px;
    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 575.98px) {

    [dir="rtl"] .stats-section,
    [dir="rtl"] .team-section {
        padding-right: 12px;
        padding-left: 12px;
    }

    [dir="rtl"] .floating-card .card-body {
        padding: 20px !important;
    }

    [dir="rtl"] .stats-section h5 {
        font-size: 16px;
        line-height: 1.7;
    }

    [dir="rtl"] .stats-section .display-5 {
        font-size: 2.3rem;
    }

    [dir="rtl"] .stats-section .p-3 {
        padding: 12px !important;
    }

    [dir="rtl"] .stats-section
    .d-flex.align-items-center.gap-2 {
        gap: 8px !important;
    }

    [dir="rtl"] .stats-section
    .rounded-circle {
        width: 32px !important;
        height: 32px !important;
    }

    .hulhudhoo-map-wrapper {
        min-height: 680px;
    }

    .hulhudhoo-map-card {
        right: 50%;
        bottom: 20px;

        width:
            calc(100% - 24px);

        padding: 20px;
    }

    .map-eyebrow {
        font-size: 11px;
    }

    .map-detail {
        gap: 10px;
    }

    .map-detail strong {
        font-size: 14px;
    }

    .map-explore-btn {
        padding: 12px 14px;

        font-size: 13px;
    }

    .map-label {
        right: 15px;
        top: 15px;

        padding: 8px 13px;

        font-size: 13px;
    }

    .chat-message {
        max-width: 88%;

        font-size: 14px;
        line-height: 1.8;
    }

}


/* ============================================================
   VERY SMALL SCREENS
============================================================ */

@media (max-width: 380px) {

    [dir="rtl"] .stats-section .col-6 {
        width: 100%;
    }

    .hulhudhoo-map-wrapper {
        min-height: 700px;
    }

    .hulhudhoo-map-card {
        padding: 17px;
    }

}


/* ============================================================
   REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .scroll-float {
        opacity: 1;
        transform: none;
    }

}




/* =========================================================
   DHIVEHI ANNOUNCEMENTS
========================================================= */

.announcements-section {

    width: 100%;

    max-width: 1580px;

    margin: 0 auto;

    padding: 45px 40px;

    box-sizing: border-box;

    direction: rtl;

}


/* =========================================================
   MAIN GRID
========================================================= */

.announcements-layout {

    display: grid;

    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(0, .85fr);

    gap: 22px;

    width: 100%;

}


/* =========================================================
   FEATURED
========================================================= */

.featured-announcement {

    position: relative;

    min-height: 340px;

    display: flex;

    align-items: center;

    padding: 38px 40px;

    overflow: hidden;

    border-radius: 26px;

    background:
        linear-gradient(
            135deg,
            #eaf7dc 0%,
            #dcefcf 48%,
            #d2e8c5 100%
        );

    border: 1px solid #d2e6c9;

    box-shadow:
        0 16px 35px rgba(48, 91, 61, .08);

    box-sizing: border-box;

}


.featured-announcement::before {

    content: "";

    position: absolute;

    width: 390px;

    height: 390px;

    left: -125px;

    top: 50%;

    transform: translateY(-50%);

    border-radius: 50%;

    border: 1px solid rgba(42, 108, 73, .10);

    box-shadow:
        0 0 0 25px rgba(42, 108, 73, .025),
        0 0 0 55px rgba(42, 108, 73, .018),
        0 0 0 90px rgba(42, 108, 73, .012);

}


.featured-announcement::after {

    content: "";

    position: absolute;

    width: 170px;

    height: 170px;

    left: 40px;

    top: 50%;

    transform: translateY(-50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(64, 137, 91, .13) 0%,
            rgba(64, 137, 91, .06) 42%,
            transparent 70%
        );

}


/* =========================================================
   FEATURED CONTENT
========================================================= */

.featured-content {

    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 650px;

    margin-right: auto;

    text-align: right;

}


.featured-label {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 16px;

    color: #4f8e69;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0;

}


.featured-label i {

    font-size: 14px;

}


.featured-announcement h3 {

    margin: 0 0 14px;

    color: #24563d;

    font-size: 29px;

    font-weight: 700;

    line-height: 1.7;

}


.featured-announcement p {

    max-width: 630px;

    margin: 0 0 25px;

    color: #5e7568;

    font-size: 13px;

    line-height: 2;

}


/* =========================================================
   BUTTON
========================================================= */

.featured-button {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 11px 19px;

    border-radius: 30px;

    background: #aee45f;

    color: #173d2b;

    font-size: 12px;

    font-weight: 750;

    text-decoration: none;

    transition: .25s ease;

}


.featured-button:hover {

    background: #bdf174;

    color: #173d2b;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(54, 100, 64, .12);

}


/* =========================================================
   RIGHT / ANNOUNCEMENT LIST
========================================================= */

.announcement-list {

    display: flex;

    flex-direction: column;

    gap: 14px;

}


/* =========================================================
   ANNOUNCEMENT CARD
========================================================= */

.announcement-item {

    flex: 1;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 18px;

    padding: 20px 21px;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f7fbf8 100%
        );

    border: 1px solid #dce9e1;

    border-radius: 17px;

    text-decoration: none;

    box-shadow:
        0 8px 22px rgba(40, 70, 55, .045);

    box-sizing: border-box;

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;

}


.announcement-item:hover {

    transform: translateY(-2px);

    border-color: #bcd6c6;

    box-shadow:
        0 13px 28px rgba(40, 70, 55, .09);

}


/* =========================================================
   CONTENT
========================================================= */

.announcement-item-content {

    min-width: 0;

    flex: 1;

    text-align: right;

}


.announcement-item-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    margin-bottom: 7px;

}


.announcement-category {

    color: #337354;

    font-size: 10px;

    font-weight: 800;

}


.announcement-date {

    flex-shrink: 0;

    color: #82968b;

    font-size: 9.5px;

    white-space: nowrap;

}


.announcement-item h4 {

    margin: 0 0 5px;

    color: #214936;

    font-size: 14px;

    font-weight: 700;

    line-height: 1.8;

}


.announcement-item p {

    margin: 0;

    color: #70847a;

    font-size: 11px;

    line-height: 1.9;

}


/* =========================================================
   ARROW
========================================================= */

.announcement-arrow {

    width: 36px;

    height: 36px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: #edf6f0;

    color: #438463;

    font-size: 12px;

    transition: .25s ease;

}


.announcement-item:hover .announcement-arrow {

    background: #dceee3;

    color: #2d6d4b;

    transform: translate(-2px, -2px);

}


/* =========================================================
   VIEW ALL
========================================================= */

.announcements-bottom {

    display: flex;

    justify-content: flex-start;

    margin-top: 17px;

}


.view-all-link {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #438463;

    font-size: 12px;

    font-weight: 700;

    text-decoration: none;

}


.view-all-link:hover {

    color: #245d3e;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .announcements-section {

        padding-left: 30px;

        padding-right: 30px;

    }

    .announcements-layout {

        grid-template-columns: 1fr;

    }

    .featured-announcement {

        min-height: 300px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .announcements-section {

        padding: 30px 16px;

    }

    .announcements-layout {

        gap: 16px;

    }

    .featured-announcement {

        min-height: auto;

        padding: 30px 25px;

        border-radius: 21px;

    }

    .featured-announcement h3 {

        font-size: 23px;

        line-height: 1.8;

    }

    .featured-announcement p {

        font-size: 12px;

        line-height: 2;

    }

    .featured-announcement::before,
    .featured-announcement::after {

        display: none;

    }

    .announcement-item {

        padding: 18px;

    }

    .announcement-item-top {

        align-items: flex-start;

    }

    .announcement-item h4 {

        font-size: 13px;

        line-height: 1.8;

    }

    .announcement-item p {

        font-size: 10.5px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 450px) {

    .announcements-section {

        padding-left: 12px;

        padding-right: 12px;

    }

    .featured-announcement {

        padding: 25px 20px;

    }

    .featured-announcement h3 {

        font-size: 21px;

    }

    .announcement-item {

        padding: 15px;

    }

    .announcement-item-top {

        flex-direction: column;

        align-items: flex-start;

        gap: 4px;

    }

}



