/*=====================================Google Font==========================================================*/
@font-face {
  font-family: 'SolaimanLipi';
  src: url('fonts/SolaimanLipi.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
body {
  font-family: 'SolaimanLipi', sans-serif;
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}
a{
  text-decoration: none;
}
i{
  font-size: 18px!important;
}
.text-deep-green {
  color: #004d40;
}
/*=====================================Site Button==========================================================*/



/*=====================================Back to top==========================================================*/
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 30px;
  background: linear-gradient(135deg, #014421, #0984e3);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  display: none;
  z-index: 999;
  transition: all 0.3s ease;
}

.back-to-top:hover {
  background: #222;
  color: #fff;
}
/*=====================================Whtsapp button==========================================================*/
.whatsapp-float {
  position: fixed;
  width: 40px;
  height: 40px;
  bottom: 80px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  text-decoration: none;
}
/*=====================================Site Color==========================================================*/
:root {
  --deep-green: #014421;
  --site-red: #BC144D;
  --light-green: #d1fae5;
  --text-white: #ffffff;
  --text-black: #272727;
}
/*=====================================Site Header==========================================================*/
.header-top {
  background-color: white;
  color: #004d40;
  border-bottom: 1px solid #ccc;
}

.header-top h6,
.header-top small,
.header-top div {
  color: #004d40;
  font-weight: 700;
  font-size: 16px;
}
.navbar{
  background: #2e2e2e;
}
.navbar-nav .nav-link{
  color: #fff;
  font-weight: 600;
}
.navbar-toggler {
    padding: 4px;
    font-size: 16px;
    font-weight: 700;
    background-color: aliceblue;
  }
/* Smooth hover effect for dropdown */
.nav-item.dropdown .dropdown-menu {
  display: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.4s ease;
  border-radius: 0;
  padding: 0;
  border: none;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  min-width: 200px;
}

/* Show dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Dropdown items style */
.dropdown-menu .dropdown-item {
  padding: 10px 16px;
  border-bottom: 1px solid #ddd;
  background-color: #fff;
  transition: background-color 0.4s ease;
}

/* Hover effect for items */
.dropdown-menu .dropdown-item:hover {
  background-color: #f0f0f0;
}

@media only screen and (max-width: 768px) {
  .navbar {
    background: #f4f4f4;
  }
  .navbar-nav .nav-link{
    color: #2e2e2e;
    font-weight: 600;
  }
}
/* Section gradient background */

/* Card and input style */
.card {
  background-color: #e9f5ff;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}

/* Input Fields */
.form-style {
  border-radius: 8px;
  border: 1px solid #ccc;
  padding: 10px;
  transition: 0.3s ease;
}

.form-style:focus {
  border-color: #004d40;
  box-shadow: 0 0 0 0.2rem rgba(0, 77, 64, 0.2);
}
.c-w-auto{
  width: 120px;
}
/* Button with gradient */
.btn-gradient {
  background: linear-gradient(45deg, #004d40, #00796b);
  color: white;
  border: none;
  border-radius: 8px;
  transition: 0.3s ease;
}

.btn-gradient:hover {
  background: linear-gradient(45deg, #00796b, #004d40);
}

/*=====================================Site Footer==========================================================*/
footer {
  background: linear-gradient(135deg, #0077b6, #00b4d8);
  color: #ffffff;
  border-top-right-radius:80px;
}
footer a:hover {
  text-decoration: underline;
  color: var(--site-red)!important;
}
footer li{
  padding-bottom: 10px;
}
footer i{
  font-size: 28px;
}

/*=====================================Site Footer==========================================================*/
.breadcrumb-section {
  background: linear-gradient(135deg, #0077b6, #00b4d8);
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-bottom-left-radius: 80px;
}

.breadcrumb-section h2 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.breadcrumb {
  background: transparent;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: #ffffffb3;
  font-weight: bold;
}

.breadcrumb a {
  color: #c8e6c9;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #ffffff;
}

/*=====================================Hero section==========================================================*/
#hero-section {
  background: linear-gradient(135deg, #0077b6, #00b4d8);
  border-bottom-left-radius: 80px;
}
#hero-section h1{
  font-size: 28px;
  line-height: 36px;
}
.hero-img {
  max-height: 350px;
  border: 5px solid #ffffff;
  transition: transform 0.3s ease;
}

.hero-img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/*=====================================Login section==========================================================*/
.accordion-button {
  font-weight: 600;
  font-size: 1.05rem;
}

.accordion-button:not(.collapsed) {
  background-color: #e9f5ff;
  color: #0077b6;
}

.btn-success {
  background: linear-gradient(90deg, #2e8b57, #38b000);
  border: none;
  transition: all 0.3s ease;
}

.btn-success:hover {
  background: linear-gradient(90deg, #38b000, #2e8b57);
  box-shadow: 0 0 15px rgba(56, 176, 0, 0.5);
}
.btn-account {
  background: linear-gradient(90deg, #0077b6, #00b4d8);
  border: none;
  transition: all 0.4s ease;
  font-weight: 500;
  color: #fff;
}

.btn-account:hover {
  background: linear-gradient(90deg, #00b4d8, #0077b6);
  box-shadow: 0 0 15px rgba(56, 176, 0, 0.5);
}
form .form-control {
  padding: 8px;
  font-size: 1rem;
  border-radius: 10px;
  border: 1px solid #ccc;
  transition: border-color 0.3s ease;
}

form .form-control:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}


.login-form{
  margin-top: 80px;
}
#faq-section{
  margin-top: 80px;
  margin-bottom: 80px;
}

/*=====================================Dashboard==========================================================*/
.dashboard{
  margin-top: 80px;
  margin-bottom: 80px;
}

.dashboard li {
  border-bottom: 1px solid #000;
  padding-bottom: 10px;
}
.sidebar .text-info {
  font-size: 18px;
}

.sidebar small {
  font-size: 13px;
  color: #bbb;
}

/* Table responsive wrapper shadow and rounded */
.table-responsive {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow-x: auto;
  padding-top: 10px;
  padding-right: 10px;
  padding-left: 10px;
}

/* Table heading and cell */
table.table {
  font-size: 14px;
  min-width: 800px;
}

.table thead th {
  background-color: #f4f6f8;
  font-weight: 600;
  color: #333;
  white-space: nowrap;
  text-align: center;
  vertical-align: middle;
}

.table td {
  white-space: nowrap;
  vertical-align: middle;
  padding: 10px 12px;
}

/* Mobile view adjustments */
@media (max-width: 576px) {
  table.table {
    font-size: 13px;
  }

  .table td,
  .table th {
    padding: 8px 10px;
  }

  .table-responsive {
    margin-bottom: 1rem;
  }
}



.toggle-details:hover {
  background-color: #f2f2f2;
  cursor: pointer;
}





select.form-select, input.form-control {
  border-radius: 6px;
  padding: 10px;
}

.card-header {
  font-weight: bold;
}

.card-header.bg-success,
.card-header.bg-primary,
.card-header.bg-info,
.card-header.bg-warning {
  color: #fff;
}

input[type="file"] {
  padding: 8px;
  
}

