:root {
    --theme-color: #0277bd;
    --theme-color-rgb: 2, 119, 189;
    --theme-color-hover: #0559A0;
    --theme-color-hover-rgb: 5, 89, 160;
    --secondary-color: #6b7280;
    --background-color: rgb(249, 249, 249);
    --background-color-rgb: 255, 255, 255;
    --surface-color: #f1f6fa;
    --surface-color-rgb: 241, 246, 250;
    --bg_lightt:#F1F5F9;
    --bg_lightt_rgb:rgb(241, 245, 249);

    --text-primary: #374151;
    --text-white: #f7f9fd;
    --text-secondary: #6b7280;
    --text-muted: #9ca3af;
    --border-color: #e5e7eb;
    --border-light: #f3f4f6;
    --success-color: #059669;
    --danger-color: #dc2626;
    --warning-color: #d97706;
    --info-color: #0284c7;
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --radius-xs: 0.200rem;
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-full: 9999px;
    --body-font-family: 'Public Sans', sans-serif;
}

[data-theme="dark"] {
    --theme-color: #3f99ec;
    --theme-color-rgb: 63, 153, 236;
    --theme-color-hover: #2c7cd3;
    --theme-color-hover-rgb: 44, 124, 211;
    --secondary-color: #9ca3af;
    --background-color: #1f2937;
    --background-color-rgb: 31, 41, 55;
    --surface-color: #111827;
    --surface-color-rgb: 17, 24, 39;
    --bg_lightt:#2e3134;
    --bg_lightt_rgb:rgb(46, 49, 52);
    --text-primary: #f3f4f6;
    --text-white: #2c3342;
    --text-secondary: #d1d5db;
    --text-muted: #9ca3af;
    --border-color: #374151;
    --border-light: #374151;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --info-color: #3b82f6;
}

html[data-theme="dark"]
#theme-switcher {
    color: #ffd700;
}
html[data-theme="light"] #theme-switcher {
    color: #222;
}

html.font-lg {
    font-size: 20px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
@media (min-width: 1400px) {
    html.font-lg .container {
        max-width: 1300px;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
}
html.font-sm {
    font-size: 14px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.text_color_default{
    color: var(--text-primary);
}
.text_color_theme{
    color: var(--theme-color);
}
.text_color_white{
    color: var(--text-white);
}
.bg_color_default{
    background-color: var(--background-color);
}
.bg_color_theme{
    background-color: var(--theme-color);
}
.bg_lightt{
  background:var(--bg_lightt);
}


*, *::after, *::before {
    box-sizing: border-box;
}

html, body {
    border: none !important;
}

body {
    font-family: var(--body-font-family);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.75;
    position: relative;
    visibility: visible;
    overflow-x: hidden;
    color: #333;
    background-color: rgba(var(--background-color-rgb), 1);
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--body-font-family);
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    color: #252525;
}

.h1, .h2, .h3, .h4, .h5, .h6 {
    line-height: inherit;
    margin: 0;
}

p:last-child {
    margin-bottom: 0;
}

a, button {
    line-height: inherit;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

a, button, img, input {
    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

*:focus {
    outline: none;
}

a:focus {
    text-decoration: none;
    color: inherit;
    outline: none;
}

a:hover {
    text-decoration: none;
    color: #0071dc;
}

button, input[type=submit] {
    cursor: pointer;
}

img {
    max-width: 100%;
    height: auto;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    opacity: 1;
}
input:-moz-placeholder, textarea:-moz-placeholder {
    opacity: 1;
}
input::-moz-placeholder, textarea::-moz-placeholder {
    opacity: 1;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
    opacity: 1;
}

ul:last-child {
    margin-bottom: 0;
}

hr {
    border-top-width: 2px;
}

@media only screen and (max-width: 767px) {
    br {
        display: none;
    }
}




/*
BUTTON*/

/* Theme btn */
/* From Uiverse.io by SpatexDEV */
.theme_btn {
  border: none;
  display: flex;
  padding: 0.75rem 1.5rem;
  background-color: var(--theme-color);
  color: var(--text-white);
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  text-transform: uppercase;
  vertical-align: middle;
  align-items: center;
  border-radius: var(--radius-sm);
  user-select: none;
  gap: 0.75rem;
  box-shadow:
    0 4px 6px -1px var(--theme-color-rgb, 0.1),
    0 2px 4px -1px rgba(var(--theme-color-rgb), 1);
  transition: all 0.6s ease;
}

.theme_btn:hover {
  box-shadow:
    0 10px 15px -3px #488aec4f,
    0 4px 6px -2px #488aec17;
    color: var(--text-white) !important;
}

.theme_btn:focus,
.theme_btn:active {
  opacity: 0.85;
  box-shadow: none;
  color: var(--text-white) !important;
}

.theme_btn i {
  font-size: 1rem;
}
.theme_btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.bg-light-primary {
  --gk-bg-opacity:1;
  background-color:#ede9fe!important
}
.bg-light-danger {
  --gk-bg-opacity:1;
  background-color:#fad9d8!important
}
.bg-light-info {
  --gk-bg-opacity:1;
  background-color:#e1f6ff!important
}
.bg-light-warning {
  --gk-bg-opacity:1;
  background-color:#ffeeda!important
}
.bg-light-secondary {
  --gk-bg-opacity:1;
  background-color:#e4e3e9!important
}
.bg-light-success {
  --gk-bg-opacity:1;
  background-color:#d1f5ea!important
}
.bg-light-dark {
  --gk-bg-opacity:1;
  background-color:#d1cfd8!important
}


.text_responsive_heading_lg {
  font-size: clamp(14px, 2.8vw, 28px);
}
.text_responsive_heading {
  font-size: clamp(12px, 2.5vw, 22px);
}
.text_responsive_subheading {
  font-size: clamp(10px, 2vw, 20px);
}

.text_responsive {
  font-size: clamp(12px, 1.5vw, 18px);
}
.text_responsive_sm {
  font-size: clamp(10px, 1vw, 14px);
}
.text_responsive_md {
  font-size: clamp(12px, 2vw, 20px);
}
.text_responsive_lg {
  font-size: clamp(14px, 2.5vw, 24px);
}
.text_responsive_xl {
  font-size: clamp(16px, 3vw, 28px);
}
.text_responsive_xxl {
  font-size: clamp(18px, 4vw, 32px);
}



/*Gradient*/

   .bg-primary-grad{
       background: linear-gradient(90deg, rgba(240, 150, 255, 0.15) 0%, rgba(191, 200, 252, 0.15) 51%, rgba(187, 148, 255, 0.15) 100%);
   }
   .bg-secondary-grad{
       background: linear-gradient(90deg, rgba(240, 150, 255, 0.15) 0%, rgba(191, 200, 252, 0.15) 51%, rgba(187, 148, 255, 0.15) 100%);
   }

  .bg-primary-blend-gradient {
  background: linear-gradient(
      0deg,
      rgba(var(--background-color-rgb), 1) 0%,
      rgba(var(--background-color-rgb), 0) 100%
    ),
    linear-gradient(
      245deg,
      rgba(var(--theme-color-rgb), 0.4) 0%,
      rgba(var(--theme-color-hover-rgb), 0.1) 100%
    );
}
  .bg-secondary-blend-gradient {
  background: linear-gradient(
      0deg,
      rgba(var(--background-color-rgb), .06) 0%,
      rgba(var(--background-color-rgb), 0) 100%
    ),
    linear-gradient(
      180deg,
      rgba(var(--theme-color-rgb), 0.08) 0%,
      rgba(var(--theme-color-hover-rgb), 0) 100%
    );
}

[data-theme="dark"] .bg-primary-blend-gradient {
 background: var(--surface-color);
}
[data-theme="dark"] .bg-secondary-blend-gradient {
  background: var(--surface-color);
}

[data-theme="dark"]  .bg-primary-grad{
    background: #1f2022
}
[data-theme="dark"]  .bg-secondary-grad{
    background: var(--surface-color)
}
[data-theme="dark"]  .radial_gra_from_top{
    background: var(--surface-color);
    -webkit-mask-image: radial-gradient(ellipse at top, rgba(0, 0, 0, 0.845), #333333ea 60%);
    mask-image: radial-gradient(ellipse at top, rgba(0, 0, 0, 0.845), #333333ea 60%);
}

   /*Swiper NAv*/

   /* Hide arrows by default */
.show-swiper-arrows-on-hover .swiper-button-prev,
.show-swiper-arrows-on-hover .swiper-button-next {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.show-swiper-arrows-on-hover:hover .swiper-button-prev,
.show-swiper-arrows-on-hover:hover .swiper-button-next {
  opacity: 1;
  pointer-events: auto;
}
.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: 50%;
    z-index: 10;
    width: 36px;
    height: 36px;
    margin-top: -24px;
    background: rgba(0, 0, 0, 0.25); /* blurred feel */
    backdrop-filter: blur(6px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    color: #fff; /* icon color */
    font-size: 24px;
}

/* Remove default swiper arrow icons */
.swiper-button-next::after,
.swiper-button-prev::after {
    display: none;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.4);
}

.swiper-button-prev {
    left: 10px;
}

.swiper-button-next {
    right: 10px;
}

/* PATTERN */
.pattern-square {
  position:relative
}
.pattern-square:after {
  background-image:url(../images/pattern/pattern-square.svg);
  background-position:top;
  bottom:0;
  content:"";
  height:500px;
  left:0;
  -webkit-mask-image:linear-gradient(0deg,#0000 35%, #000000 75%);
  mask-image:linear-gradient(0deg,transparent 35%,#000 75%);
  padding:40px 0;
  position:absolute;
  right:0;
  top:0;
  z-index:-1;
  opacity: .5;
}
.text-pattern-line {
  position:relative
}
.text-pattern-line:after {
  background-image:url(../images/pattern/curve.svg);
  background-repeat:no-repeat;
  bottom:-22px;
  content:"";
  height:20px;
  position:absolute;
  right:0;
  width:201px
}
.bg-pattern {
  position:relative
}
.bg-pattern:after {
  background-image:url(../images/pattern/pattern-white.svg);
  background-position:top;
  background-repeat:no-repeat;
  bottom:0;
  content:"";
  left:0;
  -webkit-mask-image:linear-gradient(0deg,transparent 55%,#000 75%);
  mask-image:linear-gradient(0deg,transparent 55%,#000 75%);
  opacity:.3;
  position:absolute;
  right:0;
  top:0
}
.line-pattern {
  position:relative
}
.line-pattern:after {
  background-image:url(../images/pattern/line-pattern.svg);
  background-position:50%;
  background-repeat:no-repeat;
  background-size:cover;
  bottom:0;
  content:"";
  left:0;
  position:absolute;
  right:0;
  top:0
}
.right-slant-shape {
  position:relative
}
.right-slant-shape:after {
  background-color:var(--bs-body-bg);
  background-position-x:center;
  background-repeat:no-repeat;
  background-size:cover;
  bottom:-1px;
  -webkit-clip-path:polygon(100% 81%,0 100%,100% 100%);
  clip-path:polygon(100% 81%,0 100%,100% 100%);
  content:"";
  height:380px;
  position:absolute;
  width:100%
}

.dot_r_b:after {
    content: "";
    background: url(../images/pattern/dot-r-b.png);
    position: absolute;
    width: 265px;
    height: 325px;
    background-repeat: no-repeat;
    bottom: 0;
    z-index: -1;
    right: 0;
    background-position: center right
}

.addpat::before {
  content: "";
  background: url(../images/pattern/footdot.svg) no-repeat;
    background-size: auto;
  position: absolute;
  width: 265px;
  height: 325px;
  top: 0;
  z-index: 0;
  left: 0;
  background-size: 100%;
  opacity: 0.5;
}

/*
// Gradient Radial colorful*/
.radial_gra_from_top {
  position: absolute;
  inset-inline: -2px;
  height: 100%;
  top: 0;
  z-index: -1;
  background: linear-gradient(to right,
  rgba(8, 123, 255, 0.2),
  rgba(41, 255, 8, 0.2),
  rgba(189, 201, 230, 0.2),
  rgba(151, 196, 255, 0.2),
  rgba(151, 196, 255, 0.2));
  -webkit-mask-image: radial-gradient(ellipse at top, black, transparent 60%);
  mask-image: radial-gradient(ellipse at top, black, transparent 60%);
}

/* Responsive Styles */
@media (min-width: 992px) {
  .radial_gra_from_top {
    inset-inline: 0;
  }
}

@media (min-width: 576px) {
  .radial_gra_from_top {
    top: 0;
  }
}



/* SErvice  */
.sec_service {
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
}

.sec_service .swiper-slide img {
  min-height: 200px;
  max-height: 250px;
  object-fit: cover;
  border-radius: var(--radius-md);
}
@media screen and (max-width: 767px) {
    .sec_service .swiper-slide img {
        min-height: 180;
        max-height: 200px;
    }

}

/* MAIN CARD */
.card {
    background: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}

.card:hover {
    box-shadow: var(--shadow-md);
}

/* CArd overlay images */
.slide-content {
        position: absolute;
        inset: 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 2rem;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 10%, rgba(0, 0, 0, 0.8) 100%);
        color: white;
        z-index: 2;
    }
    .h_slider{
        height: 400px;
        border-radius: var(--radius-md);
    }

    .slide-content h3{
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        color: var(--text-white);
    }

    .swiper-button-prev,
    .swiper-button-next {
        color: var(--text-white);
    }

    .swiper-pagination-bullet {
        background: white;
    }

    .ratio-16x9 {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .ratio-16x9 iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    .media-bg {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


/* GOVT OFF */
.gov_avatar {
  height: 6.3rem;
  width: 6.3rem;
  position: relative;
  display: inline-block !important;
}

.avatar-sm {
  height: 2.5rem;
  width: 2.5rem;
}
.avatar-xxl {
    width: 4rem;
    height: 4rem;
    object-fit: cover;
  }
@media (min-width: 768px) {
  .avatar-xxl {
    width: 8rem;
    height: 8rem;
    object-fit: cover;
  }
}

.avatar-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* STAFF */



/* //Footer */
footer {
    background-color: var(--background-color);
    color: var(--text-primary);
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
}
footer .m_links{
    color: var(--text-secondary);
}

footer .m_links h6{
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

footer .m_links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
footer .m_links ul li {
    margin-bottom: 0.5rem;
}
footer .m_links ul li a {
    color: var(--text-secondary) !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}
footer .m_links ul li a::before{
    content: "\F135";
    font-family: "bootstrap-icons";
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
    color: var(--theme-color);
    margin-right: 0.5rem;
}
footer .m_links ul li a:hover {
    color: var(--theme-color) !important;
    cursor: pointer;
    text-decoration: underline;
}

.footer_logo_slider img{
    width: auto;
    height: 80px;
}

.logo-slide {
  background-color: var(--background-color);
  border-radius: var(--radius-md);          /* Equivalent to Bootstrap's rounded-sm */
  padding: 0.5rem;                 /* Space around image */
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); /* Optional: light shadow like Bootstrap's shadow-sm */
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-slide img {
  height: 100%;
  object-fit: contain;
}

/* Social Media Icon Backgrounds */
.btn-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
}

.btn-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  color: white;
}

/* Facebook */
.bg-facebook {
  background-color: #1877f2;
}
.bg-facebook:hover {
  background-color: #166fe5;
}

/* Instagram */
.bg-instagram {
  background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}
.bg-instagram:hover {
  background: linear-gradient(45deg, #344fd9, #4f48d0, #7d33a9, #b92d7b, #d91a63, #f00);
}

/* Twitter/X */
.bg-twitter-x {
  background-color: #000000;
}
.bg-twitter-x:hover {
  background-color: #1a1a1a;
}

/* LinkedIn */
.bg-linkedin {
  background-color: #0a66c2;
}
.bg-linkedin:hover {
  background-color: #0959aa;
}

/* YouTube (if you add it later) */
.bg-youtube {
  background-color: #ff0000;
}
.bg-youtube:hover {
  background-color: #e60000;
}

/* WhatsApp (if you add it later) */
.bg-whatsapp {
  background-color: #25d366;
}
.bg-whatsapp:hover {
  background-color: #1fba58;
}

/* Welcome Header */
.welcome_header{
    position: relative;
    overflow: hidden;
    background-color: var(--background-color);
    color: var(--text-primary);
    z-index: 1;
}

.about_gpu_left::before {
  position: absolute;
  content: "";
  top: 0;
  left: -200px;
  width: 400px;
  height: 400px;
  background: rgba(var(--theme-color-hover-rgb), .4);
  opacity: 0.08;
  border-radius: 8px;
  transform: rotate(45deg);
  z-index: -1;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    font-size: 20px;
    border: none;
    background-color: var(--theme-color, #0277bd);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s ease;
}

/* Scroll Progress Bar */
#scrollProgressBar {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        #0277bd,
        #00bcd4,
        #4caf50,
        #ff9800,
        #f44336
    );
    background-size: 300% 100%;
    animation: scrollGradient 5s linear infinite;
    width: 0%;
    z-index: 998;
    transition: width 0.2s ease-out;
}

@keyframes scrollGradient {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

/* GAller */
.masonry-container {
    columns: 4;
    column-gap: 1rem;
    padding: 1rem;
}

@media (max-width: 1200px) {
    .masonry-container {
        columns: 3;
    }
}

@media (max-width: 768px) {
    .masonry-container {
        columns: 2;
    }
}

@media (max-width: 576px) {
    .masonry-container {
        columns: 2;
    }
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 1rem;
    display: inline-block;
    width: 100%;
}

.card {
    position: relative;
    overflow: hidden;
}

.card-img-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.014), rgba(50, 22, 206, 0.05));
}
.card-img-overlay:hover {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.014), rgba(22, 206, 93, 0.075));
    transition:ease-in-out 0.3s;
}
.card-img-overlay::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 70%;
  bottom: 0;
  left: 0;
  background: linear-gradient(to top, rgba(var(--theme-color-rgb), 1) 0%, rgba(var(--theme-color-hover-rgb), .5) 37%, rgba(var(--background-color-rgb), 0) 100%);
}

.card-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.badge-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgba(255,255,255,0.9);
    color: #333;
    font-size: 0.75rem;
    z-index: 10;
}

/* .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    z-index: 10;
} */

.card-subtitle {
  position: absolute;
    bottom: 15px;
    left: 15px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    z-index: 10;
}


/*  Choose grid ex */

.default-padding {
  padding-top: 40px;
  padding-bottom: 40px;
}
.default-padding_sm {
  padding-top: 20px;
  padding-bottom: 20px;
}
.default-padding_md {
  padding-top: 60px;
  padding-bottom: 60px;
}
.default-padding_lg {
  padding-top: 80px;
  padding-bottom: 80px;
}
.default-padding_xl {
  padding-top: 100px;
  padding-bottom: 100px;
}

.choose-us-style-three-area .shape {
	position: absolute;
  left: 5%;
  top: -1px;
  z-index: -1;
  width: 90px;
}

.choose-us-style-three-area {
	position: relative;
	z-index: 1;
}

.choose-us-style-three-area .thumb {
	position: absolute;
	right: 0;
	top: 0;
	width: 45%;
	height: 100%;
}

.choose-us-style-three-area .thumb img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: center;
}

.choose-us-style-three-info .feature-style-one-item {
	padding: 0;
	border: none;
}

.choose-us-style-three-info .d-grid {
	grid-template-columns: 1fr 1fr;
	gap: 58px;
}
.feature-style-one-item .icon {
  /* height: 80px; */
  width: 120px;
  text-align: center;
  border: 1px solid #d2e3f9;
  padding: 15px;
  border-radius: var(--radius-lg);
  margin-bottom: 25px;
}
.choose-us-style-three-info .feature-style-one-item .icon {
	border-color: rgba(255, 255, 255, 0.4);
}

.choose-us-style-three-info p {
	opacity: 0.9;
}

.choose-us-style-three-info .feature-style-one-item p {
	margin: 0;
}

.choose-us-style-three-area .thumb .video-play-button {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background: linear-gradient(90deg, var(--theme-color) 30%, var(--theme-color-hover) 100%);
}

.choose-us-style-two-content .info::after {
	position: absolute;
	right: 0;
	bottom: 0;
	content: "";
	height: 100%;
	width: 100%;
	background: url(images/41.png) repeat center / auto;
	z-index: -1;
}

.choose-us-style-two-content .thumb img {
	height: 100%;
	object-fit: cover;
	object-position: left;
	border-radius: 10px 0 0 10px;
}

@media only screen and (max-width: 767px) {

  .choose-us-style-three-area {
    padding-top: 0;
  }

  .choose-us-style-three-area .shape {
    display: none;
  }

  .choose-us-style-three-area .thumb {
    position: relative;
    width: inherit;
    left: 0;
    right: 0;
    margin-bottom: 30px;
  }


}
.choose-us-style-three-info .card:hover{
  box-shadow: 12px 12px 12px #3c396e42;
  /* background: #fff; */
  border: rgba(var(--theme-color-hover-rgb), .4);
}

.icon-shape {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  text-align: center;
  vertical-align: middle;
}
.icon-lg {
  width: 3.5rem;
  height: 3.5rem;
  line-height: 3.5rem;
  text-align: center;
  font-size: 1.2rem;
}

.icon-xxl {
  height: 4rem;
  line-height: 4rem;
  width: 4rem;
}
.icon-xxl_larger {
  height: 7rem;
  line-height: 7rem;
  width: 7rem;
}
.icon-xxl i{
  font-size: 2rem;
}
.icon-xxl svg{
  height: 2.5rem;
  width: 2.5rem;
}

@media screen and (max-width: 480px) {
  .icon-xxl {
    height: 2.5rem;
    line-height: 1.5rem;
    width: 2.5rem;
  }
  .icon-xxl svg{
    height: 1.5rem;
    width: 1.5rem;
  }

}


/* Video Play Button   */
.video-play-button {
	display: inline-block;
	position: relative;
	height: 120px;
	width: 120px;
	line-height: 120px;
	background: var(--theme-color);
	border-radius: 50%;
	font-size: 30px;
	font-weight: 100;
	color: var(--white);
	text-align: center;
}

.color-style-two .video-play-button {
	background: var(--background-color);
}

.color-style-three .video-play-button {
	background: var(--color-style-three);
}

.color-style-four .video-play-button {
	background: var(--color-style-four);
}

.video-play-button i {
	font-weight: 100;
	color: var(--text-white);
}

.video-play-button::after {
	position: absolute;
	left: 50%;
	top: 50%;
	content: "";
	height: 105%;
	width: 105%;
	border: 1px solid rgba(255, 255, 255, 0.8);
	animation: pulse-border 3s linear infinite;
	border-radius: 50%;
}

@-webkit-keyframes pulse-border {
	0% {
		-webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
		opacity: 1;
	}

	100% {
		-webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
		opacity: 0;
	}
}

@keyframes pulse-border {
	0% {
		-webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
		opacity: 1;
	}

	100% {
		-webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
		opacity: 0;
	}
}

/* StaFF */
.staff-area {
    padding: 2rem 0;
    background-color: var(--background-color);
}
.staff_small_card_card {
      transition: box-shadow 0.3s ease;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
      border-radius: var(--radius-md);
      overflow: hidden;
      background-color: var(--background-color);
      display: flex;
      align-items: center;
      height: 80px;
    }

    .staff_small_card_card:hover {
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    }

    .staff_small_card_image {
      width: 80px;
      height: 80px;
      object-fit: cover;
    }

    .staff_small_card_content {
      padding: 0 .8rem;
    }

    .staff_small_card_title {
      font-weight: 600;
      font-size: .8rem;
      margin: 0;
      line-height: 1.2;
    }

    .staff_small_card_subtext {
      font-size: 0.65rem;
      color: var(--theme-color)
    }

    .view-all-btn {
      background-color: #e5e8ff;
      color: #2f57ef;
      font-weight: 600;
      padding: 0.5rem 1.25rem;
      border-radius: 0.5rem;
      transition: background 0.3s;
    }

    .view-all-btn:hover {
      background-color: #d4dbff;
    }

    .group:hover .group-hover-opacity-100 {
  opacity: 1 !important;
}
.transition {
  transition: opacity 0.3s ease-in-out;
}

 .group .overlay {
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .group:hover .overlay {
    opacity: 1;
  }

  .play-icon {
    font-size: 3rem;
    transition: transform 0.3s ease;
  }

  .group:hover .play-icon {
    transform: scale(1.2);
  }

  /* STAT CSS */

.custom-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

@media (max-width: 640px) {
    .custom-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.custom-card-item {
    padding: 2px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: box-shadow 0.3s ease;
}
@media (max-width: 991.98px) {
    .custom-card-item {
        padding: 20px 2px;
    }
}
.custom-icon {
    /* font-size: 3rem;
    margin-bottom: 10px;*/
    text-align: center;
}
.custom-icon svg {
    /* width: 4rem;
    height: 4rem; */
    display: inline-block;
    text-align: center;
}
/* .custom-card-text {
    font-size: 1.1rem;
    font-weight: 600;
}
.custom-card-count {
    font-size: 1.3rem;
    font-weight: bold;
} */

.ft_link li a{
  color: var(--text-primary);
}
.ft_link li a:hover{
  text-decoration: underline;
}



/* Services Grid Section Styles - Dark/Light Theme Compatible */
.govt_service {
    background-color: var(--bg_lightt);
    color: var(--text-primary);
}

.govt_service .service-card {
    background-color: var(--background-color) !important;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease-in-out;
    transform: translateY(0);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.govt_service .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(var(--theme-color-rgb), 0.15),
    0 8px 20px rgba(var(--text-primary), 0.1) !important;
    border-color: var(--border-color);
}

.govt_service .service-image {
    transition: transform 0.3s ease-in-out;
    border-radius: var(--radius-md);
}

.govt_service .service-card:hover .service-image {
    transform: scale(1.05);
}

.govt_service .service-image-wrapper {
    overflow: hidden;
    border-radius: var(--radius-md);
}

.govt_service .service-image-placeholder {
    background-color: var(--surface-color) !important;
    color: var(--text-muted);
    transition: all 0.3s ease-in-out;
    border-radius: var(--radius-md);
}

.govt_service .service-card:hover .service-image-placeholder {
    background-color: var(--border-light) !important;
    color: var(--text-secondary);
}

.govt_service .service-content {
    color: var(--text-primary);
}

.govt_service .service-content h6 a {
    color: var(--text-primary);
    transition: color 0.3s ease-in-out;
    font-weight: 600;
    text-decoration: none;
}

.govt_service .service-card:hover .service-content h6 a {
    color: var(--theme-color);
}

.govt_service .service-description {
    color: var(--text-secondary) !important;
    transition: color 0.3s ease-in-out;
}

.govt_service .service-card:hover .service-description {
    color: var(--text-primary) !important;
}

/* Border animation with theme colors */
.govt_service .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    transition: border-color 0.3s ease-in-out;
    pointer-events: none;
    z-index: 1;
}

.govt_service .service-card:hover::before {
    border-color: rgba(var(--theme-color-rgb), 0.3);
}

/* Empty state styling with theme variables */
.govt_service .text_color_default {
    color: var(--text-primary);
}

.govt_service .text_color_theme {
    color: var(--text-secondary);
}

.govt_service .bi-inbox {
    color: var(--text-muted) !important;
}

/* Focus states for accessibility */
.govt_service .service-card:focus-within {
    outline: 2px solid var(--theme-color);
    outline-offset: 2px;
}

/* Stretched link hover effect */
.govt_service .service-card .stretched-link::before {
    transition: background-color 0.3s ease-in-out;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .govt_service .service-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(var(--theme-color-rgb), 0.12),
        0 4px 12px rgba(var(--text-primary), 0.08) !important;
    }

    .govt_service .service-image-wrapper {
        width: 120px !important;
        min-width: 120px !important;
    }
}

/* Dark theme specific adjustments */
[data-theme="dark"] .govt_service .service-card {
    background-color: var(--surface-color) !important;
    border-color: var(--border-color);
}

[data-theme="dark"] .govt_service .service-card:hover {
    box-shadow: 0 15px 35px rgba(var(--theme-color-rgb), 0.2),
    0 8px 20px rgba(0, 0, 0, 0.3) !important;
}

[data-theme="dark"] .govt_service .service-image-placeholder {
    background-color: var(--background-color) !important;
}

[data-theme="dark"] .govt_service .service-card:hover .service-image-placeholder {
    background-color: var(--border-color) !important;
}

/* Loading state animation with theme colors */
@keyframes shimmer-light {
    0% { background-position: -200px 0; }
    100% { background-position: calc(200px + 100%) 0; }
}

@keyframes shimmer-dark {
    0% { background-position: -200px 0; }
    100% { background-position: calc(200px + 100%) 0; }
}

.govt_service .service-card.loading {
    background: linear-gradient(90deg,
    var(--surface-color) 25%,
    var(--border-light) 50%,
    var(--surface-color) 75%);
    background-size: 200px 100%;
    animation: shimmer-light 1.5s infinite;
}

[data-theme="dark"] .govt_service .service-card.loading {
    background: linear-gradient(90deg,
    var(--background-color) 25%,
    var(--border-color) 50%,
    var(--background-color) 75%);
    animation: shimmer-dark 1.5s infinite;
}

/* Additional hover effects for better dark theme visibility */
[data-theme="dark"] .govt_service .service-card:hover {
    background-color: rgba(var(--surface-color-rgb), 0.8) !important;
}

/* Smooth theme transition */
.govt_service * {
    transition: background-color 0.3s ease-in-out,
    color 0.3s ease-in-out,
    border-color 0.3s ease-in-out;
}


/* Related Services Wrapper */
.related-services-wrapper {
    background: transparent;
}

.related-services-header h5 {
    color: var(--text-primary);
    font-size: 1.1rem;
}

.related-services-header small {
    color: var(--text-muted);
}

/* Service Item Cards */
.service-item .service-card {
    background-color: var(--background-color) !important;
    border: 1px solid var(--border-light) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.service-item .service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(var(--theme-color-rgb), 0.15),
    0 4px 12px rgba(0, 0, 0, 0.1) !important;
    border-color: rgba(var(--theme-color-rgb), 0.2) !important;
}

/* Service Image */
.service-image-container {
    width: 70px;
    height: 70px;
    min-width: 70px;
    position: relative;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-item .service-card:hover .service-image {
    transform: scale(1.1);
}

.service-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--surface-color), var(--border-light));
    color: var(--text-muted);
    font-size: 1.5rem;
}

/* Service Content */
.service-title {
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.service-item .service-card:hover .service-title {
    color: var(--theme-color);
}

.service-location {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.service-location i {
    color: var(--theme-color);
    font-size: 0.75rem;
}

.service-excerpt {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Service Badge */
.service-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.service-arrow {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(var(--theme-color-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--theme-color);
}

.service-item .service-card:hover .service-arrow {
    background: var(--theme-color);
    color: white;
    transform: translateX(3px);
}

.service-badge .badge {
    font-size: 0.7rem;
    font-weight: 500;
}

/* Current Service Highlight */
.current-service .service-card {
    background: linear-gradient(135deg,
    rgba(var(--theme-color-rgb), 0.05),
    rgba(var(--theme-color-rgb), 0.02)) !important;
    border-color: rgba(var(--theme-color-rgb), 0.3) !important;
}

.current-service .service-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--theme-color);
    border-radius: 0 4px 4px 0;
}

/* Hover Overlay Effect */
.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
    rgba(var(--theme-color-rgb), 0.05),
    rgba(var(--theme-color-rgb), 0.02));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.service-item .service-card:hover .service-overlay {
    opacity: 1;
}

/* View All Button */
.btn-outline-primary.rounded-pill {
    border-color: var(--theme-color);
    color: var(--theme-color);
    transition: all 0.3s ease;
}

.btn-outline-primary.rounded-pill:hover {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(var(--theme-color-rgb), 0.3);
}

/* No Services State */
.no-services-state {
    background: linear-gradient(135deg,
    var(--surface-color),
    rgba(var(--border-light), 0.5));
    border-radius: var(--radius-lg);
    border: 1px dashed var(--border-color);
}

/* Quick Contact Card */
.quick-contact-card {
    background: linear-gradient(135deg,
    rgba(var(--theme-color-rgb), 0.08),
    rgba(var(--theme-color-rgb), 0.03)) !important;
    border: 1px solid rgba(var(--theme-color-rgb), 0.2);
}

.contact-icon i {
    color: var(--theme-color);
}

.quick-contact-card h6 {
    color: var(--text-primary);
}

.quick-contact-card .text-muted {
    color: var(--text-muted) !important;
}

.quick-contact-card .btn-primary {
    background: var(--theme-color);
    border-color: var(--theme-color);
    box-shadow: 0 4px 12px rgba(var(--theme-color-rgb), 0.3);
}

.quick-contact-card .btn-primary:hover {
    background: var(--theme-color-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--theme-color-rgb), 0.4);
}

.quick-contact-card .btn-outline-secondary {
    border-color: var(--border-color);
    color: var(--text-primary);
}

.quick-contact-card .btn-outline-secondary:hover {
    background: var(--text-primary);
    color: var(--text-white);
}

/* Dark theme specific adjustments */
[data-theme="dark"] .service-item .service-card {
    background-color: var(--surface-color) !important;
    border-color: var(--border-color) !important;
}

[data-theme="dark"] .service-item .service-card:hover {
    box-shadow: 0 4px 10px rgba(var(--theme-color-rgb), 0.25),
    0 4px 12px rgba(0, 0, 0, 0.3) !important;
}

[data-theme="dark"] .current-service .service-card {
    background: linear-gradient(135deg,
    rgba(var(--theme-color-rgb), 0.1),
    rgba(var(--theme-color-rgb), 0.05)) !important;
}

[data-theme="dark"] .quick-contact-card {
    background: linear-gradient(135deg,
    rgba(var(--theme-color-rgb), 0.15),
    rgba(var(--theme-color-rgb), 0.08)) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-image-container {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }

    .service-title {
        font-size: 0.9rem;
    }

    .service-excerpt {
        display: none;
    }

    .service-item .service-card:hover {
        transform: translateY(-2px);
    }
}

/* Smooth loading animation */
.related-services-list {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Related Events Styles */
.related-events-wrapper {
    width: 100% !important;
    max-width: 100%;
}

.related-events-header h5 {
    color: var(--text-primary);
    font-size: 1.1rem;
}

.related-events-header small {
    color: var(--text-muted);
}

/* Event Item Cards */
.event-item .event-card {
    background-color: var(--background-color) !important;
    border: 1px solid var(--border-light) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.event-item .event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(var(--theme-color-rgb), 0.15),
    0 4px 12px rgba(0, 0, 0, 0.1) !important;
    border-color: rgba(var(--theme-color-rgb), 0.2) !important;
}

.event-image {
    transition: transform 0.3s ease;
}

.event-item .event-card:hover .event-image {
    transform: scale(1.1);
}

.event-image-container {
    overflow: hidden;
    border-radius: var(--radius-md);
}

.event-placeholder {
    background: linear-gradient(135deg, var(--surface-color), var(--border-light));
    color: var(--text-muted);
    font-size: 1.2rem;
}

.event-title {
    color: var(--text-primary);
    line-height: 1.3;
    transition: color 0.3s ease;
}

.event-item .event-card:hover .event-title {
    color: var(--theme-color);
}

.event-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.event-arrow {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(var(--theme-color-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--theme-color);
}

.event-item .event-card:hover .event-arrow {
    background: var(--theme-color);
    color: white;
    transform: translateX(3px);
}

.current-event .event-card {
    background: linear-gradient(135deg,
    rgba(var(--theme-color-rgb), 0.05),
    rgba(var(--theme-color-rgb), 0.02)) !important;
    border-color: rgba(var(--theme-color-rgb), 0.3) !important;
}

.current-event .event-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--theme-color);
    border-radius: 0 4px 4px 0;
}

.event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
    rgba(var(--theme-color-rgb), 0.05),
    rgba(var(--theme-color-rgb), 0.02));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.event-item .event-card:hover .event-overlay {
    opacity: 1;
}

/* No Events State */
.no-events-state {
    background: linear-gradient(135deg,
    var(--surface-color),
    rgba(var(--border-light), 0.5));
    border-radius: var(--radius-lg);
    border: 1px dashed var(--border-color);
}

/* Dark theme adjustments */
[data-theme="dark"] .event-item .event-card {
    background-color: var(--surface-color) !important;
    border-color: var(--border-color) !important;
}

[data-theme="dark"] .event-item .event-card:hover {
    box-shadow: 0 12px 28px rgba(var(--theme-color-rgb), 0.25),
    0 4px 12px rgba(0, 0, 0, 0.3) !important;
}

[data-theme="dark"] .current-event .event-card {
    background: linear-gradient(135deg,
    rgba(var(--theme-color-rgb), 0.1),
    rgba(var(--theme-color-rgb), 0.05)) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .event-image-container {
        width: 50px;
        height: 50px;
    }

    .event-title {
        font-size: 0.85rem;
    }

    .event-item .event-card:hover {
        transform: translateY(-2px);
    }
}


/*
Button*/

.btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show > .btn-primary.dropdown-toggle:focus,
.btn-secondary:not(:disabled):not(.disabled).active:focus, .btn-secondary:not(:disabled):not(.disabled):active:focus, .show > .btn-secondary.dropdown-toggle:focus,
.btn-success:not(:disabled):not(.disabled).active:focus, .btn-success:not(:disabled):not(.disabled):active:focus, .show > .btn-success.dropdown-toggle:focus,
.btn-info:not(:disabled):not(.disabled).active:focus, .btn-info:not(:disabled):not(.disabled):active:focus, .show > .btn-info.dropdown-toggle:focus,
.btn-danger:not(:disabled):not(.disabled).active:focus, .btn-danger:not(:disabled):not(.disabled):active:focus, .show > .btn-danger.dropdown-toggle:focus,
.btn-warning:not(:disabled):not(.disabled).active:focus, .btn-warning:not(:disabled):not(.disabled):active:focus, .show > .btn-warning.dropdown-toggle:focus,
.btn-secondary:not(:disabled):not(.disabled).active:focus, .btn-secondary:not(:disabled):not(.disabled):active:focus, .show > .btn-secondary.dropdown-toggle:focus,
.btn-dark:not(:disabled):not(.disabled).active:focus, .btn-dark:not(:disabled):not(.disabled):active:focus, .show > .btn-dark.dropdown-toggle:focus,
.btn-outline-primary:not(:disabled):not(.disabled).active:focus, .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-primary.dropdown-toggle:focus,
.btn-outline-success:not(:disabled):not(.disabled).active:focus, .btn-outline-success:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-success.dropdown-toggle:focus,
.btn-outline-info:not(:disabled):not(.disabled).active:focus, .btn-outline-info:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-info.dropdown-toggle:focus,
.btn-outline-danger:not(:disabled):not(.disabled).active:focus, .btn-outline-danger:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-danger.dropdown-toggle:focus,
.btn-outline-warning:not(:disabled):not(.disabled).active:focus, .btn-outline-warning:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-warning.dropdown-toggle:focus,
.btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-secondary.dropdown-toggle:focus,
.btn-outline-dark:not(:disabled):not(.disabled).active:focus, .btn-outline-dark:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-dark.dropdown-toggle:focus {
    box-shadow: none;
}

.btn.focus, .btn:focus,
.btn-success:focus, .btn-info:focus,
.btn-danger:focus, .btn-warning:focus,
.btn-secondary:focus, .btn-dark:focus,
.btn-outline-success:focus, .btn-outline-info:focus,
.btn-outline-danger:focus, .btn-outline-warning:focus,
.btn-outline-secondary:focus, .btn-outline-dark:focus,
.btn-light-default:focus, .btn-light-primary:focus,
.btn-light-success:focus, .btn-light-info:focus,
.btn-light-danger:focus, .btn-light-warning:focus,
.btn-light-secondary:focus, .btn-light-dark:focus {
    box-shadow: none;
    font-weight: bold;

}

.btn-light-primary{
    color: #1b55e2;
    background: #f5f8fc;
    border: 1px solid #1b55e2;
}
.btn-light-primary:hover{
    border: 1px solid #1b55e2;
    box-shadow: none;
}

.btn-light-secondary{
    color: #5c1ac3;
    background: #f4f6f9;
    border: 1px solid #5c1ac3;
}
.btn-light-secondary:hover{
    border: 1px solid #5c1ac3;
    box-shadow: none;
}

.btn-light-success{
    color: #8dbf42;
    background: #f3faf6;
    border: 1px solid #8dbf42;
}
.btn-light-success:hover{
    border: 1px solid #8dbf42;
    box-shadow: none;
}


.btn-light-danger{
    color: #e7515a;
    background: #fdf6f7;
    border: 1px solid #e7515a;
}
.btn-light-danger:hover{
    border: 1px solid #e7515a;
    box-shadow: none;
}

.btn-light-warning{
    color: #e2a03f;
    background: #fefaf4;
    border: 1px solid #e2a03f;
}
.btn-light-warning:hover{
    border: 1px solid #e2a03f;
    box-shadow: none;
}

.btn-light-info{
    color: #2196f3;
    background: #f6fbfd;
    border: 1px solid #2196f3;
    font-weight: bold;
}
.btn-light-info:hover{
    border: 1px solid #2196f3;
    box-shadow: none;
}

.btn-light-dark{
    color: #3b3f5c;
    background: #f5f5f5;
    border: 1px solid #3b3f5c;
}
.btn-light-dark:hover{
    border: 1px solid #3b3f5c;
    box-shadow: none;
}


