/********** Template CSS **********/
:root {
    --primary: #00d1d1;
    --accent: #FF6B4A;
    --light: #F8F8F8;
    --dark: #0D1A1A;
    --light-dark:#122525;
}
.text-primary{color: var(--primary)!important;}
.btn-primary{background-color: var(--primary)!important;border-color: var(--primary)!important;border-radius: 0;}
.btn-primary:hover{background-color: #00b8b8!important;border-color: #00b8b8!important;}
.border-primary{border-color: var(--primary)!important;}
.text-accent{color: var(--accent)!important;}
.btn-accent{background-color: var(--accent)!important;border-color: var(--accent)!important;border-radius: 0;color: #fff!important;}
.btn-accent:hover{background-color: #e55a3a!important;border-color: #e55a3a!important;}
.border-accent{border-color: var(--accent)!important;}
.bg-dark{background-color: var(--dark)!important;}
.bg-light-dark{background-color: var(--light-dark)!important;}
body{
    font-family: "DM Sans", sans-serif;
    font-weight: normal;
    color: var(--light);
    background-color: var(--dark);
}
h1,h2,h3,h4,h5,h6{font-family: "Albert Sans", sans-serif;color: var(--light);}
h1{font-weight: 800!important;}
p{font-family: "DM Sans", sans-serif;color: var(--light);}
.header{background-color: var(--light-dark)}
.logo h1{text-transform: uppercase;font-size: 25px;}
a{text-decoration: none;}
.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}
/* For modern browsers */
::placeholder {
  color: var(--light)!important;
  font-size: 14px;
  opacity: 1;
}

/* For Firefox */
input:-moz-placeholder {
  color: var(--light)!important;
  font-size: 14px;
  opacity: 1;
}

textarea:-moz-placeholder {
  color: var(--light)!important;
  font-size: 14px;
  opacity: 1;
}

/* For Internet Explorer (optional/legacy support) */
input:-ms-input-placeholder {
  color: var(--light)!important;
  font-size: 14px;
  opacity: 1;
}
.form-control{color: var(--light)!important;border-radius: 0;background-color: transparent!important;}
.form-control:focus{color: var(--light)!important;background-color: transparent!important;box-shadow: 0 0 0 0.15rem rgba(0,209,209,0.25)!important;border-color: var(--primary)!important;}
.form-select{color: var(--light)!important;background-color: var(--dark)!important;border-radius: 0;}
.form-select option{background-color: var(--dark);color: var(--light);}
.form-floating>.form-control::placeholder{color: transparent!important;}
.form-floating>.form-control:-moz-placeholder{color: transparent!important;}
.form-floating>.form-control::-moz-placeholder{color: transparent!important;}
.form-floating>label{color: #999!important;}
.form-floating>.form-control:focus~label, .form-floating>.form-control:not(:placeholder-shown)~label, .form-floating>.form-select~label{
    color:var(--primary)!important;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-outline-body {
    color: #2563eb;
    border-color: #cbd5e1;
    background: #ffffff;
}

.btn-outline-body:hover {
    color: #FFFFFF;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    border-color: transparent;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 30px 0;
    color: var(--light);
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}
.navbar-toggler{color:var(--light)!important;padding: 0;border: 0;}
.navbar-toggler:focus{box-shadow: none;}
.navbar-toggler-icon{
    background-image: none!important;
    color: var(--light)!important;
    font-size: 30px;
    width: auto;
    height: auto;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }
    .navbar.sticky-top{
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

.dropdown-item.active, .dropdown-item:active{
    background-color: var(--primary)!important;
}
.dropdown-item{
    transition: .5s;
    padding-top: 10px;
    padding-bottom: 10px;
}
.dropdown-item:focus, .dropdown-item:hover{
    background-color: var(--primary)!important;
    color:var(--light)!important;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
        width: 240px;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

@media (min-width:430px) and (max-width:930px){
    .navbar-nav{
        height: 250px;
        overflow-y: scroll;
    }
}


/*** Header ***/
.header-carousel .owl-carousel-item {
    position: relative;
    max-height: 1000px;
    overflow: hidden;
}
.header-carousel .owl-carousel-item img {
    width: 100%;
    height: auto;
    max-height: 1000px;
    object-fit: cover;
    display: block;
}
.owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .5);
}

@media (max-width: 991px) {
    .header-carousel .owl-carousel-item {
        max-height: 650px;
    }
    .header-carousel .owl-carousel-item img {
        max-height: 650px;
    }
}

/*** Admin ***/
.admin-body {
    min-height: 100vh;
    background: #f5f5f7;
    color: #1d1d1f;
}

/* The public-site theme uses light text globally; the admin uses light surfaces. */
.admin-body h1,
.admin-body h2,
.admin-body h3,
.admin-body h4,
.admin-body h5,
.admin-body h6 {
    color: #1d1d1f;
}

.admin-body p {
    color: #475569;
}

.admin-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 248px minmax(0, 1fr);
}

.admin-sidebar {
    padding: 24px 18px;
    border-right: 1px solid #e5e5ea;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(24px);
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: none;
}

.admin-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.admin-brand-badge {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    background: #0071e3;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Albert Sans", sans-serif;
    font-weight: 800;
}

.admin-brand h1 {
    margin: 0;
    font-size: 1.1rem;
}

.admin-brand p {
    margin: 4px 0 0;
    color: #6b7280;
    font-size: 0.86rem;
}

.admin-user,
.admin-login-card,
.admin-card {
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.admin-user {
    border-radius: 16px;
    padding: 16px 18px;
}

.admin-user-name {
    font-family: "Albert Sans", sans-serif;
    font-weight: 700;
    color: #0f172a;
}

.admin-user-meta {
    margin-top: 6px;
    font-size: 0.84rem;
    color: #64748b;
    word-break: break-word;
}

.admin-nav {
    display: grid;
    gap: 10px;
}

.admin-nav-item {
    border: 0;
    background: transparent;
    color: #515154;
    text-align: left;
    padding: 11px 13px;
    border-radius: 12px;
    transition: 0.18s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-nav-item i { font-size: 1.05rem; width: 20px; text-align: center; }

.admin-nav-item.active,
.admin-nav-item:hover {
    color: #0066cc;
    background: #eaf3ff;
}

.admin-sidebar-footer {
    margin-top: auto;
}

.admin-main {
    padding: 28px clamp(20px, 3vw, 46px);
    overflow: auto;
}

.admin-login-card,
.admin-card {
    border-radius: 16px;
    padding: 24px;
}

.admin-login-card {
    max-width: 760px;
}

.admin-dashboard {
    display: grid;
    gap: 24px;
}

.admin-toolbar,
.admin-section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.admin-toolbar h2,
.admin-section-head h3,
.admin-login-card h2 {
    margin: 0;
}

.admin-toolbar p,
.admin-section-head p,
.admin-login-card p {
    margin: 8px 0 0;
    color: #64748b;
}

.admin-grid {
    display: grid;
    gap: 24px;
}

.admin-grid-2 {
    grid-template-columns: minmax(320px, 1.1fr) minmax(320px, 0.9fr);
}

.admin-editor-layout {
    display: grid;
    grid-template-columns: minmax(460px, 1.12fr) minmax(340px, .88fr);
    gap: 22px;
    align-items: start;
}

.admin-preview-card {
    border: 1px solid #e5e5ea;
    border-radius: 16px;
    background: #fff;
    padding: 18px;
    box-shadow: 0 2px 14px rgba(0, 0, 0, .04);
}

.admin-preview-sticky { position: sticky; top: 20px; }

.page-editor-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr);
    gap: 20px;
    align-items: start;
}

.page-editor-frame-wrap {
    min-height: 650px;
    border: 1px solid #e5e5ea;
    background: #f5f5f7;
}

.page-editor-frame-wrap iframe {
    display: block;
    width: 100%;
    min-height: 650px;
    border: 0;
    background: #fff;
}

.page-editor-controls {
    position: sticky;
    top: 20px;
    padding: 18px;
    border: 1px solid #e5e5ea;
    background: #fff;
}

.admin-preview-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #6e6e73;
    font-size: .78rem;
    font-weight: 600;
    margin-bottom: 14px;
}

.preview-browser { overflow: hidden; border: 1px solid #dedee3; border-radius: 13px; background: #fff; }
.preview-browser-bar { height: 30px; padding: 8px 10px; background: #f5f5f7; display: flex; gap: 5px; align-items: center; }
.preview-browser-bar i { width: 7px; height: 7px; border-radius: 50%; background: #c7c7cc; }
.preview-browser-bar span { margin: auto; color: #8e8e93; font-size: 9px; }
.preview-site-hero { min-height: 270px; background-size: cover; background-position: center; color: #fff; padding: 18px; display: flex; flex-direction: column; }
.preview-site-copy p, .preview-site-nav { color: #fff; }
.preview-site-nav { font-size: 11px; font-weight: 700; display: flex; justify-content: space-between; }
.preview-site-nav span { font-size: 8px; font-weight: 500; }
.preview-site-copy { margin-top: auto; max-width: 88%; padding-bottom: 18px; }
.preview-site-copy h4 { color: #fff; font-size: 1.35rem; margin: 0 0 8px; }
.preview-site-copy p { font-size: 10px; line-height: 1.5; margin-bottom: 12px; }
.preview-site-copy button, .preview-product button { border: 0; border-radius: 999px; padding: 7px 12px; color: #fff; background: #0071e3; font-size: 9px; }
.preview-about { padding: 18px; display: grid; grid-template-columns: 42% 1fr; gap: 15px; align-items: center; }
.preview-about-images { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; }
.preview-about-images img { width: 100%; height: 105px; object-fit: cover; border-radius: 8px; }
.preview-about-images img:last-child { margin-top: 16px; }
.preview-about small, .preview-product small { color: #0071e3; font-weight: 700; }
.preview-about h5 { margin: 5px 0; font-size: .95rem; }
.preview-about p { font-size: 9px; line-height: 1.5; color: #6e6e73; }

.admin-image-picker { border: 1px solid #dedee3; border-radius: 14px; padding: 12px; display: flex; gap: 14px; align-items: center; background: #fbfbfd; }
.admin-image-picker img { width: 128px; height: 82px; object-fit: cover; border-radius: 10px; background: #eee; }
.admin-image-picker strong { display: block; font-size: .92rem; }
.admin-image-picker p { color: #8e8e93; font-size: .78rem; margin: 3px 0 8px; }
.admin-image-picker-stack { align-items: flex-start; height: 100%; }
.admin-image-picker-stack img { width: 96px; height: 96px; }
.admin-advanced { margin-top: 8px; color: #6e6e73; font-size: .78rem; }
.admin-advanced summary { cursor: pointer; margin-bottom: 8px; }
.admin-divider { border-color: #e5e5ea; margin: 22px 0; }

.content-live-preview { min-height: 250px; }
.preview-article, .preview-product { overflow: hidden; border: 1px solid #e5e5ea; border-radius: 14px; background: #fff; }
.preview-article > img { width: 100%; aspect-ratio: 16/8; object-fit: cover; }
.preview-article > div, .preview-product > div { padding: 18px; }
.preview-article span { color: #0071e3; font-size: .75rem; font-weight: 700; }
.preview-article h4, .preview-product h4 { margin: 7px 0; font-size: 1.2rem; }
.preview-lead { color: #6e6e73; font-size: .86rem; }
.preview-richtext { color: #3a3a3c; font-size: .82rem; line-height: 1.65; }
.preview-product { display: grid; grid-template-columns: 44% 1fr; }
.preview-product > img { width: 100%; height: 100%; min-height: 260px; object-fit: cover; }
.preview-product strong { display: block; color: #515154; font-size: .82rem; margin-bottom: 10px; }
.preview-product p { color: #6e6e73; font-size: .82rem; line-height: 1.55; }

.admin-body .form-control, .admin-body .form-select {
    border-color: #d2d2d7;
    border-radius: 11px;
    min-height: 42px;
    color: #1d1d1f !important;
    background-color: #fff !important;
}
.admin-body .form-label {
    color: #1d1d1f;
    font-weight: 600;
}
.admin-body .form-control::placeholder {
    color: #64748b !important;
    opacity: 1;
}
.admin-body .form-select option {
    color: #1d1d1f;
    background-color: #fff;
}
.admin-body .form-control:focus, .admin-body .form-select:focus { color: #1d1d1f !important; border-color: #0071e3; box-shadow: 0 0 0 3px rgba(0,113,227,.12); }
.admin-body .btn { border-radius: 11px; }
.admin-body .btn-primary { background: #0071e3; border-color: #0071e3; }

.admin-inline-filters {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.admin-list {
    display: grid;
    gap: 14px;
}

.admin-list-item {
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: #ffffff;
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.admin-list-main {
    min-width: 0;
    flex: 1;
}

.admin-list-title {
    font-family: "Albert Sans", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
}

.admin-list-meta,
.admin-inline-note {
    color: #64748b;
    font-size: 0.84rem;
}

.admin-list-desc {
    margin-top: 8px;
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.65;
}

.admin-list-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.admin-empty {
    border-radius: 18px;
    padding: 24px;
    text-align: center;
    color: #64748b;
    border: 1px dashed rgba(148, 163, 184, 0.24);
    background: rgba(248, 250, 252, 0.8);
}

.admin-code {
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
    font-size: 0.9rem;
}

@media (max-width: 1100px) {
    .admin-shell {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        border-right: 0;
        border-bottom: 1px solid rgba(148, 163, 184, 0.16);
        padding: 16px 20px;
        gap: 12px;
    }

    .admin-brand p,
    .admin-sidebar-footer { display: none; }

    .admin-brand-badge { width: 40px; height: 40px; border-radius: 11px; }
    .admin-user { position: absolute; top: 14px; right: 20px; padding: 8px 12px; max-width: 180px; }
    .admin-user-meta { display: none; }
    .admin-nav { display: flex; gap: 7px; overflow-x: auto; padding-bottom: 3px; scrollbar-width: none; }
    .admin-nav::-webkit-scrollbar { display: none; }
    .admin-nav-item { flex: 0 0 auto; padding: 9px 12px; white-space: nowrap; }

    .admin-grid-2 {
        grid-template-columns: 1fr;
    }
    .admin-editor-layout { grid-template-columns: 1fr; }
    .page-editor-layout { grid-template-columns: 1fr; }
    .page-editor-controls { position: static; }
    .admin-preview-sticky { position: static; }
}

@media (max-width: 768px) {
    .admin-main {
        padding: 18px;
    }

    .admin-sidebar {
        padding: 14px 16px 12px;
    }

    .admin-user { top: 12px; right: 16px; }
    .admin-brand h1 { font-size: 1rem; }
    .admin-nav-item { font-size: .84rem; }
    .admin-nav-item i { font-size: .95rem; }

    .admin-inline-filters {
        grid-template-columns: 1fr;
    }

    .admin-list-item,
    .admin-toolbar,
    .admin-section-head {
        flex-direction: column;
    }

    .admin-list-actions {
        justify-content: flex-start;
    }
}
@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
        max-height: none;
    }
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        max-height: none;
        object-fit: cover;
    }
    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }
}

.header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: var(--dark);
    transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
    width: 60px;
    height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    transition: .5s;
    opacity: .3;
}

.header-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
}


/*** Facts ***/
.fact-item h3{color: var(--dark);font-weight: 600;font-size: 24px;}
.fact-item p{color:var(--dark);}
.fact-item .fact-icon {
    width: 120px;
    height: 120px;
    margin-top: -60px;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 120px;
    transition: .5s;
}

.fact-item:hover .fact-icon {
    background: var(--dark);
}

.fact-item .fact-icon i {
    color: var(--primary);
    transition: all 0.5s ease;
}

.fact-item:hover .fact-icon i {
    color: #FFFFFF;
}


/*** About & Feature ***/
.about-img,
.feature-img {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.about-img img,
.feature-img img {
    position: absolute;
    width: 60%;
    height: 80%;
    object-fit: cover;
}

.about-img img:last-child,
.feature-img img:last-child {
    margin: 20% 0 0 40%;
}

.about-img::before,
.feature-img::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 80%;
    top: 10%;
    left: 20%;
    border: 5px solid var(--primary);
    z-index: -1;
}


/*** Service ***/
.service-item .bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.service-item .service-text {
    background: var(--light);
    transition: .5s;
}

.service-item:hover .service-text {
    background: rgba(0, 0, 0, .7);
}

.service-item * {
    transition: all 0.5s ease;
}

.service-item:hover * {
    color: #FFFFFF;
}
.service-item h3{font-size: 25px;}
.service-item h3, .service-item p{color:var(--dark);}

.service-item .btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    background: #FFFFFF;
    white-space: nowrap;
    overflow: hidden;
    transition: .5s;
}

.service-item:hover .btn {
    width: 140px;
}


/*** Project ***/
.project .nav .nav-link {
    background: var(--light);
    transition: .5s;
    border-radius: 0;
    color: var(--dark);
    padding: 18px !important;
}
.project .nav .nav-link span{
    color:var(--dark);
    font-size: 20px;
}

.project .nav .nav-link.active {
    background: var(--primary);
}

.project .nav .nav-link.active span {
    color: #FFFFFF !important;
}


/*** Team ***/
.team-items {
    margin: -.75rem;
}

.team-item h3{color: var(--dark);font-size: 20px;}

.team-item {
    padding: .75rem;
}

.team-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s;
    z-index: -1;
}

.team-item:hover::after {
    height: 100%;
    background: var(--primary);
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    bottom: -20px;
    left: 0;
}

.team-item .team-social .btn {
    display: inline-flex;
    margin: 0 2px;
    color: var(--primary);
    background: var(--light);
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Appointment ***/
.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel {
    display: flex !important;
    flex-direction: column-reverse;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.testimonial-carousel .owl-dots .owl-dot {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 5px;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot::after {
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px;
    transition: .5s;
    opacity: 0;
}

.testimonial-carousel .owl-dots .owl-dot.active::after {
    opacity: 1;
}

.testimonial-carousel .owl-dots .owl-dot img {
    opacity: .4;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}


/*** Footer ***/
.footer .row.g-5 > div{display:flex;flex-direction:column;}
.footer .row.g-5 > div h3{flex-shrink:0;}
.footer p{line-height:1.8;margin-bottom:8px;font-size:15px;color:#cccccc;}
.footer .btn.btn-link {
    display: block;
    margin-bottom: 12px;
    padding: 0;
    text-align: left;
    color: #cccccc;
    font-weight: normal;
    font-size: 15px;
    line-height:1.6;
    text-transform: capitalize;
    transition: .3s;
    text-decoration: none;
}
.footer .btn.btn-link:last-child{margin-bottom:0;}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
    text-decoration: none;
}

.footer .form-control {
    border-color: #777777;
}

.footer .form-control:focus{
    color: var(--light)!important;
}

@media (min-width: 992px) {
    .footer .row.g-5 > div {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright p{
    color: var(--light);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

.site-filing {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px 12px;
    margin-top: 6px;
    color: #cccccc;
    font-size: 14px;
    line-height: 1.6;
}

.site-filing a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #cccccc;
}

.site-filing img {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}

.site-filing-separator {
    color: rgba(204, 204, 204, 0.6);
}

@media (max-width: 575.98px) {
    .site-filing {
        flex-direction: column;
        gap: 4px;
    }

    .site-filing-separator {
        display: none;
    }
}

.no-border{
    border: none;
}

.map-style{
    height: 450px;
}

/*** News ***/
.news-card {
    background: var(--light-dark);
    border: 1px solid rgba(0, 209, 209, 0.08);
    height: 100%;
    transition: all 0.4s ease;
    overflow: hidden;
}
.news-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0, 209, 209, 0.12);
}
.news-card .news-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}
.news-card .news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}
.news-card:hover .news-img img {
    transform: scale(1.08);
}
.news-card .news-img .news-date-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: #fff;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 2px;
    letter-spacing: 0.5px;
}
.news-card .news-body {
    padding: 1.5rem;
}
.news-card .news-body .news-meta {
    font-size: 13px;
    color: var(--primary);
    margin-bottom: 0.6rem;
}
.news-card .news-body .news-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--light);
    margin-bottom: 0.8rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}
.news-card:hover .news-body .news-title {
    color: var(--primary);
}
.news-card .news-body .news-excerpt {
    font-size: 14px;
    color: #888;
    margin-bottom: 1rem;
    line-height: 1.6;
}
.news-card .news-body .news-link {
    font-size: 14px;
    color: var(--primary);
    font-weight: 500;
    transition: all 0.3s ease;
}
.news-card .news-body .news-link i {
    transition: transform 0.3s ease;
}
.news-card:hover .news-body .news-link i {
    transform: translateX(4px);
}
