@import url('https://fonts.cdnfonts.com/css/satoshi');

/* RESET CSS */
* {
  margin: 0; 
  padding: 0;
  font-family: 'Satoshi', sans-serif;
  -moz-osx-font-smoothing: grayscale;
  word-break: break-word;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  scroll-behavior: smooth;
  
 
}

/* header nav */
nav{
    position: fixed;
    z-index: 999;
    width: 100%;
    top: 0;  
    background: #fff;
  }
  nav .wrapper{
    position: relative;
    max-width: 1300px;
    padding: 0px 30px;
    height: 70px;
    line-height: 70px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .wrapper .logo a{
    color: #f2f2f2;
    font-size: 30px;
    font-weight: 600;
    text-decoration: none;
  }
  
  .optimogov-nav-logo{
    height: 2rem;
  }
  
  .wrapper .nav-links{
    display: inline-flex;
  }
  .nav-links li{
    list-style: none;
  }
  .nav-links li a{
    color: #3f3f5c;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 9px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  .nav-links li a:hover{
    background: #368DD3;
    color: #fff;
  }
  .nav-links .mobile-item{
    display: none;
  }
  .nav-links .drop-menu{
    position: absolute;
    background: #fff;
    width: 250px;
    line-height: 45px;
    top: 85px;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 6px 10px rgba(0,0,0,0.15);
  }
  .nav-links li:hover .drop-menu,
  .nav-links li:hover .mega-box{
    transition: all 0.3s ease;
    top: 70px;
    opacity: 1;
    visibility: visible;
  }
  .drop-menu li a{
    width: 100%;
    display: block;
    padding: 0 0 0 15px;
    font-weight: 500;
    font-size: 15px;
    border-radius: 0px;
  }
  .mega-box{
    position: absolute;
    left: 25rem;
    width: 65%;
    padding: 0 30px;
    top: 85px;
    opacity: 0;
    visibility: hidden;
  }
  .mega-box .content{
    background: #fff;
    padding: 25px 20px;
    display: flex;
    width: 100%;
    margin-top: -15px;
    justify-content: space-between;
    box-shadow: 0 6px 10px rgba(0,0,0,0.15);
  }
  .mega-box .content .row{
    width: calc(50% - 30px);
    line-height: 25px;
  }
  .content .row img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .content .row header{
    color: #368DD3;
    font-size: 20px;
    font-weight: 500;
  }
  .content .row .mega-links{
    margin-left: -40px;
    border-left: 1px solid rgba(255,255,255,0.09);
  }
  .row .mega-links li{
    padding: 0 20px;
  }
  .row .mega-links li a{
    padding: 0px;
    padding: 0 20px;
    color: #3f3f5c;
    font-size: 17px;
    display: block;
  }
  .row .mega-links li a:hover{
    color: #f2f2f2;
  }
  .wrapper .btn{
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: none;
  }
  .wrapper .btn.close-btn{
    position: absolute;
    right: 30px;
    top: 10px;
  }
  
  @media screen and (max-width: 970px) {
    .wrapper .btn{
      display: block;
    }
    .wrapper .nav-links{
      position: fixed;
      height: 100vh;
      width: 100%;
      max-width: 100%;
      top: 0;
      left: -100%;
      background: #fff;
      display: block;
      padding: 50px 10px;
      line-height: 50px;
      overflow-y: auto;
      box-shadow: 0px 15px 15px rgba(0,0,0,0.18);
      transition: all 0.3s ease;
    }
    /* custom scroll bar */
    ::-webkit-scrollbar {
      width: 10px;
    }
    ::-webkit-scrollbar-track {
      background: #242526;
    }
    ::-webkit-scrollbar-thumb {
      background: #3A3B3C;
    }
    #menu-btn:checked ~ .nav-links{
      left: 0%;
    }
    #menu-btn:checked ~ .btn.menu-btn{
      display: none;
    }
    #close-btn:checked ~ .btn.menu-btn{
      display: block;
    }
    .nav-links li{
      margin: 15px 10px;
    }
    .nav-links li a{
      padding: 0 20px;
      display: block;
      font-size: 20px;
    }
    .nav-links .drop-menu{
      position: static;
      opacity: 1;
      top: 65px;
      visibility: visible;
      padding-left: 20px;
      width: 100%;
      max-height: 0px;
      overflow: hidden;
      box-shadow: none;
      transition: all 0.3s ease;
    }
    #showDrop:checked ~ .drop-menu,
    #showMega:checked ~ .mega-box{
      max-height: 100%;
      width: 100%;
    }
    .nav-links .desktop-item{
      display: none;
    }
    .nav-links .mobile-item{
      display: block;
      color: #3f3f5c;
      font-size: 20px;
      font-weight: 500;
      padding-left: 20px;
      cursor: pointer;
      border-radius: 5px;
      transition: all 0.3s ease;
    }
    .nav-links .mobile-item:hover{
      background: #368DD3;
    }
    .drop-menu li{
      margin: 0;
    }
    .drop-menu li a{
      border-radius: 5px;
      font-size: 18px;
    }
    .mega-box{
      position: static;
      top: 65px;
      opacity: 1;
      visibility: visible;
      padding: 0 20px;
      max-height: 0px;
      overflow: hidden;
      transition: all 0.3s ease;
    }
    .mega-box .content{
      box-shadow: none;
      flex-direction: column;
      padding: 20px 20px 0 20px;
    }
    .mega-box .content .row{
      width: 100%;
      margin-bottom: 15px;
      border-top: 1px solid rgba(255,255,255,0.08);
    }
    .mega-box .content .row:nth-child(1),
    .mega-box .content .row:nth-child(2){
      border-top: 0px;
    }
    .content .row .mega-links{
      border-left: 0px;
      padding-left: 15px;
    }
    .row .mega-links li{
      margin: 0;
    }
    .content .row header{
      font-size: 19px;
    }
  }
  nav input{
    display: none;
  }
  
  .fa-solid, .fas {
    font-weight: 900;
    color: black;
    font-size: 26px;
  }

  .optimogov-footer-section {
    background-color: #0B2039;
    color: #FFFFFF;
    padding: 40px 20px;
  }
  
  .optimogov-footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .optimogov-footer-logo img {
    max-width: 150px;
  }
  
  .optimogov-footer-logo p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.6;
  }
  
  .optimogov-footer-products h4,
  .optimogov-footer-head-office h4,
  .optimogov-footer-branch-office h4,
  .optimogov-footer-links h4 {
    margin-bottom: 10px;
    font-size: 18px;
  }
  
  .optimogov-footer-products ul {
    list-style: none;
    padding: 0;
  }
  
  .optimogov-footer-products ul li {
    margin-bottom: 5px;
  }
  
  .optimogov-footer-links a {
    text-decoration: none;
    color: #FFFFFF;
  }
  
  .optimogov-footer-social a {
    color: #FFFFFF;
    font-size: 20px;
    margin-right: 10px;
    display: inline-block;
  }
  
  .optimogov-footer-social a:hover {
    color: #178BE9;
  }
  
  .optimogov-footer-head-office p,
  .optimogov-footer-branch-office p {
    margin-bottom: 5px;
    font-size: 14px;
  }
  
  @media only screen and (max-width: 768px) {
    .optimogov-footer-container {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .optimogov-footer-logo img {
      margin: 0 auto;
    }
  
    .optimogov-footer-social {
      margin-top: 20px;
    }
  }
  
/* Munilogic Card Slider */

.munilogic-rd-testimoni-heading {
  display: flex;
  justify-content: center;
  /* align-items: center; */
  min-height: 30vh;
  margin: 0;
}

.title-container {
  display: flex;
  align-items: center;
  padding: 20px;
  text-align: center; 
}

.quote-icon {
  font-size: 80px;
  color: #f0f0f0;
  margin-right: 20px;
  user-select: none;
}

.title-text {
  font-size: 24px;
  font-weight: bold;
  color: #0047AB;
  white-space: nowrap;
}



.slider-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    width: clamp(22rem, 90%, 64rem);
    height: 20rem;
    margin: 0 auto;
    /* font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; */

    /* Dark Theme */
    --bg: linear-gradient(to bottom right, #1e2022, #323439);
    --txtBg: linear-gradient(to bottom right,#d4d4d8, #52525b);
    --borderClr: rgb(65, 65, 65);
}

.slider{
    position: relative;
    height: 100%;
    width: 100%;
    transform-style: preserve-3d;
    perspective: 500px;
}

.slide{
    width: clamp(8rem, 10rem, 25rem);
    height: clamp(10rem, 12rem, 27rem);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    /* border: 1px solid var(--borderClr); */
    transition: 0.5s;
    /* background: var(--bg); */
    transition-timing-function: cubic-bezier(0.9, 0, 0.1, 1);
}

.slide span{
    position: absolute;
    border-radius: inherit;
    display: flex;
    height: 3rem;
    width: 3rem;
    align-items: center;
    justify-content: center;
    /* background-image: var(--txtBg); */
    /* -webkit-background-clip: text; */
    /* background-clip: text; */
    font-size: 2.25rem;
    line-height: 2.5rem;
    font-weight: 800;
    color: transparent;
}

.slide span img{
    margin-top: 2.5rem;
    height: 20rem;
}

.slider-buttons{
    display: flex;
    gap: 1.5rem;
    z-index: 1;
}

.slider-buttons button{
    display: flex;
    height: 2rem;
    width: 2rem;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-image: var(--bg);
    border: none;
    outline: none;
    cursor: pointer;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.slider-buttons button::before{
    content: '';
    width: 80%;
    height: 80%;
    background: var(--txtBg);
    position: absolute;
    border-radius: inherit;
    transition: .3s;
    opacity: .5;
}

.slider-buttons button:hover::before{
    opacity: 1;
}

.slider-buttons button:nth-of-type(1)::before{
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.29 5.707a1 1 0 0 0-1.415 0L7.988 10.6a2 2 0 0 0 0 2.828l4.89 4.89a1 1 0 0 0 1.415-1.414l-4.186-4.185a1 1 0 0 1 0-1.415l4.182-4.182a1 1 0 0 0 0-1.414Z' fill='%230F0F0F'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.29 5.707a1 1 0 0 0-1.415 0L7.988 10.6a2 2 0 0 0 0 2.828l4.89 4.89a1 1 0 0 0 1.415-1.414l-4.186-4.185a1 1 0 0 1 0-1.415l4.182-4.182a1 1 0 0 0 0-1.414Z' fill='%230F0F0F'/%3E%3C/svg%3E");
}

.slider-buttons button:nth-of-type(2)::before{
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.71 18.293a1 1 0 0 0 1.415 0l4.887-4.892a2 2 0 0 0 0-2.828l-4.89-4.89a1 1 0 0 0-1.415 1.414l4.186 4.185a1 1 0 0 1 0 1.415L9.71 16.879a1 1 0 0 0 0 1.414Z' fill='%230F0F0F'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.71 18.293a1 1 0 0 0 1.415 0l4.887-4.892a2 2 0 0 0 0-2.828l-4.89-4.89a1 1 0 0 0-1.415 1.414l4.186 4.185a1 1 0 0 1 0 1.415L9.71 16.879a1 1 0 0 0 0 1.414Z' fill='%230F0F0F'/%3E%3C/svg%3E");
}

@media (max-width: 700px){
    .slider-container{
        gap: 0;
    }

    .slide{
        width: clamp(4rem, 6rem, 25rem);
        height: clamp(6rem, 8rem, 27rem);
    }
    
    .slide span{
        font-size: 1.6rem;
    }
}

  /* Carousel with 3 cards */
  .optimogov-carousel-cards-heading{
    display: flex;
    justify-content: center;
    max-width: 100%;
  }
  
  .optimogov-carousel-cards-paragraph{
    display: flex;
    justify-content: center;
    max-width: 100%;
    text-align: center;
    padding: 0 20%;
    color: #64648C;
  }
  
  .optimogov-carousel-cards-heading h2 {
      font-size: 30px;
      color: #071343;
      margin-bottom: 15px;
      margin-top: .5rem;
      text-align: center;
      width: 59%;
  }
  
  .optimogov-carousel-section-body {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* background: linear-gradient(360deg, rgba(219, 234, 254, 1) 0%, rgba(255, 255, 255, 1) 87%, rgba(255, 255, 255, 1) 100%); */
    box-sizing: border-box;
    padding-bottom: 1.5rem;
  }

  .optimogov-carousel-section-body-label{
    display: flex;
    justify-content: center; 
    padding: 20px 0;
  }

  .optimogov-carousel-section-body-label-text{
    padding: 8px 16px;
    background-color: #d6e9f9; 
    color: #0066cc; 
    font-size: 14px;
    font-weight: bold;
    border-radius: 8px; 
    text-transform: uppercase; 
    text-align: center;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1); 
    display: inline-block; 
  }
  
  #cCarousel {
    position: relative;
    max-width: 900px;
    margin: auto;
  }
  
  #cCarousel .arrow {
    position: absolute;
    top: 50%;
    display: flex;
    width: 45px;
    height: 45px;
    justify-content: center;
    align-items: center;
    border-radius: 35%;
    z-index: 1;
    font-size: 26px;
    color: white;
    background: #178BE9;
    cursor: pointer;
  }
  
  #cCarousel #prev {
    right: 55rem;
  
  }
  
  #cCarousel #next {
    left: 55rem;
  }
  
  #carousel-vp {
    width: 52rem;
    height: 400px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin: auto;
  }
  
  @media (max-width: 770px) {
    #carousel-vp {
      width: 35rem;
    }
  
    #cCarousel #prev {
      /* right: 100%; */
      right: 36rem;
    
    }
    
    #cCarousel #next {
      /* left: 100%; */
      left: 36rem;
    }
  
  }
  
  @media (max-width: 510px) {
    #carousel-vp {
      width: 17rem;
    }
  
    #cCarousel #prev {
      /* right: 100%; */
      right: 18rem;
    
    }
    
    #cCarousel #next {
      /* left: 100%; */
      left: 18rem;
    }
  
  }
  
  #cCarousel #cCarousel-inner {
    display: flex;
    position: absolute;
    transition: 0.3s ease-in-out;
    gap: 10px;
    left: 0px;
  }
  
  .cCarousel-item {
    /* width: 250px; */
    width: 271px;
    height: 365px;
    border: 2px solid #E0EDF8;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background-color: #E0EDF8;
  }
  
  .cCarousel-item img {
    width: 50%;
    object-fit: fill;
    min-height: 150px;
    color: white;
    position: relative;
    left: 4rem;
  }
  
  .cCarousel-item .infos {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    background: #E0EDF8;
    color: #235299;
    font-size: 12px;
    padding: 15px;
    text-align: center;
    font-weight: 500;
  }
  
  .infos a{
    font-size: 12px;
    position: relative;
    /* right: 5rem; */
    text-decoration: none;
    color: #002F7B;
  }
  
  .infos p{
    color: #64648C;
  }
  
  .cCarousel-item .infos button {
    background: #222;
    padding: 10px 30px;
    border-radius: 15px;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
  }


  /* Our Promise  */
  .munilogic-rd-promise-container {
    display: flex;
    justify-content: center;
    padding: 50px 20px;
  }
  
  .munilogic-rd-promise-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: 60%;
    background: linear-gradient(90deg, rgba(54,141,211,1) 0%, rgba(70,4,135,1) 25%, rgba(7,19,67,1) 68%);
    color: #fff;
    border-radius: 15px 0 15px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 4rem;
    overflow: hidden;
  }
  
  .munilogic-rd-icon {
    flex-shrink: 0;
    margin-right: 20px;
  }
  
  .munilogic-rd-icon img {
    width: 60px;
    height: 60px;
  }
  
  .munilogic-rd-content {
    flex: 1;
  }
  
  .munilogic-rd-title {
    font-size: 24px;
    margin: 0 0 10px;
    font-weight: bold;
  }
  
  .munilogic-rd-text {
    font-size: 18px;
    line-height: 1.5;
    margin: 0;
  }
  
  @media screen and (max-width: 768px) {
    .munilogic-rd-promise-card {
      flex-direction: column;
      text-align: center;
      padding: 20px !important;
    }
  
    .munilogic-rd-icon {
      margin-bottom: 15px;
    }
  
    .munilogic-rd-title {
      font-size: 18px;
    }
  
    .munilogic-rd-text {
      font-size: 14px;
    }
  }
  

  /*home stratagic partners*/

.munilogic-rd-ourstrategicpartners{
  font-family: "Satoshi", sans-serif;
   background-color: #fff;
   text-align: center;
   align-items: center;
   padding: 0 100px 20px 100px;
   width: 100%;
}

.munilogic-rd-ourstrategicpartners-text span {
  background: linear-gradient(to right, #00122E, #184877, #368DD3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.munilogic-rd-ourstrategicpartners-text h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 80px;
  /*color: #00122E;*/
}

.munilogic-rd-ourstrategicpartners-text p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 30px;
  color: #071343;
  font-weight: normal;
  padding-left: 20px;
  padding-right: 20px;
  padding: 0 20%;
}

.munilogic-rd-ourstrategicpartners-partnersdetail{
  width: 100%;
  height: 450px;
  position: relative;
  align-self: stretch;
  justify-items: center;
  
}

.munilogic-rd-ourstrategicpartners-partnersdetail-text span{
  background: linear-gradient(to right, #368DD3, #184877, #00122E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.munilogic-rd-ourstrategicpartners-partnersdetail-text{
  position: relative;
  font-size: 18px;
  font-weight: 700;
  width: 100%;
  top: 120px;
  text-align: center;
  
}


.rounds-text-content{
  display: flex;
  position: relative;
  justify-items: center;
  align-items:center;
  padding-left: 10px;
  padding-right: 10px;
  gap: 5px;
}

.rounds-text-content img{
  height: 80px;
  width: 80px;
}
.rounds-text-content-heading{
  padding-top: 10px;
}

.rounds-text-content-heading h2{
  font-family: "Satoshi", sans-serif;
  font-size: 14px;
  font-weight: bold;
  text-align: left;
}

.rounds-text-content-heading p{
  font-family: "Satoshi", sans-serif;
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 30px;
  color: #071343;
  font-weight: normal;
  text-align: left;
  line-height: 1.3;
  padding-top: 10px;
}

/*arround circle*/

.munilogic-rd-ourstrategicpartners-partnersdetail-circles-bigest2{
  position: relative;
  background-image:url("/assets/images/partner-round.png");
  background-position: center;
  background-size: 400px 400px;
  background-repeat: no-repeat;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.munilogic-rd-ourstrategicpartners-partnersdetail-circles-bigest{
  position: relative;
  background-image:url("/assets/images/circlrBG.png");
  background-position: center;
  background-size: 374px 374px;
  background-repeat: no-repeat;
  border-radius: 50%;
  width: 400px;
  height: 400px;
 
  top: 25px;
}

.maainnn-partner{
  position: relative;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.munilogic-rd-ourstrategicpartners-partnersdetail-circle1{
  position: absolute;
  background-color:#368ED7;
  border-style: solid;
  border-color: #235299;
  border-radius: 20px;
  width: 40px;
  height: 40px;
  left: 180px;
  top: -130px;
  cursor: pointer;
}

.munilogic-rd-ourstrategicpartners-partnersdetail-circle1:hover{
  background-color: #235299;
}

.munilogic-rd-ourstrategicpartners-partnersdetail-circle1-text{
  position: absolute;
  display: none;
  background-color: #E0EDF8;
  width: 330px;
  height: 150px;
  border-radius: 15px;
  left: 230px;
  top: -120px;
}


.munilogic-rd-ourstrategicpartners-partnersdetail-circle1:hover + .munilogic-rd-ourstrategicpartners-partnersdetail-circle1-text{
  display: block;
  z-index: 1;
}

.munilogic-rd-ourstrategicpartners-partnersdetail-circle2{
  position: absolute;
  background-color: rgb(230, 229, 229);
  border-style: solid;
  border-color: #235299;
  border-radius: 20px;
  width: 40px;
  height: 40px;
  left: 280px;
  top: -105px;
  cursor: pointer;
}

.munilogic-rd-ourstrategicpartners-partnersdetail-circle3{
  position: absolute;
  background-color: rgb(230, 229, 229);
  border-style: solid;
  border-color: #235299;
  border-radius: 20px;
  width: 40px;
  height: 40px;
  left: 350px;
  top: -40px;
  cursor: pointer;
}

.munilogic-rd-ourstrategicpartners-partnersdetail-circle4{
  position: absolute;
  background-color: rgb(230, 229, 229);
  border-style: solid;
  border-color: #235299;
  border-radius: 20px;
  width: 40px;
  height: 40px;
  left: 375px;
  top: 55px;
  cursor: pointer;
}

.munilogic-rd-ourstrategicpartners-partnersdetail-circle5{
  position: absolute;
  background-color: #368ED7;
  border-style: solid;
  border-color: #235299;
  border-radius: 20px;
  width: 40px;
  height: 40px;
  left: 350px;
  top: 150px;
  cursor: pointer;
}

.munilogic-rd-ourstrategicpartners-partnersdetail-circle5:hover{
  background-color: #235299;
}

.munilogic-rd-ourstrategicpartners-partnersdetail-circle5-text{
  position: absolute;
  display: none;
  background-color: #E0EDF8;
  width: 330px;
  height: 150px;
  border-radius: 15px;
  left: 400px;
  top: 160px;
}

.munilogic-rd-ourstrategicpartners-partnersdetail-circle5:hover + .munilogic-rd-ourstrategicpartners-partnersdetail-circle5-text{
  display: block;
  z-index: 1;
}


.munilogic-rd-ourstrategicpartners-partnersdetail-circle6{
  position: absolute;
  background-color: rgb(230, 229, 229);
  border-style: solid;
  border-color: #235299;
  border-radius: 20px;
  width: 40px;
  height: 40px;
  left: 280px;
  top: 225px;
  cursor: pointer;
}

.munilogic-rd-ourstrategicpartners-partnersdetail-circle7{
  position: absolute;
  background-color: rgb(230, 229, 229);
  border-style: solid;
  border-color: #235299;
  border-radius: 20px;
  width: 40px;
  height: 40px;
  left: 190px;
  top: 255px;
  cursor: pointer;
}



.munilogic-rd-ourstrategicpartners-partnersdetail-circle8{
  position: absolute;
  background-color: rgb(230, 229, 229);
  border-style: solid;
  border-color: #235299;
  border-radius: 20px;
  width: 40px;
  height: 40px;
  left: 85px;
  top: 225px;
  cursor: pointer;
}

.munilogic-rd-ourstrategicpartners-partnersdetail-circle9{
  position: absolute;
  background-color: #368ED7;
  border-style: solid;
  border-color: #235299;
  border-radius: 20px;
  width: 40px;
  height: 40px;
  left: 15px;
  top: 155px;
  cursor: pointer;
}

.munilogic-rd-ourstrategicpartners-partnersdetail-circle9:hover{
  background-color: #235299;
}

.munilogic-rd-ourstrategicpartners-partnersdetail-circle9-text{
  position: absolute;
  display: none;
  background-color: #E0EDF8;
  width: 330px;
  height: 150px;
  border-radius: 15px;
  left: -330px;
  top: 160px;
}

.munilogic-rd-ourstrategicpartners-partnersdetail-circle9:hover + .munilogic-rd-ourstrategicpartners-partnersdetail-circle9-text{
  display: block;
  z-index: 1;
}

.munilogic-rd-ourstrategicpartners-partnersdetail-circle10{
  position: absolute;
  background-color: rgb(230, 229, 229);
  border-style: solid;
  border-color: #235299;
  border-radius: 20px;
  width: 40px;
  height: 40px;
  left: -10px;
  top: 55px;
  cursor: pointer;
}

.munilogic-rd-ourstrategicpartners-partnersdetail-circle11{
  position: absolute;
  background-color: rgb(230, 229, 229);
  border-style: solid;
  border-color: #235299;
  border-radius: 20px;
  width: 40px;
  height: 40px;
  left: 15px;
  top: -40px;
  cursor: pointer;
}

.munilogic-rd-ourstrategicpartners-partnersdetail-circle12{
  position: absolute;
  background-color: rgb(230, 229, 229);
  border-style: solid;
  border-color: #235299;
  border-radius: 20px;
  width: 40px;
  height: 40px;
  left: 80px;
  top: -105px;
  cursor: pointer;
}

/*round mobile*/
.munilogic-rd-ourstrategicpartners-partnersdetail-main-mobile{
  display: none;
}
.munilogic-rd-ourstrategicpartners-scroller{
  display: none;
}

@media (max-width: 991px){

  .munilogic-rd-ourstrategicpartners{
    display: none;
  }

  .munilogic-rd-ourstrategicpartners-partnersdetail-main-mobile{
    display: grid;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
  }

  .munilogic-rd-ourstrategicpartners-partnersdetail-main-mobile span{
    background: linear-gradient(to right, #368DD3, #184877, #00122E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .munilogic-rd-ourstrategicpartners-partnersdetail-main-mobile span{
    font-size: 26px;
    font-weight: 900;
    width: 100%;
    line-height: 1.2;
    text-align: center;
    justify-content: center;
  }

  .munilogic-rd-ourstrategicpartners-text-mobile{
    height: 100%;
  }

  .munilogic-rd-ourstrategicpartners-text-mobile span {
    background: linear-gradient(to right, #00122E, #184877, #368DD3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .munilogic-rd-ourstrategicpartners-text-mobile h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 80px;
    /*color: #00122E;*/
  }
  
  .munilogic-rd-ourstrategicpartners-text-mobile p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 30px;
    color: #071343;
    font-weight: normal;
    padding-left: 20px;
    padding-right: 20px;
  }


 /*new slider mobile only*/

  .munilogic-rd-ourstrategicpartners-scroller{
    display: contents;
    width: 100%;
    height: 100%;
  }

  .rounds-text-content-mobile{
    display: flex;
    position: relative;
    justify-items: center;
    align-items:center;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 15px;
    gap: 8px;
    background-color: #E0EDF8;
    border-radius: 15px;
  }

  .rounds-text-content-mobile img{
    height: 85px;
    width: 85px;
    padding: 5px;
  }
  .rounds-text-content-heading-mobile{
    padding-top: 10px;
  }
  
  .rounds-text-content-heading-mobile h2{
    font-family: "Satoshi", sans-serif;
    font-size: 14px;
    font-weight: bold;
    text-align: left;
  }
  
  .rounds-text-content-heading-mobile p{
    font-family: "Satoshi", sans-serif;
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 30px;
    color: #071343;
    font-weight: normal;
    text-align: left;
    line-height: 1.3;
    padding-top: 10px;
    padding-right: 5px;
  }
}

/*hsghdsjkdjkd*/


/*home page banner*/

.munilogic-rd-home-partners-banner {
  font-family: "Satoshi", sans-serif;
  background-color: #0B2039;
  padding-top: 20px;
  text-align: center;
  height: 200px;
}

      .munilogic-rd-home-partners-banner h3 {
          color: #9da1a4;
          font-family: "Satoshi", sans-serif;
          font-size: 22px;
          font-weight: 500;
          text-align: center;
      }

  .munilogic-rd-home-partners-business-logo {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 90px;
  }

      .munilogic-rd-home-partners-business-logo img {
          width: 200px;
          height: 120px;
          
      }


  @media (max-width: 991px) {
      .munilogic-rd-home-partners-banner h3 {
          font-size: 14px;
      }

      .munilogic-rd-home-partners-business-logo {
          flex-direction: column;
          gap: 20px;
      }

          .munilogic-rd-home-partners-business-logo img {
              width: 80px;
              height: 40px;
              margin: 10px 0;
          }
}

.munilogic-rd-banner-partners {
  background-color: #00122e;
  padding-bottom: 30px;
  padding-top: 10px; }
  .munilogic-rd-banner-partners__group {
    text-align: center; }
    .munilogic-rd-banner-partners__group p {
      font-size: 14px;
      color: #c2c2c2; 
      padding-top: 15px;
      padding-bottom: 15px;}
    .munilogic-rd-banner-partners__group img {
      filter: grayscale(1) invert(1);
      max-width: 60%;
      width: 100%;
      margin: auto; }
      @media (max-width: 991px) {
        .munilogic-rd-banner-partners__group img {
          max-width: 100%; } 
        
          .munilogic-rd-home-cta{
            padding: 5% 5% !important;
          }  
        
        }


          .munilogic-rd-home-cta {
            font-family: "Satoshi", sans-serif;
            background-attachment: fixed;
            background-repeat: no-repeat;
            background-size: cover;
            padding: 5% 15%;
           }
            .munilogic-rd-home-cta .munilogic-rd-home-case {
              text-align: center; }
              .munilogic-rd-home-cta .munilogic-rd-home-case h3 {
                text-align: center; }
              .munilogic-rd-home-cta .munilogic-rd-home-case button {
                
                margin-top: 150px; }


                .munilogic-rd-home-case p{
                  font-size: 16px;
                  line-height: 1.5;
                  margin-bottom: 30px;
                  color: #071343;
                  font-weight: normal;
                  padding-left: 20px;
                  padding-right: 20px;
                  padding-top: 20px;
                }

               .munilogic-rd-home-case h3 {
                  font-size: 30px;
                  font-weight: 700;
                  line-height: 115%;
                  letter-spacing: -0.03em;
                  text-align: left;
                  color: #00122E;
                  font-family: 'Satoshi-Bold';
                  /* text-transform: capitalize;  */
                    
                }
              
                  @media (max-width: 991px) {
                    .munilogic-rd-home-case h3 {
                      font-size: 30px; } }

                .munilogic-rd-container {
                  margin: auto;
                  max-width: 1200px;
                  width: 100%;
                  padding: 0 20px; }
                  @media (max-width: 991px) {
                    .munilogic-rd-container {
                      width: fit-content;
                      max-width: 100%; } }
                
                  .munilogic-rd-home-case span {
                    background: linear-gradient(to right, #00122E, #184877, #368DD3);
                    -webkit-background-clip: text;
                    -webkit-text-fill-color: transparent;
                  }

                  .munilogic-rd-home-case .button {
                    display: flex;
                    width: fit-content;
                    align-items: center;
                    background-color: #368DD3;
                    color: #fff;
                    justify-content: center;
                    padding: 15px 35px;
                    border: 0;
                    font-size: 16px;
                    font-weight: 600;
                    border-radius: 3px;
                    transition: transform .2s linear;
                    cursor: pointer;
                    text-decoration: none;
                    box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198), 0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275), 0px 12.5216px 10.0172px rgba(0, 0, 0, 0.035), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725), 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802); }
                    
                    @media (max-width: 991px) {
                    
                      .munilogic-rd-home-case .button {
                        width: 100%; } }
                        .munilogic-rd-home-case .button.center {
                          margin: auto; }
                          .munilogic-rd-home-case .button:hover {
                            transform: translateY(-3px); }
/*banner end*/

/* hero section */
#HeroSection {
  margin-top: 5rem;
  background: linear-gradient(to bottom, #F3F8FF 60%, #5BA1D7 100%);
  position: relative;

}
  #HeroSection .HeroText {
      z-index: 2;
      position: relative;
      margin-bottom: 1rem;
      padding: 0 5rem;
  }
  #HeroSection h1 {
      margin-bottom: 10px;
      color: #071343;
      font-family: "Satoshi", sans-serif;
      font-size: 48px;
      font-weight: 900;
      letter-spacing: -0.03em;
      padding-top: 2rem;
  }
  #HeroSection h1 {
      font-family: "Satoshi", sans-serif;
      font-size: 45px;
      margin-bottom: 20px;
      background: linear-gradient(90deg, #368DD3 25%, #132D96 74.14%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      font-weight: 900;
      letter-spacing: -0.03em;
      line-height: 1.3;
      text-align:center;
  }
#HeroSection p {
  margin-bottom: 40px;
  color: #64648C;
  font-family: "Satoshi", sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-align:center;
}
  #HeroSection .HeroBgImg {
      margin-top: -10%;
      z-index: 1;
      position: relative;
      right: 0px;
      margin-bottom: 20px;
      width: 90%;
  }
#HeroSection .HeroImgDiv{
  display: flex;
  justify-content: center;
  z-index: 1;
  position: relative;
}



@media (max-width: 991px) {
  .HeroImgDiv {
      display: none !important;
  }

  #HeroSection .HeroText {
      padding: 0 1rem;
  }

  #HeroSection h1{
    font-size: 30px;
  }
}

.container-fluid.hero-ruler{
  height: 20px;
  background-color: #00122E;
}

/*year month section*/

.munilogic-rd-municipalmanagement-munilogicCE-buttongroup {
  display: flex;
  justify-content: center;
  gap: 10px; /* Spacing between buttons */
  margin-bottom: 20px; /* Space below the button group */
}

.btn {
  padding: 10px 20px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.learn-more-top {
  background-color: #368DD3;
  color: #fff;
  border: none;
  transition:  0.3s ease;
}

.learn-mor-top:hover {
  background-color: #2b74b3;
}

.request-demo {
  color: #368DD3;
  background-color: transparent;
  border: 1px solid #368DD3;
  transition: background-color 0.3s ease;
}

.request-demo:hover {
  background-color: #e6f2fc;
}

.request-demo span {
  margin-left: 5px;
}


 /*RateSection */

 .metrics-container {
  text-align: center;
  padding: 20px;
}

.metrics-title {
  font-size: 18px;
  font-weight: 400;
  color: #6c7c91; 
  margin-bottom : 20px;
}

.metrics {
  display: flex;
  justify-content: center;
  align-items: center; 
  gap: 40px; 
}

.metric {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.metric-content {
  text-align: center;
}

.metric-value {
  font-size: 36px;
  font-weight: bold;
  color: #1e2b4b; 
  line-height: 1.2;
}

.metric-label1 {
  font-size: 14px;
  font-weight: 400;
  color: #6c7c91;
 
  line-height: 1.2; 
}
.metric-label2 {
  font-size: 14px;
  font-weight: 400;
  color: #6c7c91; 
  line-height: 1.2;
}

/* Divider Style */
.divider {
  width: 3px;
  height: 100px;
  background-color: rgb(96, 95, 95); 
}

 


/* Media query for 1024px laptop view */
@media screen and (max-width: 1024px) {
  .sec-container {
      justify-content: space-between;
  }

  .text {
      max-width: 60%;
      font-size: 1.8rem;
  }

  .stat-box {
      width: 130px;
  }
}

/*Mobile view Rate Section*/
.text_mobile h2 {
  color: #333;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 40px;
  text-align: center;
  font-family: "Satoshi", sans-serif;
  font-weight: bold;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: nowrap;
}

.stat-box {
  width: 120px;
  padding: 10px;
  border-radius: 8px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}



.stat-box h2 {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

.stat-box p {
  font-size: 28px;
  font-weight: 600;
  margin: 10px 0;
}




/* Mobile responsiveness */
@media (max-width: 768px) {
  .hidefor_view {
      display: none;
  }


  .viewfor_mobile {
      padding: 30px 10px;
      display: block;
  }

  .stats {
      gap: 18px;
  }

  .stat-box {
      width: 110px;
      padding: 8px;
  }

      .stat-box p {
          font-size: 24px;
      }

  .text_mobile h2 {
      font-size: 20px;
  }

  .divider {
    display: none; /* Hide divider on mobile */
}

}

/* bord*/
.board-background-section {

  /* width: 100%; */
    background-color: #003366;
    padding: 30px 0px;
    border-radius: 8px;
    margin-top: 40px;
    margin-left: 50px;
    margin-right: 50px;
}

@media screen and (max-width: 991px) {
  .board-background-section {
    padding: 30px 15px;
    border-radius: 8px;
    margin-top: 40px;
    margin-left: 15px;
    margin-right: 15px;
  }
  
  .optimogov-carousel-cards-heading h2 {
    width: 85%;
  }

  .header1 h2 {
    font-size: 32px !important;
  }

  .optimogov-carousel-section-body{
    padding-bottom: 0 !important;
  }

}

.board-content-section {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 0 auto;
  max-width: 800px; 
}

.board-content-box {
  background-color: #ffffff; 
  color: #003366; 
  padding: 20px;
  width: 700px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.board-content-box h3 {
  text-align: center;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #003366; 
}

.board-content-box p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
  color: #333333; 
}

.learn-more {
  color: #368DD3;
  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
}

.learn-more span {
  margin-left: 5px;
  transition: margin-left 0.3s ease;
}

.learn-more:hover span {
  margin-left: 10px; 
}


@media (max-width: 768px) {
  .content-section {
      flex-direction: column;
      align-items: center;
      gap: 20px;
  }
}
/* Accordion*/
.container1 {
  margin-top: 35px;
  width: 100%;
  padding: 20px 10%;
  background-color: #DBEAFE;
  font-family: satoshi;
}

.header1 {
  text-align: center;
  margin-bottom: 20px;
}

  .header1 h2 {
      font-weight: 700;
      font-size: 35px;
      color: #071343;
  }

  .header1 p {
      font-size: 16px;
      color: #64648C;
  }

.container1-ds {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0 15%;
  margin: 25px 0;
}

.content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: -114px;
  flex-wrap: wrap; 
  padding-left: 25px;
  padding-top: 20px;
}


.challenges {
  flex: 2;
  margin-top: 90px;
  width: 100%; 
}
.working-process {
  display: flex;

}
.accordion-item {
  background-color: #F3F3F3;
  border-radius: 8px;
  margin-bottom: 10px;
  width: 100%; 
}

.accordion-checkbox {
  display: none;
}

.accordion-header {
  display: flex;
  /* justify-content: space-between;
  align-items: center; */
  padding: 20px;
  background-color: #F3F3F3;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
  border-radius: 8px;
  color: #071343;
  position: relative; 
}

  .accordion-header::before {
      content: '';
      display: inline-block;
      border: solid #071343;
      border-width: 0 3px 3px 0;
      padding: 5px;
      transform: rotate(45deg);
      transition: transform 0.3s ease;
      position: absolute;
      right: 20px; 
  }

.accordion-checkbox:checked + .accordion-header::before {
  transform: rotate(-135deg); 
  border-color: white; 
}

.accordion-checkbox:checked + .accordion-header {
  background-color: #368DD3;
  color: white;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease;
  background-color: #F3F3F3;
  color: #64648C;
}

.accordion-checkbox:checked + .accordion-header + .accordion-content {
  max-height: 200px; 
  padding: 20px;
}

/* Image Section Styling */
 .image-section {
  display: flex;
  /* justify-content: center;
  align-items: center; */
  /* margin-top: 90px; */
  width: 100%;
} 

  .image-section img {
      /* border-radius: 8px; */
      width: 400px; 
      
      object-fit: contain;
  }

/* Media Queries for Mobile */
@media screen and (max-width: 991px) {
  /* Hide the image section */
  .image-section {
    display: none;
  }

  /* Hide accordion content by default */
  .accordion-content {
    display: none;
  }

  /* Ensure only the accordion header is visible */
  .accordion-header {
    display: block;
    font-size: 14px;
    padding: 15px;
  }

  /* Adjust accordion header visibility and appearance */
  .accordion-checkbox:checked + .accordion-header {
    background-color: #368DD3;
    color: white;
  }

  /* Ensure checked accordion content behaves normally */
  .accordion-checkbox:checked + .accordion-header + .accordion-content {
    display: block;
    max-height: 400px;
    padding: 20px;
  }
}


/* @media screen and (max-width: 767px) {
  .container1 {
      padding: 20px 5%; 
  }

  .header1 h1 {
      font-size: 24px; 
  }

  .header1 p {
      font-size: 14px; 
  }

  .content {
      flex-direction: column; 
      margin-top: 0;
  }

  .challenges {
      margin-top: 20px; 
  }

  .accordion-item {
      width: 100%;
      margin-left: 0; 
  }

  .accordion-header {
      font-size: 16px; 
      padding: 15px;
  }

  .accordion-content {
      padding: 15px;
  }

  .image-section img {
      width: 100%; 
      height: auto; 
  }
} */



  /* case studies board */
  .case-studies-board-section{
    position: relative;
    text-align: center;
    padding: 50px 20px;
    color: white;
    min-height: 300px; /* Adjust as needed */
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
  }
  .case-studies-board-section img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }
  .case-studies-board-section h2 {
    font-size: 2em;
    font-weight: 500;
    margin-bottom: 20px;
    padding: 0 5%;
    /* z-index: 1; */
    color: white;
  }
  /* .case-studies-board-button {
    background-color: #007bff; 
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    text-decoration: none;
    z-index: 1; 
  }
  .case-studies-board-button:hover {
    background-color: #0056b3;
  }

  .case-studies-board-section .case-studies-board-button button{
    justify-content: center;
    color: #ffffff; 
    font-size: 16px;
    text-decoration: #1a75ff;
    font-weight: 500;
  }
  
  .case-studies-board-button span {
    margin-left: 5px;
    transition: margin-left 0.3s ease;
  }
  
  .case-studies-board-button:hover span {
    margin-left: 10px;
  } */

  .case-studies-board-section button {
    display: flex;
    width: fit-content;
    align-items: center;
    background-color: #368DD3;
    color: #fff;
    justify-content: center;
    padding: 15px 35px;
    border: 0;
    font-size: 16px;
    font-weight: 600;
    border-radius: 3px;
    transition: transform .2s linear;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198), 0px 22.3363px 17.869px rgba(0, 0, 0, 0.0417275), 0px 12.5216px 10.0172px rgba(0, 0, 0, 0.035), 0px 6.6501px 5.32008px rgba(0, 0, 0, 0.0282725), 0px 2.76726px 2.21381px rgba(0, 0, 0, 0.0196802); }
    
    @media (max-width: 991px) {
    
      .case-studies-board-section button {
        width: 100%; } }
        .case-studies-board-section button.center {
          margin: auto; }
          .case-studies-board-section button:hover {
            transform: translateY(-3px); }



 /*Why MuniLogic Section CSS*/

 .munilogic-rd-whymunilogic{
  margin-top: 50px;
 }

 .munilogic-rd-whymunilogicwhy-munilogic {
  text-align: center;
  max-width: 1366px;
 

}

.munilogic-rd-munilogic-subtitle h2 {
    font-size: 35px;
    color: #00122E;
    text-align: center;
    font-family: Poppins;
}

.munilogic-rd-munilogic-subtitle span{
  background: linear-gradient(to left, #368DD3, #184877, #00122E);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
}

.munilogic-rd-munilogic-subtitle p{
    font-size: 1em;
    color: #666;
    margin: 10px 0 20px;
    text-align: center;
    

}

.munilogic-rd-features-cards {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.munilogic-rd-features-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 300px;
}

.feature-box {
  background-color: #f8f8f8;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-weight: bold;
  color: #333;
}

.feature-box:hover{
  background-color: #368DD3;
  color: #fff;
}

.munilogic-rd-center-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.munilogic-rd-center-image img {
  /*border-radius: 50%;*/
 width: 70%;
  object-fit: cover;
}

/* Responsive Styles */

/* Small laptop screens (1024px) */
@media (max-width: 1024px) {
  .munilogic-rd-munilogic-subtitle h2 {
      font-size: 30px;
  }

  .feature-box {
      padding: 16px;
  }

  .munilogic-rd-features-cards {
      gap: 15px;
  }
}

/* Tablet and smaller screens (991px) */
@media (max-width: 991px) {
  .munilogic-rd-features-cards {
      flex-direction: column;
      align-items: center;
      gap: 20px;
  }

  .munilogic-rd-center-image img {
      display: none;
  }

  .munilogic-rd-munilogic-subtitle h2 {
      font-size: 28px;
  }
}

/* Mobile screens (768px and below) */
@media (max-width: 768px) {
  .munilogic-rd-munilogic-subtitle h2 {
      font-size: 24px;
  }

  .munilogic-rd-munilogic-subtitle p {
      font-size: 0.9em;
  }

  .feature-box {
      padding: 15px;
      font-size: 0.9em;
  }

  .munilogic-rd-center-image img {
      display :none;
  }
}

/* Extra small mobile screens (480px and below) */
@media (max-width: 480px) {
  .munilogic-rd-munilogic-subtitle h2 {
      font-size: 22px;
  }

  .feature-box {
      padding: 12px;
      font-size: 0.85em;
  }

  .munilogic-rd-center-image img {
      display: none;
  }
}

/*Muniligic management Software Section CSS*/

.munilogic-rd-municipalmanagement-software{
  background: #C3DDF24D;
  /* margin-top: 150px; */
  padding-bottom: 50px;
}

.munilogic-rd-municipalmanagement {
  
  text-align: center;
  padding: 20px;
  color: #333;
  
}



.munilogic-rd-municipalmanagement-software-text span{
  background: linear-gradient(to right, #071343, #00122E, #184877);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
}

.munilogic-rd-municipalmanagement-software-text p {
  font-size: 1rem;
  color:#071343;
  padding: 0 21%;
  margin: 1% 0
}

.munilogic-rd-municipalmanagement-munilogicCE h2 {
  font-size: 1.5rem;
  color: #235299;
  margin-top: 10px;
}

.munilogic-rd-municipalmanagement-munilogicCE p {
  font-size: 1rem;
  color: #666;
  padding: 0 21%;
  margin: 1% 0
}

.munilogic-rd-municipalmanagement-munilogicCE-buttongroup {
 /* margin: 20px 0;*/
  align-items: center;
 
  display: flex;
  gap: 40px;
  
  margin-top: 35px;
}

.btn {
  padding: 10px 20px;
  border-radius: 3px;
 /* margin: 5px;*/
  cursor: pointer;

}

.learn-more1 {
  
  color: #368DD3;
  text-decoration: none;
  background-color: transparent;
  transition: background-color 0.3s ease;
  border: 1px solid #368DD3;
  
  
}

.learn-more1 span{
  margin-left: 35px;
}

.request-demo1 {
  background-color: #368DD3;
  color: #fff;
}

.see-more1 {
  
  color: #368DD3;
  text-decoration: none;
  background-color: transparent;
  transition: background-color 0.3s ease;
  border: 1px solid #368DD3;
  margin-top: 300px;
  

}

.see-more1 span{
  margin-left: 35px;
}

.see-more1 {
  margin-top: 20px;
  padding: 10px 25px;
}

.munilogic-rd-municipalmanagement-munilogicCE-centralimage img {
  width: 300px;
  height: auto;
  border-radius: 10px;
}




.munilogic-rd-municipalmanagement-munilogicCE-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
  margin-top: 70px;
  
}

.munilogic-rd-municipalmanagement-munilogicCE-modulebuttons-left {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.munilogic-rd-municipalmanagement-card {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  width: 250px;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  background: linear-gradient(145deg, #e3ecf9, #cad4e7);
  border-radius: 15px 15px 0 15px;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1), -3px -3px 6px rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.munilogic-rd-municipalmanagement-munilogicCE-modulebuttons-right {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.munilogic-rd-municipalmanagement-cardright {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  width: 250px;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  background: linear-gradient(145deg, #e3ecf9, #cad4e7);
  border-radius: 15px 15px 15px 0;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1), -3px -3px 6px rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}



/* Responsive Layout for Mobile and Small Laptop Screens */
@media (max-width: 1024px) {
  .munilogic-rd-municipalmanagement-software {
    margin-top: 50px;
    padding: 15px;
  }

  .munilogic-rd-municipalmanagement-software-text p,
  .munilogic-rd-municipalmanagement-munilogicCE p {
    font-size: 0.9rem;
    padding: 0 6%;
    margin: 1% 0;
  }

  .munilogic-rd-municipalmanagement-munilogicCE h2 {
    font-size: 1.25rem;
  }

  .munilogic-rd-municipalmanagement-munilogicCE-buttongroup {
    flex-direction: column;
    gap: 10px;
    margin: 0;
    margin-top: 20px;
  }

  .see-more1 {
    margin: 20px auto;
    display: block;
  }

  .munilogic-rd-municipalmanagement-munilogicCE-cards {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    
  }

 
}

/* Mobile Screens */
@media (max-width: 768px) {
  .munilogic-rd-municipalmanagement-software {
    margin-top: 20px;
    padding: 10px;
  }

  .munilogic-rd-municipalmanagement-software-text span {
    font-size: 1.25rem;
  }

  .munilogic-rd-municipalmanagement-munilogicCE h2 {
    font-size: 1.1rem;
  }

  .munilogic-rd-municipalmanagement-card,
  .munilogic-rd-municipalmanagement-cardright {
    /* width: 100%; */
    justify-content: center;
    font-size: 0.9rem;
    border-radius: 15px;    
  }

 
  .munilogic-rd-municipalmanagement-card .text,
  .munilogic-rd-municipalmanagement-cardright .text {
    font-size: 0.9rem;
  }

  .munilogic-rd-municipalmanagement-munilogicCE-centralimage img {
    display: none;
  }

  .btn {
    /* width: 100%; */
    padding: 8px;
  }
  

  
}


/*Municitizen CSS*/

/* General Section Styling */
.munilogic-rd-municipal-management-section {
  display: flex;
      /* justify-content: center; */
      margin-top: 50px !important;
      height: 600px;
      /* max-width: 800px; */
      margin: 0 20%;
      /* padding-bottom: 4rem; */
      /* margin-left: 280px; */
      border-radius: 16px 16px 16px 16px;
      /* padding-bottom: 0%; */
      /* margin-bottom: 4%; */
      background: linear-gradient(to right, #DBEAFE, #C3DDF24D, #368DD3);


}

.munilogic-rd-content-left {
  flex: 1;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 328px;
}

.munilogic-rd-content-left h2 {
  color: #002D62;
  font-size: 24px;
  margin-bottom: 10px;
}

.munilogic-rd-content-left p {
  font-size: 14px;
  color: #333333;
  margin-bottom: 20px;
}

.laptop-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.munilogic-rd-button-group1 {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  padding: 10px 20px;
  align-items: center;

}

.municitizen-learn-more1 {
  
  color: #368DD3;
  text-decoration: none;
  background-color: transparent;
  transition: background-color 0.3s ease;
  border: 1px solid #368DD3;
  font-size: 12px;
  margin: 2px;
  padding: 10px 10px;
  
}

.municitizen-learn-more1 span{
  margin-left: 2px;
}

.municitizen-request-demo1 {
  background-color: #368DD3;
  color: #fff;
  font-size: 14px;
  margin: 2px;
  padding: 10px;
  border: 0;
}



.munilogic-rd-content-right {
  flex: 1.5;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
  padding: 20px;
  margin-top: 40px;
  max-width: 555px;
}

.munilogic-rd-citizen-card img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

.munilogic-rd-citizen-card h3 {
  color: #002D62;
  font-size: 16px;
  margin-bottom: 10px;
}

.munilogic-rd-citizen-card p {
  font-size: 14px;
  color: #333333;
}

/* Responsive styling for 768px and below */
@media (max-width: 768px) {
  .munilogic-rd-municipal-management-section {
    flex-direction: column;
    margin: 20px auto;
    padding: 10px;
    max-width: 100%;
    border-radius: 10px;
    height: auto;
  }

  /* Left Content Styling */
  .munilogic-rd-content-left {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center; /* Center-align for better readability */
    margin-left: 3.5rem;
  }

  .munilogic-rd-content-left h2 {
    font-size: 18px;
  }

  .munilogic-rd-content-left p {
    font-size: 13px;
    margin-bottom: 15px;
  }

  .laptop-image {
    width: 100%; /* Full width on mobile */
    max-width: 300px; /* Optional: limit image size */
    margin: 0 auto; /* Center-align the image */
  }

  /* Button Group */
  .munilogic-rd-button-group1 {
    flex-direction: column; /* Stack buttons vertically */
    gap: 10px;
  }

  .municitizen-learn-more1,
  .municitizen-request-demo1 {
    width: 100%;
    font-size: 14px;
    align-items: center;
  }

  /* Right Content with Cards */
  .munilogic-rd-content-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 10px;
    align-items: center; /* Center-align cards */
  }

  /* Card Styling */
  .munilogic-rd-citizen-card {
    width: 100%;
    max-width: 300px; /* Limit width for better layout */
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
  }

  .munilogic-rd-citizen-card img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }

  .munilogic-rd-citizen-card h3 {
    font-size: 15px;
    text-align: center;
  }

  .munilogic-rd-citizen-card p {
    font-size: 13px;
    text-align: center;
  }
}

/* logos Brand Section */

@keyframes slides {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.optimogov-brand-logos-section{
  margin-top: 3rem;
  padding: 0 8rem;
  padding-top: 2rem;
  /* background: linear-gradient(180deg, rgba(219, 234, 254, 1) 0%, rgba(255, 255, 255, 1) 87%, rgba(255, 255, 255, 1) 100%); */
}

@media(max-width: 768px) {
  .optimogov-brand-logos-section {        
    padding: 0 2rem;
  }
  
}

.optimogov-brand-logos-section-heading{
  display: flex;
  justify-content: center;
  max-width: 100%;
}

.optimogov-brand-logos-section-heading h2{
  font-size: 25px;
  color: #213D6A;
  margin-bottom: 1rem;
  text-transform: capitalize;
  text-align: center;
  width: 82%;
}

@media (max-width: 1366px) {
  .optimogov-brand-logos-section-heading h2{
      width: 85%;
  }  
}

.optimogov-brand-logos-section-banner-overlay img {
  height: 9rem;
  z-index: 99;
  position: absolute;
  margin-top: 10px;
}


.logos {
  overflow: hidden;
  padding: 30px 0px;
  white-space: nowrap;
  position: relative;
  background: linear-gradient(90deg, #368DD3 25%, #132D96 74.14%);
}

.logos:before, .logos:after {
  position: absolute;
  top: 0;
  content: '';
  width: 250px;
  height: 100%;
  z-index: 2;
}

.logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255,255,255,0), rgb(255, 255, 255));
}

.logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255,255,255,0), rgb(255, 255, 255));
}

.logo_items {
  display: inline-block;
  animation: 35s slides infinite linear;
}

.logos:hover .logo_items {
  animation-play-state: paused;
}

.logo_items img{
  height: 100px;
  margin-right: 4rem;
}

.optimogov-logo-small-desc{
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  color: #463C4B;
}

.optimogov-logo-small-desc p {
  max-width: 800px;    
  margin: 0 auto;
  margin-top: 15px;
}

/* Blinking Button */
@keyframes blink {
  0%, 100% {background-color:#368DD3;}
  50% {background-color: #144692;}
}

#blinking-button {
  background-color: #144692;
  color: white;
  animation: blink 1s linear infinite;
}