@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
min-height: 100vh;
}
nav{
top: 0;
left: 0;
width: 100%;
height: 100%;
height: 85px;
background: #fff;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
z-index: 99;
}

nav .navbar{
height: 100%;
max-width: 1250px;
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
margin: auto;
/* background: red; */
padding: 0 50px;
}
.navbar .logo img{
width: 20vw;
max-width: 150px;
margin-top:10px;
/* font-size: 30px; */
color: #fff;
text-decoration: none;
font-weight: 600;
}
nav .navbar .nav-links{
line-height: 70px;
height: 100%;
}
nav .navbar .links{
display: flex;
margin-top: 10px;
}
nav .navbar .links li{
position: relative;
display: flex;
align-items: center;
justify-content: space-between;
list-style: none;
padding: 0 14px;
}
nav .navbar .links li a{
height: 100%;
text-decoration: none;
white-space: nowrap;
color: red;
font-size: 15px;
font-weight: 500;
}
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow{
transform: rotate(180deg);
}

nav .navbar .links li .arrow{
/* background: red; */
height: 100%;
width: 22px;
line-height: 70px;
text-align: center;
display: inline-block;
color: red;
transition: all 0.3s ease;
}
nav .navbar .links li .sub-menu{
position: absolute;
top: 70px;
left: 0;
line-height: 40px;
background: red;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
border-radius: 0 0 4px 4px;
display: none;
z-index: 4;
}
nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu{
display: block;
}
.navbar .links li .sub-menu li{
padding: 0 22px;
border-bottom: 1px solid rgba(255,255,255,0.1);
}
.navbar .links li .sub-menu a{
color: #fff;
font-size: 15px;
font-weight: 500;
}
.navbar .links li .sub-menu .more-arrow{
color:white;
line-height: 40px;
}
.navbar .links li .htmlCss-more-sub-menu{
/* line-height: 40px; */
}
.navbar .links li .sub-menu .more-sub-menu{
position: absolute;
top: 0;
left: 100%;
border-radius: 0 4px 4px 4px;
z-index: 3;
display: none;
}
.links li .sub-menu .more:hover .more-sub-menu{
display: block;
}
.navbar .search-box{
position: relative;
 height: 40px;
width: 40px;
}
.navbar .search-box i{
position: absolute;
height: 100%;
width: 100%;
line-height: 40px;
text-align: center;
font-size: 22px;
color: red;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}
.navbar .search-box .input-box{
position: absolute;
right: calc(100% - 40px);
top: 80px;
height: 60px;
width: 300px;
background: red;
border-radius: 6px;
opacity: 0;
pointer-events: none;
transition: all 0.4s ease;
}
.navbar.showInput .search-box .input-box{
top: 65px;
opacity: 1;
pointer-events: auto;
background: red;
}
.search-box .input-box::before{
content: '';
position: absolute;
height: 20px;
width: 20px;
background: red;
right: 10px;
top: -6px;
transform: rotate(45deg);
}
.search-box .input-box input{
position: absolute;
top: 50%;
left: 50%;
border-radius: 4px;
transform: translate(-50%, -50%);
height: 35px;
width: 280px;
outline: none;
padding: 0 15px;
font-size: 16px;
border: none;
}
.navbar .nav-links .sidebar-logo{
color: red;
display: none;
}
.navbar .bx-menu{
display: none;
color:red !important;
font-weight: 500;
}
@media (max-width:920px) {
nav .navbar{
  max-width: 100%;
  padding: 0 25px;
}

nav .navbar .logo a{
  font-size: 27px;
}
nav .navbar .links li{
  padding: 0 10px;
  white-space: nowrap;
}
nav .navbar .links li a{
  font-size: 15px;
}
}
@media (max-width:800px){
nav{
  /* position: relative; */
}
.navbar .bx-menu{
  display: block;
}
nav .navbar .nav-links{
  position: fixed;
  top: 0;
  left: -100%;
  display: block;
  max-width: 270px;
  width: 100%;
  background:  red;
  line-height: 40px;
  padding: 20px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.5s ease;
  /* z-index: 1000; */
}
.navbar .nav-links .sidebar-logo{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sidebar-logo .logo-name{
  font-size: 25px;
  color: #fff;
}
  .sidebar-logo  i,
  .navbar .bx-menu{
    font-size: 25px;
    color: #fff;
  }
nav .navbar .links{
  display: block;
  margin-top: 20px;
}
nav .navbar .links li .arrow{
  line-height: 40px;
}
nav .navbar .links li{
  display: block;
}
nav .navbar .links li .sub-menu{
position: relative;
top: 0;
box-shadow: none;
display: none;
padding: 0;
}
nav .navbar .links li .sub-menu li{
border-bottom: none;

}
.navbar .links li .sub-menu .more-sub-menu{
display: none;
position: relative;
left: 0;
}
.navbar .links li .sub-menu .more-sub-menu li{
display: flex;
align-items: center;
justify-content: space-between;
}
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow{
transform: rotate(0deg);
}
.navbar .links li .sub-menu .more-sub-menu{
  display: none;
}
.navbar .links li .sub-menu .more span{
  /* background: red; */
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
}

.links li .sub-menu .more:hover .more-sub-menu{
  display: none;
}
nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu{
  display: none;
  padding-left: 0  !important;
}
.navbar .nav-links.show1 .links .htmlCss-sub-menu,
.navbar .nav-links.show3 .links .js-sub-menu,
.navbar .nav-links.show2 .links .more .more-sub-menu{
    display: block;
  }
  .navbar .nav-links.show1 .links .htmlcss-arrow,
  .navbar .nav-links.show3 .links .js-arrow{
      transform: rotate(180deg);
}
  .navbar .nav-links.show2 .links .more-arrow{
    transform: rotate(90deg);
  }

  .links li a{
color: white !important;
}
.navbar .nav-links.show1 .links .htmlcss-arrow,
  .navbar .nav-links.show3 .links .js-arrow{
     color: white;
}
  .navbar .nav-links.show2 .links .more-arrow{
   color: white;
  }
  nav .navbar .links li .arrow{
    color:white !important;
  }


}
@media (max-width:370px){
nav .navbar .nav-links{
max-width: 100%;

} 
.nav-links{
color: white !important;
}
.links li a{
color: white !important;
}
.navbar .nav-links.show1 .links .htmlcss-arrow,
  .navbar .nav-links.show3 .links .js-arrow{
     color: white;
}
  .navbar .nav-links.show2 .links .more-arrow{
   color: white;
  }
  nav .navbar .links li .arrow{
    color:white !important;
  }
  
}

/* body */
.card-text{
    position: absolute;
    bottom: 11%;
    font-size: 15px;
  }
  
  .elipsis{
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  
  }
  /* .elipsis_1{
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  
  } */
  .card-title{
  margin-top: 20px;
  }
  .btn_icon{
    display: flex;
    gap: 7px;
    margin: 5px;
    justify-content: center;
  }
  .forum_btn_icon{
    display: flex;
    gap: 7px;
    margin: 5px;
  }
  .contributor-card {
  
    display: flex;
    
    box-sizing: border-box;
  
    column-gap: 6px;
  
    width:130px;
  
    background: linear-gradient(45deg,skyblue, blue);
  
    align-items: center;
    
    height: 38px;
  
    padding: 0.4rem 0.5rem;
  
    box-shadow: 0px 1px 3px 0px rgba(150,170,180,0.5);
  
    border: 1px solid #e2e2e2;
  
    border-radius: 2rem;
    white-space: nowrap;
  
  }
  /* GREEN BUTTON */
  .green{
  
  display: flex;
  
  box-sizing: border-box;
  
  column-gap: 6px;
  
  width: 120px;
 
  
  background: linear-gradient(45deg,green,lime);
  
  align-items: center;
  
  height: 38px;
  
  padding: 0.4rem 0.5rem;
  
  box-shadow: 0px 1px 3px 0px rgba(150,170,180,0.5);
  
  border: 1px solid #e2e2e2;
  
  border-radius: 2rem;
  
  text-overflow: ellipsis;
  overflow: hidden;
  }
  .yellow{
  
  display: flex;
  
  box-sizing: border-box;
  
  column-gap: 6px;
  
  width: 200px;
  
  
  background: linear-gradient(45deg,yellow,#fffee0);
  
  align-items: center;
  
  height: 38px;
  
  padding: 0.4rem 0.5rem;
  
  box-shadow: 0px 1px 3px 0px rgba(150,170,180,0.5);
  
  border: 1px solid #e2e2e2;
  
  border-radius: 2rem;
  
  }
  .pink{
    display: flex;
  
    box-sizing: border-box;
    
    column-gap: 6px;
    
    width: min-content;
    
    
    background: linear-gradient(45deg,pink,violet);
    
    align-items: center;
    
    height: 38px;
    
    padding: 0.4rem 0.5rem;
    
    box-shadow: 0px 1px 3px 0px rgba(150,170,180,0.5);
    
    border: 1px solid #e2e2e2;
    
    border-radius: 2rem;
  }
  .red{
  
    display: flex;
    
    box-sizing: border-box;
    
    column-gap: 6px;
    
    width: min-content;
    
    background: linear-gradient(45deg,red,#fffee0);
    
    align-items: center;
    
    height: 38px;
    
    padding: 0.4rem 0.5rem;
    
    box-shadow: 0px 1px 3px 0px rgba(150,170,180,0.5);
    
    border: 1px solid #e2e2e2;
    
    border-radius: 2rem;
    
    }
  .contributor__name a{
  
    font-family: sans-serif;
  
    margin-top: 4px;
    margin-left: 7px;
    font-size: 0.8rem;
  
    font-weight: 400;
  
    text-decoration: none;
    align-items: center;
    
    color: whitesmoke;
    margin-bottom: 0px !important;
    
  }
  .contributor__name{
    
    margin-bottom: 0 !important;
  }
  .btn{
    position: absolute;
    bottom: 5%;
    border: 2px solid white;
    background-color: red;
    /* background: linear-gradient(30deg,white,red); */
  }
  .comment_icon{
    display: flex;
    flex-direction: row;
    gap: 7px;
    position: absolute;
    bottom:4%;
    right: 10%;
  }
  .comment_icon i{
    color: red;
  }
  header{
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 30px 5%;
  }
  
  .logo{
      cursor: pointer;
  }
  
  .nav__links{
      list-style: none;
  }
  
  .nav__links li{
      display: inline-block;
      color: white;
  }
  
  .nav__links li a{
      transition: all 0.3s ease 0s;
      padding: 0 20px;
      text-decoration: none;
  }
  
  .nav__links li a:hover{
      color: #0088a9;
  }
  
  button{
      padding: 9px 25px;
      background-color: rgba(0, 136, 169, 1);
      border: none;
      border-radius: 50px;
      cursor: pointer;
      transition: all 0.3s ease 0s;
  }
  
  button:hover{
      background-color:darkred
  }
  .padding-10{
      padding: 5%;
      padding-top: 20px;
  }
  #ip2 {
      position: relative;
      border-radius: 25px;
      border: 2px solid #609;
      padding: 25px; 
      width: 200px;
      height: 15px; 
      color: white;
      width: 70%;
      margin-bottom: 7%;
      margin-left: 15%;
        
  }
  .big-size{
      z-index: 2;
      color: #176B87;
      font-size: 25px;
      position: absolute;
      bottom: 42px;
      left: 6px;
  }
  .big-size2{
      z-index: 2;
      color: #176B87;
      font-size: 25px;
      position: absolute;
      bottom:42px;
      left: 35px; 
  }
  .big-size3{
      z-index: 2;
      color: #176B87;
      font-size: 25px;
      position: absolute;
      bottom:42px;
      left: 70px;
  }
  .big-size4{
      z-index: 2;
      color: #176B87;
      font-size: 25px;
      position: absolute;
      bottom:42px;
      left:105px;
  }
  
  .search-container {
      position: relative;
      border-radius: 25px;
      width: 100%;
      max-width: 800px;
      margin: auto;
      padding: 10px;
      border: 2px solid #609;
    }
  
    /* Style the input field */
    .search-container input[type="text"] {
      width: 100%;
      padding: 12px 20px 12px 40px;  /* Left padding increased to make room for icons */
      box-sizing: border-box; 
      border: none;
      outline: none;
    }
  
    /* Style and position the icons */
    .icon {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      cursor: pointer;
      padding: 12px;
      z-index: 1; /* Ensure icons stay above the input field */
    }
  
    .mic-icon { left: 5px; color: #609; font-size: 20px;}
    .gallery-icon { left: 40px; color: #609;font-size: 20px;}
    .emoji-icon { left: 80px; color: #609;font-size: 20px;}
    .review-icon { left: 120px; color: #609;font-size: 20px;}
  .center-pagination{
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 20px;
  }
  #custom_card{
      width: 300px;
      height: 500px;
      padding: 10px;
  }
  /* #custom_card:hover::after{
    border-color: red;
    border: 3px;
  } */
  #card-container{
      gap: 10px;
      
  }
  .card-img-top{
    object-fit: cover;
      height: 200px;
      /* width: 29vw; */
      }


/* e consultation inner page structure */

.inner_body{
  background-color: whitesmoke;
}

.top_inner_sec{
  padding-left: 20px;
  width: 100%;
}
.logo_img{
  height: 90px;
  width: 90px;
  float: left;
}

.inner_sect{
  display: flex;
  /* margin: 50px; */
  /* margin-left: 400px; */
  margin-top: 50px;
  padding-left: 40px;
  background-color: white;
  min-height: 250px;
  max-width: 70% !important;
  min-width: 900px;
  padding: 40px;
}
.share{
  position: absolute;
  right: 10px;
  top:90px
}
.prob_solu{
  text-align: start;
  text-wrap: wrap;
  position: relative;
  
}
.prob_solu h1{
  font-size: 25px;
  margin-bottom: 20px;
  max-width: 100%;
}
.prob_solu p{
  margin-bottom: 10px;
  
}
.date_info{
  display: flex;
  gap: 10px;
  margin-left: 10px;
  margin-top: 30px;
}
.inner_sec_2{
  /* margin: 50px; */
  /* margin-left: 400px; */
  margin-top: 50px;
  background-color: white;
  min-height: 250px;
  min-width: 70% !important;
  padding-top:30px !important;
  padding: 60px;
  position: relative;
}
.inner_sec_3{
  margin: 0 auto;
  /* margin: 50px; */
  /* margin-left: 290px; */
  margin-top: 50px;
  background-color: white;
  min-height: 250px;
  max-width: 70% !important;
  padding-top:30px !important;
  padding: 60px;
  position: relative;
}
.inner_sec_2 h1{
  font-size: 27px;
  margin-bottom: 10px;
}
.inner_sec_2 h3{
  font-size: 21px;
  margin-top: 20px;
}
.mic_div{
  display: flex;
  gap:20px;
}
.mic_div i{
  font-size: 29px;
}
.date_info i{
  font-size: 23px;
}
.share_btn{
  border: 1px solid blue;
  border-radius: 10px;
  background: linear-gradient(45deg,red,blue);
  color: white;
  font-size: 18px;
  padding:20px;
  text-decoration: none;
  position: absolute;
  bottom: 35px;
}
.inner_sec_2 h2{
  margin-top: 20px;
}

.first_sec{
  display: flex;
  flex-direction: row;
  justify-content: center;

}
.sec_sec{
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.third_sec{
  display: flex;
  justify-content: center;
}
/* comment section */
.comment_input{
 text-decoration: none;
 border-radius: 5px;
 padding: 10px 20px 10px 10px;
 min-height: 20px;
 width: 80%;
}
.comment_div{
 
  padding: 10px;
  margin: 25px;
  margin-left: 50px;
  gap: 15px;
}
.comment_btn{
  margin-left: 15px;
  border: 1px solid blue;
  border-radius: 10px;
  background-color: transparent; /* Ensures the button background is transparent */
  color: blue;
  font-size: 18px;
  padding:10px;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  cursor: pointer; 
}
.participate{
  background: linear-gradient(45deg,red,white);
}
.comment_btn:hover{
  background-color: blue;
  color: white;
  border-color: navy;
}
.mic_div_2{
  display: flex;
  gap:10px;
  margin-bottom: 12px;
}
.mic_div_2 h1{
  font-size: 27px;
}
.mic_div_2 i{
  font-size: 22px;
}

/* forum page */
.popup {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.popup-content {
  position:relative;
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 40%;
  height: max-content; /* Could be more or less, depending on screen size */
}

#closeButton {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  background: transparent;
  color:blue;
  border: none;
  cursor: pointer;
  outline: none;
  height:30px;
  width:30px;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.close-button:hover {
  color: red;
  /* You can change the color on hover */
}
.popup-content label, .popup-content input, .popup-content textarea {
  width: 100%;
  margin-bottom: 10px;
}

.popup-content button {
  width: 100%;
  padding: 10px;
  background-color: blue;
  color: white;
  font-size: 20px;
  border: none;
  cursor: pointer;
}

.popup-content button:hover {
  background-color: darkblue;
}

textarea {
  height: 100px; /* Adjust height as needed */
}
.share_1{
  position: absolute;
  right: 10px;
  top:60px
}
.forum{
  
  /* margin: 50px; */
  /* margin-left: 400px; */
  margin-top: 50px;
  padding-left: 40px;
  background-color: white;
  min-height: 250px;
  max-width: 70% !important;
  width: 100%;
  padding: 40px;
}
.forum h4{
  color: #0088a9;
}
.forum hr{
  display: block;
}
.suggest_btn{
  border: 1px solid blue;
  border-radius: 10px;
  background: linear-gradient(45deg,red,blue);
  color: white;
  font-size: 18px;
  padding:20px;
  text-decoration: none;
  display: inline-block;
}
        
        
.third_sec p{
  margin-left: 10px;
  margin-top: 10px;
}
.discuss_area{
 display: flex;
 flex-direction: row;
 padding: 10px;
 background-color: whitesmoke;
 margin-bottom: 20px;
}
.discuss_area img{
  border-radius: 50%;
  height: 60px;
  width: 60px;
}

.forum_name{
  margin-top: 25px !important;
}

.prop_ans{
  margin-top: 0 !important;
  color: lightskyblue;
  justify-content: center;
  width: max-content;
}
.question_ans{
  margin-left: 10px;
}
.vote_comment{
  margin-left: 20px;
  display: flex;
  flex-direction: row;
  font-size: large;
}
.votes_div{
  text-align: center;
  justify-content: center;
}
.comments_div{
  margin-left: 15px;
  text-align: center;
  justify-content: center;
}
#vote_no{
  font-size: 26px;
  margin: 0px;
}
#com_no{
  font-size: 26px;
  margin: 0;
}
#votes{
  margin: 0;
  color: lightskyblue;
}
#comments{
  margin: 0;
  color: lightskyblue;}

.with_icon{
  display: flex;
  flex-direction: row;
  gap:5px;
 
}
.with_icon i{
  line-height: 1.5 !important;
  color: #0088a9;
}
/* .vote_btn{
  margin-left: 30px;
  margin-top: 10px;
  border: 1px solid blue;
  border-radius: 10px;
 color: blue;
  font-size: 18px;
  padding:10px 15px 10px 15px;
  text-decoration: none;
  height: fit-content;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}
.vote_btn:hover {
  background-color: blue; 
  color: white; 
  border-color: navy; 
  
}
.vote_btn a{
  text-decoration: none;
  color:blue;
}
 .vote_btn a:hover{
  color: white;
 } */
 .vote_btn {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  margin-left: 30px;
  margin-top: 10px;
  border: 1px solid blue;
  border-radius: 10px;
  background-color: transparent; /* Ensures the button background is transparent */
  color: blue;
  font-size: 18px;
  padding: 10px 15px;
  text-decoration: none;
  height: fit-content;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  cursor: pointer; /* Changes the mouse cursor to a pointer */
}

.vote_btn:hover {
  background-color: blue;
  color: white;
  border-color: navy;
}

.vote_btn i {
  margin-right: 5px; /* Adds spacing between the icon and the text */
}
.discussion_col{
  margin: 10px;
}

/* inner forum page */

.logo_img1{
  height: 70px;
  width: 70px;
  float: left;
  border-radius: 50%;
  background-color: whitesmoke;
}
#votes1{
  margin: 0;
  color: black;
}
#comments1{
  margin: 0;
  color: black}

  .with_icon1{
    display: flex;
    flex-direction: row;
    gap:5px;
   
  }
  .with_icon1 i{
    line-height: 1.5 !important;
    color: black;
  }
  .explanation_text{
    font-size: 24;
    font-weight: 600;
    letter-spacing: 1;
    padding: 10px 10px 20px 20px;
  }
  .inner_sec_4{
    /* margin: 50px; */
    margin-left: 400px; 
 
    margin-top: 30px;
    background-color: white;
    min-height: 250px;
    max-width: 80% !important;
    padding-top:30px !important;
    padding: 60px;
    position: relative;
  }
  .forum_name1{
    margin-top: 10px !important;
  }
.not_normal{
  text-wrap: wrap;
}
.discuss_area1{
  display: flex;
  flex-direction: column;
  padding: 10px;
  background-color: whitesmoke;
  margin-bottom: 20px;
  position: relative;
}

.user_info {
  display: flex;
  flex-direction: row;
  /* Add any additional styling needed for this container */
}
.discuss_area1 img{
  border-radius: 50%;
  height: 60px;
  width: 60px;
}
.date_post{
  position: absolute;
  right: 15px;
}

/* polls page */
.poll {
  font-family: Arial, sans-serif;
  max-width: fit-content;
  margin: 20px auto;
  padding: 20px;
  border: 1px solid #ddd;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.poll-question {
  margin-bottom: 30px;
}

.poll-question p {
  font-size: 18px;
  font-weight: bold;
}

.poll-question label {
  font-size: 16px;
  margin-left: 10px;
}

.poll-question input[type="radio"] {
  transform: scale(1.5);
  margin: 10px 5px 10px 0;
}

/* homepage */

.section-divider {
    border-top: 1px solid #333;
     margin: 20px 0;
}
.home_btn{
  position: static;
  padding: 20px !important;
  font-size: large !important;
}
.hero_section{
  height: 100vh; /* Full viewport height */
  display: flex;
  justify-content: center;
  align-items: center;

}
.container {
  width: 100%;
  max-width: 1200px; /* Or any maximum width you prefer */
}
#cardCarousel .carousel-inner {
  /* white-space: nowrap; */
}

#cardCarousel .carousel-item {
  width: 100%;
}

#cardCarousel .d-inline-block {
  display: inline-block;
  vertical-align: top;
  margin-right: 10px; /* Adjust space between cards */
}

/* Ensuring that the cards don't wrap */

#cardCarousel .carousel-indicators {
  display: flex;
  justify-content: center; /* Centers the indicators horizontally */
  list-style: none; /* Removes default list styling */
  padding: 0; /* Removes default padding */
}

#cardCarousel .carousel-indicators li {
  width: 10px; /* Width of the indicator */
  height: 10px; /* Height of the indicator */
  border-radius: 50%; /* Makes the indicators circular */
  background-color: #000; /* Color of the indicators */
  margin: 5px; /* Spacing between indicators */
  cursor: pointer; /* Changes cursor to pointer on hover */
}
.digital_part_sect{
  display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px; /* Adjust as needed */
    height: auto;
}
#cardCarousel .carousel-item .row {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
}

#cardCarousel .carousel-item .col-xl-3, 
#cardCarousel .carousel-item .col-lg-4, 
#cardCarousel .carousel-item .col-md-6 {
  flex: 0 0 auto; /* Allows flex items to have different sizes */
  max-width: none; /* Prevents limiting the width */
}

#cardCarousel #custom_card .elipsis{
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.aligned_h1_p{
  margin-left: 250px !important;
  
}
.pushed{
  margin-top: 30px !important;
}
.margin_less{
  margin-top:20px !important;
}
/* townhall */
.town_btn_icon{
  display: flex;
  flex-direction: row;
}
.town_top{
  margin-top: 30px !important;
}

