

html,body {
  font-family: Arial, sans-serif;
  height: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
  height: 100%
}

.section-container{
  height: 100%;
}
.container {
  display: flex;
  height: 100%;
  width: 100%;
}

/* Sidebar Styling */

.sidebar {
color: white;
height: 100%;
display: flex;
flex-direction: column;
justify-content: space-between;
padding: 30px 10px;
width: 170px;
background-color: rgba(1, 29, 59, 1);
border-radius: 0px 30px 30px 0px;
box-shadow: 7px 0px 100px 0px rgba(1, 29, 59, 0.5);
}

.sidebar .logo img {
  width: 80px;
  margin-bottom: 20px;
}

.middle-icon {
  margin: auto 0;
  font-size: 40px;
  color: white;
}

.social-logout {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.social-links a {
  color: white;
  font-size: 18px;
  text-decoration: none;
}

.logout a {
  color: white;
  font-size: 18px;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logout a i {
  margin-right: 10px;
}


.sidelogo img{
  height: 80px;
  width: 90px;
  margin: 0 14px;
}
.menu-icon img{
  height: 50px;
  width: 95px;
}



.consult-header-info ul {
  list-style-type: none;
  display: flex;
  gap: 30px;
}

.consult-header-info ul li a {
  font-size: 25px;
}

.consult-header-info ul li a img{
  height: 50px;
  width: 50px;
}

/* Main Content Styling */
main {
 

  margin: 0 10px;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  
}

.top-bar .back {
  display: flex;
  align-items: center;
}

.top-bar .back i {
  font-size: 18px;
  margin-right: 10px;
  cursor: pointer;
}

.top-bar h1 {
  font-size: 24px;
}

.top-bar .icons i {
  font-size: 20px;
  margin-right: 20px;
  cursor: pointer;
}

/* Divider Line */
.divider {
  height: 2px;
  background-color: #ccc;
  margin-bottom: 20px;
}

/* Grid and Cards */
.dash-container{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.dash-row{

  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 8px;
 
  border: 1px solid rgba(1, 29, 59, 1);
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.25);
}
.quick-stats{
  margin: 22px 0;
    width: 482px;
}
.quick-stats p{
  margin: 10px 0px;
  font-size: 19px;
  font-weight: bold;
}
.quick-stats p strong{
  margin-left: 10rem;
}

.quick-stats p i{
  margin-left: 17rem;
}
.card h2 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: bold;
}

.quick-stats .arrow {
  font-size: 25px;
  margin-left: 13rem;
}

.services {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #003366;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.services .text-content {
  flex: 1;
}

.services .text-content h2 {
  margin-bottom: 10px;
}

.services .text-content ul {
  list-style: none;
  padding: 0;
}

.services .text-content ul li {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
}

.services .image-content img {
  width: 280px;
  /* height: auto; */
  object-fit: contain;
}


.repository{
  width: 492px;
}
.repository .progress-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.repository .progress-item {
  text-align: center;
}

.repository .circle {
  position: relative;
  width: 123px;
  height: 167px;
}

.circular-chart {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.circle-bg {
  fill: none;
  stroke: #e6e6e6;
  stroke-width: 2.8;
}

.circle-bar {
  fill: none;
  stroke-width: 2.8;
  stroke-linecap: round;
}

.circular-chart.blue .circle-bar {
  stroke: #003366;
}

.circular-chart.gray .circle-bar {
  stroke: #808080;
}

.percentage {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 25px;
  font-weight: bold;
  color: #333;
}

.fun-fact {
  background-color: #ffc107;
  color: #001F3F;
  padding: 20px;
  border-radius: 8px;
}

.reviews {
  display: flex;
  flex-direction: column;
}

.reviews .review-slider {
  display: flex;
  align-items: center;
}

.reviews .review {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.reviews .customer-pic {
  width: 188px;
  /* height: 60px; */
  border-radius: 50%;
}



/* slider-use */
.slider-container {
  position: relative;
  max-width: 642px;
  margin: 22px auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.25);

}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 100%;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
}

.slide-content {
  flex: 1;
}

.slide-content h4 {
  margin: 0px 15px 18px;
  font-size: 18px;
  color: rgba(0, 0, 0, 1);
}

.slide-content p {
  margin: 10px;
  font-size: 14px;
  color: rgba(0, 0, 0, 1);
}

.slide img {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  object-fit: cover;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  border: none;
  color: black;
  font-size: 35px;
 
  cursor: pointer;
  border-radius: 50%;
  z-index: 1;
}

.slider-btn:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.prev-btn {
  left: 0px;
}

.next-btn {
  right: 10px;
}

.dots {
  text-align: center;
  margin-top: 10px;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background-color:#001F3F;
}


.fun-fact{
  width: 492px;
}
.fun-fact h2{
  text-align: center;
}




@media only screen and (max-width: 768px) {

  .sidebar {
    position: fixed;
    left: -200px; /* Hide sidebar by default */
    transition: left 0.3s ease;
    height: 100vh;
    z-index: 1000;
  }

  .sidebar.show {
    left: 0; /* Show sidebar when toggled */
  }

  .sidebar{
    width: 170px;
    margin-left: 0; /* Reset margin for full width */
  }

  .menu-icon {
    display: block; /* Ensure the menu icon is visible on mobile */
    cursor: pointer;
  }
  .sidebar {
    margin: 0;
  }
  .consult-header-info ul li a img {
    height: 35px;
    width: 36px;
}
.consult-header-info ul {
  gap: 20px;
}
.top-bar .back {
 margin: 0 10px;
}

.top-bar {
  display: flex ;
  justify-content: space-between;
   align-items: center;
  }



 /* Main Content */
 main {
  margin-left: 0;
 
}

/* Top Bar */


.consult-header-info ul {
  gap: 10px;
}

.consult-header-info ul li a img {
  height: 30px;
  width: 30px;
}

/* Dashboard Layout */
.dash-container {
  flex-direction: column;
}

.dash-row {
  flex-direction: column;
  gap: 15px;
}

.card {
  width: 100%;
  margin-bottom: 15px;
  padding: 15px;
}

.quick-stats p strong {
  margin-left: 0;
}

/* Slider */
.slider-container {
  width: 100%;
  margin: 10px auto;
}

.slide {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.slide-content {
  margin-bottom: 10px;
}

.slide img {
  width: 80px;
  height: 80px;
}

.slider-btn {
  font-size: 20px;
}

.dot {
  width: 8px;
  height: 8px;
}

/* Repository Section */
.repository .progress-container {
  flex-direction: column;
  align-items: center;
}

.repository .progress-item {
  margin-bottom: 10px;
}

.fun-fact {
  width: 100%;
  margin-bottom: 15px;
}

/* Adjusted Fonts and Padding */
body {
  font-size: 14px;
}

.card h2 {
  font-size: 16px;
}

.quick-stats p {
  font-size: 16px;
}

.services .text-content ul li {
  font-size: 14px;
}

}




/* Popup Container */
.popup {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.popup.hidden {
  display: none;
}

.popup-content {
  background-color:rgba(1, 33, 66, 0.1);
  border-radius: 12px;
  width: 700px;
  text-align: center;
  color: #fff;
  padding: 30px;
  backdrop-filter: blur(100px);

  box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 1);
  
}

/* Logo Section */
.logo-box img {
  width: 300px;
  margin-bottom: 20px;
}

/* Confirmation Text */
.confirmation-text {
  font-size: 33px;
  margin-top: 30px;
  font-weight: 600;
  color: #fff;
}

hr {
  border: none;
  height: 2px;
  background-color: #fff;
  width: 18%;
  margin: 11px auto 30px;
}

/* Button Group */
.popup-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.popup-btn {
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  background-color: #4b4b4b;
  color: #fff;
  transition: background-color 0.3s ease;
}

.popup-btn:hover {
  background-color: #636363;
}

.confirm {
  background-color: rgba(254, 207, 15, 1);
  color: #000;
}
.confirm a{
  text-decoration: none;
  color: #000;
}
.confirm:hover {
  background-color: #ffda33;
}

/* Social Icons */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  font-size: 20px;
}

.social-icons a {
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #f6c708;
}



.menu-icon-bar{
  position: relative;
  top: 3rem;
  left: 1rem;
  display: none;
}

.menu-icon-bar i{
  font-size: 28px;
  color: #fff;

}