@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Saira+Condensed:wght@100;200;300;400;500;600;700;800;900&display=swap");
html {
  scroll-behavior: smooth;
}

body,
p,
a {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6 {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  margin: 0;
  padding: 0;
  color: #00a5df;
}

p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  margin: 0;
  padding: 0;
  color: #1e1c16;
}

.btn-done, .btn-red, .btn-secondary, .btn-primary {
  display: inline-block;
  padding: 12px 32px;
  font-family: "Saira Condensed", sans-serif;
  font-weight: 600;
  font-size: 16px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  color: #fff;
  background-image: linear-gradient(135deg, #00c1cf, #5472d2);
  background-size: 200% auto;
}
.btn-primary:hover {
  background-position: right center;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(84, 114, 210, 0.4);
}

.btn-secondary {
  color: #00a5df;
  background-color: transparent;
  border: 2px solid #00a5df;
  transition: 0.3s ease-in-out;
}
.btn-secondary:hover {
  background-position: right center;
  color: #0077b6;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(84, 114, 210, 0.4);
  border: 2px solid #0077b6;
}

.btn-red {
  color: #fff;
  background: linear-gradient(135deg, #ff4b2b, #ff0000);
  background-size: 200% auto;
}
.btn-red:hover {
  background-position: right center;
  transform: scale(1.03);
  box-shadow: 0 8px 18px rgba(255, 0, 0, 0.3);
}

.btn-done {
  color: #fff;
  background: linear-gradient(135deg, #1d5e09, #3ca55c);
  background-size: 200% auto;
}
.btn-done:hover {
  background-position: right center;
  transform: scale(1.03);
  box-shadow: 0 8px 18px rgba(60, 165, 92, 0.3);
}

/* -- --------------------
Sroll To Top on Click 
----------------------
*/
.scrollToTop {
  z-index: 9999;
  text-align: center;
  background: #0077b6;
  color: #fff;
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: none !important;
  cursor: pointer;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}
.scrollToTop.d-block {
  display: block !important;
}
.scrollToTop button {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.scrollToTop button i {
  padding: 3px;
  font-size: 18px;
  color: #fff;
}
.scrollToTop:hover {
  text-decoration: none;
  background-color: #0077b6;
}

/* -- --------------------
tap-call 
----------------------
*/
.mobile-call-button {
  position: fixed;
  bottom: 80px;
  right: 30px;
  text-align: center;
  z-index: 99;
  width: 40px;
  height: 40px;
  background: #0077b6;
  border-radius: 50%;
  display: none;
}
@media screen and (max-width: 767px) {
  .mobile-call-button {
    display: block;
  }
}
.mobile-call-button a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mobile-call-button a i {
  padding: 3px;
  font-size: 18px;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .scrollToTop,
  .mobile-call-button {
    right: 10px;
  }
}
/* -- --------------------
owl carasoul 
----------------------
*/
.product-collection,
.about-page-banner {
  position: relative;
}
.product-collection .owl-nav,
.about-page-banner .owl-nav {
  position: absolute;
  width: 100%;
  top: 50%;
}
.product-collection .owl-nav .owl-prev,
.about-page-banner .owl-nav .owl-prev {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #0077b6 !important;
  left: -30px;
  transition: 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-collection .owl-nav .owl-prev span,
.about-page-banner .owl-nav .owl-prev span {
  color: #fff;
  font-size: 22px;
}
.product-collection .owl-nav .owl-prev:hover,
.about-page-banner .owl-nav .owl-prev:hover {
  background-color: #00a5df !important;
}
.product-collection .owl-nav .owl-next,
.about-page-banner .owl-nav .owl-next {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #0077b6 !important;
  right: -30px;
  transition: 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-collection .owl-nav .owl-next span,
.about-page-banner .owl-nav .owl-next span {
  color: #fff;
  font-size: 22px;
}
.product-collection .owl-nav .owl-next:hover,
.about-page-banner .owl-nav .owl-next:hover {
  background-color: #00a5df !important;
}

@media screen and (max-width: 576px) {
  .product-collection .owl-nav .owl-prev,
  .about-page-banner .owl-nav .owl-prev {
    left: 0px;
  }
  .product-collection .owl-nav .owl-next,
  .about-page-banner .owl-nav .owl-next {
    right: 0px;
  }
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul li {
  display: block;
  font-size: 14px;
  font-weight: 300;
  font-family: "Roboto", sans-serif;
}

figure {
  margin: 0;
}

img {
  width: 100%;
  transition: 0.4s all;
}

p {
  line-height: 1.5;
}

a {
  color: #aaa4a4;
  font-size: 16px;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  text-decoration: none;
  /*display: block;*/
  overflow: hidden;
  transition: 0.4s all;
}
a:hover, a:focus, a:active {
  text-decoration: none;
  font-style: normal;
  cursor: pointer;
  outline: none;
}

.no-padding {
  padding: 0;
}

.no-margin {
  margin: 0;
}

.no-border-right {
  border-right: none !important;
}

.no-border-left {
  border-left: none !important;
}

.no-border-top {
  border-top: none !important;
}

.no-border-bottom {
  border-bottom: none !important;
}

.no-margin {
  margin: 0 !important;
}

.no-padding {
  padding: 0 !important;
}

.padding {
  padding: 40px 0;
}

@media screen and (max-width: 767px) {
  .padding {
    padding: 30px 0;
  }
}
@media screen and (max-width: 576px) {
  .padding {
    padding: 15px 0;
  }
}
@media screen and (max-width: 480px) {
  .padding {
    padding: 10px 0;
  }
}
section {
  position: relative;
}

.section-padding {
  padding: 80px 0px;
}

.section-heading {
  font-size: 38px;
  color: #0077b6;
  font-weight: 800;
  line-height: 1.5;
}

.block-title {
  font-size: 24px;
  color: #fff;
  font-weight: 600;
}

.des {
  font-size: 16px;
  color: #1e1c16;
}

.sub-des {
  font-size: 16px;
  color: #aaa4a4;
}

@media screen and (max-width: 768px) {
  .section-padding {
    padding: 40px 0px;
  }
  .section-heading {
    font-size: 28px;
  }
  .block-title {
    font-size: 20px;
  }
  .des {
    font-size: 18px;
  }
  .sub-des {
    font-size: 16px;
  }
}
.breadcrumb {
  background-color: #1e1c16;
  padding: 180px 0px 100px 0px;
  margin: 0px;
}
.breadcrumb .breadcrumb-title {
  color: #fff;
  text-align: center;
  font-size: 38px;
  font-weight: 500;
}

header {
  z-index: 99;
  width: 100%;
  background-color: #fff;
}
header .navbar .navbar-brand {
  width: 100px;
}
header .navbar .navbar-toggler {
  background-color: #fff;
  border-radius: 3px;
  border: 1px solid #aaa4a4;
}
header .navbar .offcanvas .offcanvas-header img {
  width: 180px;
}
header .navbar .offcanvas .offcanvas-body {
  justify-content: center;
}
header .navbar .offcanvas .offcanvas-body .navbar-nav .nav-item .nav-link {
  padding: 0 15px;
  color: #1e1c16;
  font-weight: 400;
  text-transform: capitalize;
  font-size: 17px;
  transition: 0.3s ease-in-out;
}
header .navbar .offcanvas .offcanvas-body .navbar-nav .nav-item.active .nav-link, header .navbar .offcanvas .offcanvas-body .navbar-nav .nav-item:hover .nav-link {
  color: #0077b6;
  font-weight: 500;
}
header .navbar .offcanvas .offcanvas-body .navbar-nav .search-product {
  display: none;
}
header .navbar .search-product form {
  background-color: transparent;
  padding: 5px 10px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  border: 2px solid #00a5df;
}
header .navbar .search-product form input {
  border: none;
  outline: none;
  padding: 2px 5px;
  background-color: transparent;
  width: 150px;
  color: #1e1c16;
}
header .navbar .search-product form input::placeholder {
  color: #00a5df;
  font-size: 14px;
  font-weight: 400;
}
header .navbar .search-product form button {
  border: none;
  outline: none;
  background-color: transparent;
}
header .navbar .search-product form button i {
  font-size: 18px;
  color: #0077b6;
}
header.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: #fff;
  background-image: none;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.082);
}
header.fixed-header .navbar {
  padding: 0px;
}
header.fixed-header .navbar .navbar-brand {
  width: 80px;
}

@media screen and (max-width: 992px) {
  header .navbar .navbar-brand {
    width: 90px;
  }
  header .navbar .offcanvas .offcanvas-header img {
    width: 180px;
  }
  header .navbar .offcanvas .offcanvas-body .navbar-nav .nav-item .nav-link {
    padding: 10px 0px;
  }
  header .navbar .offcanvas .offcanvas-body .navbar-nav .search-product {
    display: block;
    margin-top: 10px;
  }
  header .navbar .offcanvas .offcanvas-body .navbar-nav .search-product form {
    width: 80%;
  }
  header .navbar .offcanvas .offcanvas-body .navbar-nav .search-product form input {
    width: 100%;
  }
  header .navbar .search-product {
    display: none;
  }
  header.fixed-header .navbar {
    padding: 0px;
  }
  header.fixed-header .navbar .navbar-brand {
    width: 70px;
  }
}
@media screen and (max-width: 576px) {
  header .navbar .navbar-brand {
    width: 90px;
  }
  header .navbar .offcanvas .offcanvas-header img {
    width: 120px;
  }
  header.fixed-header .navbar .navbar-brand {
    width: 60px;
  }
}
.banner {
  padding: 60px 0px 120px 0px;
}
.banner .hero-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
  position: relative;
}
.banner .hero-banner .hero-banner-image {
  width: 40%;
}
.banner .hero-banner .hero-banner-image .img-item {
  width: 100%;
  height: 100%;
}
.banner .hero-banner .hero-banner-image .img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 100px 0px 100px 0px;
}
.banner .hero-banner .hero-banner-image .owl-nav {
  display: none;
  position: absolute;
  left: 50%;
  bottom: -50px;
  transform: translate(-50%);
}
.banner .hero-banner .hero-banner-image .owl-nav .owl-prev {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #0077b6;
  font-size: 18px;
  color: #fff;
  margin-right: 10px;
}
.banner .hero-banner .hero-banner-image .owl-nav .owl-next {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #0077b6;
  font-size: 18px;
  color: #fff;
}
.banner .hero-banner .hero-banner-image .owl-dots {
  display: none;
}
.banner .hero-banner .hero-baner-content {
  width: 48%;
}
.banner .hero-banner .hero-baner-content .baner-title {
  font-size: 68px;
  color: #0077b6;
  line-height: 1.1;
  font-family: "Saira Condensed", sans-serif;
  font-weight: 800;
}
.banner .hero-banner .hero-baner-content .des {
  padding: 20px 0px;
}
.banner .hero-banner .hero-baner-content .banner-btn .btn-primary {
  margin-right: 30px;
}

@media screen and (max-width: 992px) {
  .banner {
    padding: 0px 0px;
  }
  .banner .hero-banner {
    flex-direction: column;
  }
  .banner .hero-banner .hero-banner-image {
    width: 100%;
  }
  .banner .hero-banner .hero-banner-image .img-item {
    height: 300px;
  }
  .banner .hero-banner .hero-baner-content {
    width: 100%;
    margin: 20px 0px 0px 0px;
  }
  .banner .hero-banner .hero-baner-content .baner-title {
    font-size: 48px;
  }
  .banner .hero-banner .hero-baner-content .banner-btn .btn-primary {
    margin-right: 20px;
  }
}
@media screen and (max-width: 576px) {
  .banner {
    padding: 0px 0px 30px 0px;
  }
  .banner .hero-banner {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .banner .hero-banner .hero-banner-image {
    width: 100%;
    height: 50vh;
  }
  .banner .hero-banner .hero-banner-image .img-item {
    width: 100%;
    height: 50vh;
  }
  .banner .hero-banner .hero-banner-image .img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50px 0px 50px 0px;
  }
  .banner .hero-banner .hero-baner-content {
    width: 100%;
    margin: 15px 0px 0px 0px;
  }
  .banner .hero-banner .hero-baner-content p {
    display: none;
  }
  .banner .hero-banner .hero-baner-content .baner-title {
    font-size: 45px;
    margin: 15px 0;
  }
  .banner .hero-banner .hero-baner-content .banner-btn {
    display: flex;
    justify-content: center;
  }
  .banner .hero-banner .hero-baner-content .banner-btn .btn-primary {
    margin-right: 10px;
    font-size: 20px;
    margin-top: 10px;
  }
  .banner .hero-banner .hero-baner-content .banner-btn .btn-secondary {
    font-size: 20px;
    margin-top: 10px;
  }
}
#we-belive {
  background-image: url("../images/upvc-web-banner-1.jpg");
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
}
#we-belive::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.685);
  z-index: 2;
  pointer-events: none;
}
#we-belive .container {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
#we-belive .we-row {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
#we-belive .we-item {
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  padding: 2rem 1.5rem;
  flex: 1 1 260px;
  max-width: 340px;
  min-width: 260px;
  text-align: center;
  transition: box-shadow 0.2s;
}
#we-belive .we-item:hover {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}
#we-belive .we-item i {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 1rem;
  display: block;
}
#we-belive .we-item .we-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #222;
}
#we-belive .we-item .sub-des {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}
#we-belive .we-content {
  margin-top: 2rem;
  text-align: center;
}
#we-belive .we-content .des {
  font-size: 1.1rem;
  color: #fff;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

@media (max-width: 900px) {
  #we-belive .we-row {
    gap: 1rem;
  }
  #we-belive .we-content .des {
    display: none;
  }
  #we-belive .we-item {
    max-width: 100%;
    min-width: 220px;
    padding: 1.5rem 1rem;
  }
}
@media (max-width: 600px) {
  #we-belive .we-row {
    flex-direction: column;
    align-items: center;
  }
  #we-belive .we-item {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }
}
.ads .heading {
  margin-bottom: 40px;
  text-align: center;
}
.ads .video-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.ads .video-row .video-item {
  height: 350px;
  width: calc(25% - 20px);
}
.ads .video-row .video-item iframe {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 992px) {
  .ads .video-row .video-item {
    height: 250px;
    width: calc(33.3333333333% - 20px);
  }
  .ads .video-row .video-item iframe {
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 576px) {
  .ads .video-row {
    gap: 10px;
  }
  .ads .video-row .video-item {
    height: 250px;
    width: calc(50% - 10px);
  }
  .ads .video-row .video-item iframe {
    width: 100%;
    height: 100%;
  }
}
.index-product .product-collection {
  display: flex;
  margin-top: 40px;
}
.index-product .product-collection .item {
  position: relative;
  height: 300px;
  overflow: hidden;
  border-radius: 22px;
  z-index: 99;
  margin: 14px;
  box-shadow: 0 4px 24px rgba(44, 62, 80, 0.1);
  background: #fff;
  transition: box-shadow 0.25s, transform 0.22s;
}
.index-product .product-collection .item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s;
}
.index-product .product-collection .item .product-title {
  position: absolute;
  bottom: 24px;
  left: 50%;
  width: 90%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.92);
  text-align: center;
  padding: 7px 18px;
  border-radius: 22px;
  font-weight: 700;
  color: #222;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.08);
  z-index: 2;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}
.index-product .product-collection .item .view-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  background: linear-gradient(90deg, #4caf50 60%, #2196f3 100%);
  color: #fff;
  border: none;
  border-radius: 22px;
  padding: 10px 28px;
  font-size: 1em;
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(33, 150, 243, 0.09);
  cursor: pointer;
  z-index: 3;
  transition: opacity 0.22s, transform 0.22s;
  outline: none;
  text-decoration: none;
}
.index-product .product-collection .item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.13) 0%, rgba(76, 175, 80, 0.13) 100%);
  opacity: 0;
  transition: opacity 0.22s;
  z-index: 1;
}
.index-product .product-collection .item:hover {
  transform: translateY(-1px) scale(1.025);
}
.index-product .product-collection .item:hover img {
  transform: scale(1.06);
}
.index-product .product-collection .item:hover::before {
  opacity: 1;
}
.index-product .product-collection .item:hover .view-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.index-product .product-collection .item:hover .product-title {
  background: rgba(255, 255, 255, 0.98);
}

@media screen and (max-width: 576px) {
  .index-product .product-collection {
    margin-top: 20px;
  }
  .index-product .product-collection .item {
    height: 250px;
    border-radius: 18px;
    margin: 0 0 18px 0;
  }
  .index-product .product-collection .item .product-title {
    font-size: 0.98em;
    padding: 5px 10px;
  }
  .index-product .product-collection .item .view-btn {
    padding: 7px 18px;
    font-size: 0.97em;
  }
}
.index-market {
  position: relative;
  overflow: hidden;
}

.market-carousel-container {
  position: relative;
  overflow: hidden;
  margin: 40px 0;
}

.market-cards {
  display: flex;
  transition: transform 0.5s ease;
  margin: 0;
  padding: 0;
}

.market-card {
  flex: 0 0 calc(33.333% - 20px);
  min-width: calc(33.333% - 20px);
  margin: 0 10px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
}

.market-card:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.market-img {
  position: relative;
}

.market-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.market-icon {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background-color: #008dc9;
  padding: 10px;
  border-radius: 4px;
}

.market-icon i {
  color: white;
  font-size: 1.5rem;
}

.market-card h3 {
  font-size: 1.25rem;
  margin: 15px 15px 5px;
  color: #222;
}

.sub-heading {
  font-size: 0.95rem;
  color: #888;
  margin: 0 15px 10px;
}

.description {
  font-size: 0.95rem;
  color: #555;
  padding: 0 15px 20px;
}

.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.nav-button:hover {
  background: rgb(255, 255, 255);
}

.prev-button {
  left: 10px;
}

.next-button {
  right: 10px;
}

.dots-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #008dc9;
}

@media (max-width: 992px) {
  .market-card {
    flex: 0 0 calc(100% - 20px);
    min-width: calc(100% - 20px);
  }
  .nav-button {
    width: 35px;
    height: 35px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .market-card {
    flex: 0 0 calc(50% - 20px);
    min-width: calc(50% - 20px);
  }
}
.index-chooseus .chooseus-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.index-chooseus .chooseus-row .content {
  width: 45%;
}
.index-chooseus .chooseus-row .content .sub-des {
  margin: 10px 0px;
}
.index-chooseus .chooseus-row .figure {
  width: 40%;
}

@media screen and (max-width: 992px) {
  .index-chooseus .chooseus-row {
    display: flex;
    flex-direction: column;
  }
  .index-chooseus .chooseus-row .content {
    width: 100%;
  }
  .index-chooseus .chooseus-row .figure {
    width: 60%;
    margin-top: 20px;
  }
}
@media screen and (max-width: 576px) {
  .index-chooseus .chooseus-row .figure {
    width: 100%;
  }
}
.index-feature .feature-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  /* Add gap between items */
}
.index-feature .feature-row .item {
  text-align: center;
  border-radius: 50px 20px 50px 20px;
  padding: 30px;
  /* Ensure items take equal width */
  width: calc(20% - 20px);
  /* Calculate width to fit 5 items with 20px gap */
  box-sizing: border-box;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  /* Add box shadow on the bottom side */
  /* Include padding and border in the width calculation */
}
.index-feature .feature-row .item img {
  height: 100px;
  object-fit: contain;
}
.index-feature .feature-row .item .f-des {
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  margin-top: 20px;
}

@media screen and (max-width: 992px) {
  .index-feature .feature-row .item {
    width: calc(33.33% - 20px);
  }
}
@media screen and (max-width: 768px) {
  .index-feature .feature-row .item {
    width: calc(50% - 20px);
  }
}
@media screen and (max-width: 576px) {
  .index-feature .feature-row .item {
    padding: 5%;
  }
  .index-feature .feature-row .item img {
    width: 100%;
    margin: 0px auto;
  }
}
.index-contact .contact-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}
.index-contact .contact-row .content {
  width: 40%;
  padding: 30px;
  border-radius: 30px;
}
.index-contact .contact-row .content .block-title {
  color: #00a5df;
}
.index-contact .contact-row .content .sub-des {
  margin: 15px 0px;
}
.index-contact .contact-row .content .info .item {
  color: #00a5df;
  margin: 15px 0px;
}
.index-contact .contact-row .content .info .item i {
  font-size: 20px;
  margin-right: 20px;
}
.index-contact .contact-row .content .info .item span {
  font-weight: 600 !important;
}
.index-contact .contact-row .content .info .item:hover {
  color: #00a5df;
}
.index-contact .contact-row .content .map {
  width: 100%;
  height: 200px;
}
.index-contact .contact-row .content .map iframe {
  height: 100%;
  width: 100%;
  border-radius: 20px;
}
.index-contact .contact-row .form {
  width: 55%;
}
.index-contact .contact-row .form form {
  padding: 40px;
  border-radius: 30px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.185);
}
.index-contact .contact-row .form form .form-group {
  display: flex;
  gap: 40px;
  margin: 40px 0px;
}
.index-contact .contact-row .form form .form-group label {
  font-size: 14px;
}
.index-contact .contact-row .form form .form-group .entry {
  width: 100%;
}
.index-contact .contact-row .form form .form-group .entry input,
.index-contact .contact-row .form form .form-group .entry textarea {
  width: 100%;
  border: none;
  border-bottom: 2px solid #aaa4a4;
  outline: none;
}
.index-contact .contact-row .form form .form-group .entry textarea {
  width: 100%;
  outline: none;
}

@media screen and (max-width: 992px) {
  .index-contact .contact-row {
    flex-direction: column;
  }
  .index-contact .contact-row .content {
    width: 100%;
  }
  .index-contact .contact-row .form {
    width: 100%;
    margin-top: 30px;
  }
}
@media screen and (max-width: 576px) {
  .index-contact .contact-row {
    flex-direction: column;
    margin-top: 20px;
  }
  .index-contact .contact-row .content {
    padding: 20px;
  }
  .index-contact .contact-row .form {
    margin-top: 20px;
  }
  .index-contact .contact-row .form form {
    padding: 20px;
  }
  .index-contact .contact-row .form form .form-group {
    display: flex;
    gap: 20px;
    margin: 30px 0px;
    flex-wrap: wrap;
  }
}
.faq .faq-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq .faq-hero .hero-faq-collection {
  width: 52%;
}
.faq .faq-hero .hero-faq-collection .faq-item {
  border: 1px solid #ddd;
  margin: 10px 0;
  border-radius: 5px;
  overflow: hidden;
  background-color: #fff;
  display: block;
}
.faq .faq-hero .hero-faq-collection .faq-item .faq-question {
  cursor: pointer;
  padding: 15px;
  background-color: #0077b6;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq .faq-hero .hero-faq-collection .faq-item .faq-question h6 {
  margin: 0;
  color: #fff;
  font-weight: 500;
}
.faq .faq-hero .hero-faq-collection .faq-item .faq-question .icon {
  display: flex;
  align-items: center;
}
.faq .faq-hero .hero-faq-collection .faq-item .faq-question .icon i {
  font-size: 20px;
  margin-left: 10px;
  display: none;
}
.faq .faq-hero .hero-faq-collection .faq-item .faq-question .icon i.fa-plus {
  display: inline;
  color: #fff;
}
.faq .faq-hero .hero-faq-collection .faq-item .faq-question.active .icon .fa-plus {
  display: none;
}
.faq .faq-hero .hero-faq-collection .faq-item .faq-question.active .icon .fa-minus {
  display: inline;
  color: #00a5df;
}
.faq .faq-hero .hero-faq-collection .faq-item .faq-answer {
  display: none;
  padding: 15px;
  border-top: 1px solid #ddd;
}
.faq .faq-hero .hero-faq-collection .faq-item .block {
  display: block;
}
.faq .faq-hero .hero-faq-collection .faq-item.faq-hidden {
  display: none;
}
.faq .faq-hero .hero-faq-content {
  width: 42%;
}
.faq .faq-hero .hero-faq-content .faq-btn {
  padding: 20px 0px 0px 0px;
}

@media screen and (max-width: 992px) {
  .faq .faq-hero {
    flex-direction: column-reverse;
  }
  .faq .faq-hero .hero-faq-collection {
    width: 100%;
  }
  .faq .faq-hero .hero-faq-content {
    width: 100%;
  }
}
footer {
  padding-top: 0px !important;
}
footer .footer-content-block {
  padding-right: 70px;
}
footer .footer-block .logo img {
  width: 110px;
}
footer .footer-block .des {
  margin: 10px 0px;
}
@media screen and (max-width: 768px) {
  footer .footer-block .des {
    font-size: 15px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  footer .footer-block .des {
    font-size: 20px;
  }
}
footer .footer-block .social-icon {
  display: flex;
}
footer .footer-block .social-icon a i {
  font-size: 40px;
  margin-right: 20px;
  color: #0077b6;
  transition: 0.3s ease-in-out;
}
footer .footer-block .social-icon a i:hover {
  color: #00a5df;
}
footer .footer-block .block-title {
  margin-bottom: 20px;
  color: #0077b6;
}
footer .footer-block .footer-nav .footer-nav-item .footer-nav-link {
  font-size: 15px;
  color: #aaa4a4;
  font-weight: 500;
  margin-bottom: 10px;
}
footer .footer-block .footer-nav .footer-nav-item .footer-nav-link:hover {
  color: #00a5df;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  footer .footer-block .footer-nav .footer-nav-item .footer-nav-link {
    font-size: 20px;
  }
}
footer .footer-block .footer-nav .footer-nav-item .footer-nav-link i {
  color: #00a5df;
  font-size: 20px;
  margin-right: 5px;
}
footer .footer-bottom {
  margin-top: 30px;
}
footer .footer-bottom .block {
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .footer-bottom .block p {
  font-family: cursive;
  font-size: 14px;
  font-weight: 600;
  color: #00a5df;
}
footer .footer-bottom .block p a {
  padding: 0px 3px;
  font-family: cursive;
  color: #aaa4a4;
  font-size: 16px;
  font-weight: 600;
  display: inline;
}
footer .footer-bottom .block p a:hover {
  color: #00a5df;
}

.about-page .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.about-page .about-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 50px;
}
.about-page .about-hero .about-hero-text {
  flex: 1.2;
}
.about-page .about-hero .about-hero-text .section-heading {
  font-size: 2.5em;
  margin-bottom: 20px;
  text-align: left;
}
.about-page .about-hero .about-hero-text .section-heading::before, .about-page .about-hero .about-hero-text .section-heading::after {
  display: none;
}
.about-page .about-hero .about-hero-text .about-main-des {
  font-size: 1.15em;
  color: #1e1c16;
  line-height: 1.7;
}
.about-page .about-hero .about-hero-text .about-main-des .brand {
  color: #0077b6;
  font-weight: 600;
}
.about-page .about-hero .about-hero-img {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
.about-page .about-hero .about-hero-img img {
  width: 420px;
  max-width: 100%;
  height: 300px;
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}
.about-page .feature-cards-row {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-bottom: 50px;
}
.about-page .feature-cards-row .feature-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  padding: 32px 22px 26px 22px;
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s;
}
.about-page .feature-cards-row .feature-card:hover {
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.13);
}
.about-page .feature-cards-row .feature-card .feature-icon {
  margin-bottom: 18px;
}
.about-page .feature-cards-row .feature-card .feature-icon i {
  font-size: 2.7em;
  color: #0077b6;
  background: #f5f7fa;
  border-radius: 50%;
  padding: 18px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  display: inline-block;
}
.about-page .feature-cards-row .feature-card .feature-content h3 {
  color: #0077b6;
  font-size: 1.2em;
  margin-bottom: 10px;
  font-weight: 600;
}
.about-page .feature-cards-row .feature-card .feature-content p {
  color: #1e1c16;
  font-size: 1em;
  line-height: 1.5;
}
.about-page .directors-section {
  margin-bottom: 50px;
}
.about-page .directors-section .directors-title {
  text-align: center;
  font-size: 1.5em;
  color: #0077b6;
  font-weight: 700;
  margin-bottom: 28px;
  letter-spacing: 1px;
}
.about-page .directors-section .directors-row {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.about-page .directors-section .directors-row .director-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  padding: 28px 22px 18px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 200px;
}
.about-page .directors-section .directors-row .director-card .director-info {
  margin-top: 14px;
}
.about-page .directors-section .directors-row .director-card .director-info .director-name {
  font-weight: 600;
  font-size: 1.1em;
  color: #0077b6;
  margin-bottom: 4px;
  text-align: center;
}
.about-page .directors-section .directors-row .director-card .director-info .director-role {
  font-size: 0.97em;
  color: #1e1c16;
  text-align: center;
}
.about-page .directors-section .directors-row .director-card img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #0077b6;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
.about-page .certificate-section {
  text-align: center;
  margin-bottom: 40px;
}
.about-page .certificate-section .certificate-label {
  font-size: 1.1em;
  color: #0077b6;
  font-weight: 600;
  margin-bottom: 12px;
}
.about-page .certificate-section .certificate-thumb {
  width: 140px;
  height: auto;
  cursor: pointer;
  border: 2px solid #0077b6;
  border-radius: 12px;
  transition: box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
}
.about-page .certificate-section .certificate-thumb:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.13);
  transform: scale(1.04);
}
.about-page .modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.7);
}
.about-page .modal .modal-content {
  margin: auto;
  display: block;
  max-width: 80vw;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 0 20px #000;
  object-fit: contain;
}
.about-page .modal .close {
  position: absolute;
  top: 30px;
  right: 50px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10001;
  transition: color 0.2s;
}
.about-page .modal .close:hover {
  color: #0077b6;
}

@media screen and (max-width: 900px) {
  .about-page .about-hero {
    flex-direction: column;
    gap: 24px;
  }
  .about-page .about-hero .about-hero-img img {
    width: 100%;
  }
  .about-page .about-hero .about-hero-text .section-heading {
    text-align: center;
  }
  .about-page .feature-cards-row {
    flex-direction: column;
    gap: 18px;
  }
  .about-page .directors-section .directors-row {
    flex-direction: column;
    gap: 18px;
  }
}
@media screen and (max-width: 600px) {
  .about-page .container {
    padding: 0 8px;
  }
  .about-page .about-hero-text .section-heading {
    font-size: 1.5em;
  }
  .about-page .feature-cards-row .feature-card {
    padding: 18px 10px;
  }
  .about-page .directors-section .directors-title {
    font-size: 1.1em;
  }
  .about-page .certificate-section .certificate-thumb {
    width: 90px;
  }
  .about-page .modal .modal-content {
    max-width: 95vw;
    max-height: 70vh;
  }
}
.blog-page .blog-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}
.blog-page .blog-row .card-item {
  flex: 0 1 calc(33.3333333333% - 20px);
  /* width of each item */
  box-sizing: border-box;
  padding: 20px;
  border-radius: 10px;
  border: 2px solid #00a5df;
}
.blog-page .blog-row .card-item .img {
  height: 250px;
}
.blog-page .blog-row .card-item .img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.blog-page .blog-row .card-item .content {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog-page .blog-row .card-item .card-title {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 2;
  font-size: 18px;
  color: #0077b6;
  margin: 5px 0px;
}
.blog-page .blog-row .card-item .des {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 18px;
  color: #1e1c16;
  margin-bottom: 10px;
}
.blog-page .blog-row .card-item .read-more {
  color: #0077b6;
}

@media screen and (min-width: 769px) and (max-width: 1200px) {
  .blog-page .blog-row {
    gap: 30px;
  }
  .blog-page .blog-row .card-item {
    flex: 0 2 calc(50.333333% - 19px);
  }
}
@media screen and (max-width: 768px) {
  .blog-page .blog-row {
    gap: 20px;
  }
  .blog-page .blog-row .card-item {
    flex: 0 1 calc(50% - 20px);
  }
}
@media screen and (max-width: 576px) {
  .blog-page .blog-row {
    gap: 20px;
  }
  .blog-page .blog-row .card-item {
    flex: 0 1 100%;
  }
}
.product-page {
  padding: 20px 0;
}
.product-page .row-product {
  display: flex;
  gap: 30px !important;
}
.product-page .row-product .filter {
  width: 250px;
  flex-shrink: 0;
  background-color: white;
}
.product-page .row-product .filter form {
  padding: 20px;
  border-radius: 15px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.product-page .row-product .filter form .des {
  text-align: center;
  font-weight: 700;
  color: black;
  margin-bottom: 20px;
  font-size: 1.2em;
}
.product-page .row-product .filter form .form-group {
  margin-top: 15px;
}
.product-page .row-product .filter form .form-group .form-check {
  cursor: pointer;
  text-align: center;
  padding: 8px 15px;
  margin: 8px 0px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.product-page .row-product .filter form .form-group .form-check:hover {
  background-color: #00b8f9;
  color: #0077b6;
  border-radius: 20px;
  border-color: #0077b6;
}
.product-page .row-product .filter form .form-group .form-check.active {
  background-color: #fff;
  color: #0077b6;
  border-radius: 20px;
  border-color: #0077b6;
}
.product-page .row-product .filter form .form-group .form-check .form-check-label {
  display: block;
  padding: 0;
  border-radius: 0;
  text-align: center;
  font-weight: 500;
  color: #373737;
}
.product-page .row-product .main-sec {
  width: 100%;
}
.product-page .row-product .main-sec .category-info {
  text-align: left;
  margin-bottom: 30px;
}
.product-page .row-product .main-sec .category-info #category-description {
  margin: 10px 0;
}
.product-page .row-product .main-sec .category-info #category-image {
  width: 100%;
  display: block;
  margin: 10px auto 10px auto;
}
.product-page .row-product .main-sec .product-collection-row {
  flex-grow: 1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  width: 100%;
}
.product-page .row-product .main-sec .product-collection-row .item {
  display: block;
  width: 100%;
}
.product-page .products-item {
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.product-page .products-item:hover {
  transform: translateY(-5px);
}
.product-page .products-item img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  border-radius: 15px 15px 0 0;
}
.product-page .products-item .sub-des {
  margin: 15px 10px 10px;
  text-align: center;
  font-size: 1.1em;
  font-weight: 600;
  color: rgb(0, 0, 0);
}
.product-page .products-item .btn-primary {
  width: calc(100% - 20px);
  margin: 0 10px 15px;
  border-radius: 25px;
  text-align: center;
  font-size: 1em;
  padding: 10px 0;
}
.product-page .products-item .btn-primary i {
  margin-right: 10px;
}

@media screen and (max-width: 992px) {
  .product-page .row-product {
    flex-direction: column;
    gap: 20px;
  }
  .product-page .row-product .filter {
    width: 100%;
  }
  .product-page .row-product .filter form {
    padding: 10px 5px;
  }
  .product-page .row-product .filter form .form-group {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 8px;
    justify-content: flex-start;
    max-height: 150px;
    overflow-y: scroll;
  }
  .product-page .row-product .filter form .form-group .form-check {
    min-width: 100px;
    font-size: 0.98em;
    padding: 7px 10px;
    margin: 0 2px;
    border-radius: 16px;
  }
}
@media screen and (max-width: 576px) {
  .product-page .row-product .filter form {
    padding: 6px 2px;
  }
  .product-page .row-product .filter form .form-group {
    gap: 6px;
  }
  .product-page .row-product .filter form .form-group .form-check {
    min-width: 90px;
    font-size: 0.95em;
    padding: 6px 8px;
    border-radius: 14px;
  }
}
.blogspost-page {
  padding-top: 0px;
}
.blogspost-page .blog-image {
  position: relative;
  /* To position the overlay absolutely within this container */
  width: 100%;
  height: 50vh;
}
.blogspost-page .blog-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.blogspost-page .blog-image .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.678);
  /* Adjust opacity as needed */
}
.blogspost-page .content {
  margin-top: 30px;
}
.blogspost-page .content .main-content p,
.blogspost-page .content .main-content strong,
.blogspost-page .content .main-content li {
  color: black;
  font-size: 16px;
  line-height: 1.7;
}
.blogspost-page .content .main-content a {
    color: #0077b6;
}
.blogspost-page .content .main-content strong {
  color: rgb(85, 70, 70);
}
.blogspost-page .content .main-content h1,
.blogspost-page .content .main-content h2,
.blogspost-page .content .main-content h3,
.blogspost-page .content .main-content h4,
.blogspost-page .content .main-content h5,
.blogspost-page .content .main-content h6 {
  color: #0077b6;
}

.page-search .search-collection {
  margin-top: 30px;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.page-search .search-collection .item {
  width: calc(25% - 30px);
}
.page-search .search-collection .item img {
  width: 100%;
  height: 250px;
  border-radius: 30px;
  object-fit: cover;
}
.page-search .search-collection .item p {
  text-align: center;
  margin: 5px 0px;
}
.page-search .search-collection .item a {
  width: 100%;
  text-align: center;
}
.page-search .search-collection .item a i {
  margin-right: 10px;
}

@media screen and (max-width: 992px) {
  .page-search .search-collection .item {
    width: calc(33.3333333333% - 30px);
  }
}
@media screen and (max-width: 768px) {
  .page-search .search-collection .item {
    width: calc(50% - 30px);
  }
}
@media screen and (max-width: 576px) {
  .page-search .search-collection .item {
    width: 100%;
  }
}
.admin-index-page {
  position: relative;
  height: 100vh;
  width: 100vw;
  background-color: #0077b6;
}
.admin-index-page .admin-login-box {
  width: 40%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 8px rgba(153, 195, 206, 0.692);
  /* Adjust shadow as needed */
  z-index: 1;
  padding: 40px;
  border-radius: 20px;
  background-color: #fff;
}
.admin-index-page .admin-login-box .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  position: relative;
}
.admin-index-page .admin-login-box .content h2 {
  color: #0077b6;
}
.admin-index-page .admin-login-box .content img {
  width: 20%;
}
.admin-index-page .admin-login-box form {
  padding: 30px;
}
.admin-index-page .admin-login-box form input {
  width: 100%;
  padding: 10px 20px;
  border-radius: 40px;
  margin: 7px 0px;
  font-size: 18px;
  border: 2px solid #0077b6;
  outline: 2px solid #fff;
}
.admin-index-page .admin-login-box form input::placeholder {
  color: #999;
  /* Change color */
  font-style: italic;
  /* Change font style */
  opacity: 1;
  font-size: 18px;
}
.admin-index-page .admin-login-box form .btn-primary {
  width: 40%;
  float: right;
  outline: none;
}

.backend-page {
  display: flex;
  justify-content: space-between;
}
.backend-page .backend-nav {
  width: 20%;
}
.backend-page .page {
  width: 80%;
  height: calc(100vh - 40px);
  margin: 20px;
  box-shadow: 0 0 15px rgba(1, 3, 26, 0.247);
  /* Adding box shadow */
  overflow-y: auto;
  /* Enable overflow only on the Y-axis if necessary */
  overflow-x: hidden;
  border-radius: 30px;
  padding: 30px;
}
.backend-page .page .section-heading {
  color: #0077b6;
  font-family: "Roboto", sans-serif;
  border-bottom: 2px solid #E3E3E3;
  padding-bottom: 10px;
  text-align: center;
  margin-bottom: 40px;
}

.backend-nav {
  padding: 10px 30px;
  height: 100vh;
  background-color: #E3E3E3;
}
.backend-nav .sidenav-header {
  width: 100px;
}
.backend-nav .sidenav-header img {
  width: 100%;
}
.backend-nav .sidenav-body {
  margin-top: 40px;
  height: 70vh;
  overflow-y: scroll;
  /* Scroll only on Y-axis */
  overflow-x: hidden;
  /* Prevent scrolling on X-axis */
  /* Custom scrollbar styles for Webkit browsers */
  /* Hide the top and bottom arrows */
}
.backend-nav .sidenav-body::-webkit-scrollbar {
  width: 2px;
  /* Make the scrollbar extremely thin */
}
.backend-nav .sidenav-body::-webkit-scrollbar-track {
  background: transparent;
  /* Transparent background for the scrollbar track */
}
.backend-nav .sidenav-body::-webkit-scrollbar-thumb {
  background: rgba(0, 100, 0, 0.3);
  /* Semi-transparent darkgreen color for the scrollbar thumb */
  border-radius: 4px;
  /* Rounded corners for the scrollbar thumb */
}
.backend-nav .sidenav-body::-webkit-scrollbar-button {
  display: none;
}
.backend-nav .sidenav-body .navbar-nav .nav-item {
  margin-bottom: 15px;
}
.backend-nav .sidenav-body .navbar-nav .nav-item .nav-link {
  font-size: 16px;
  color: #1e1c16;
  font-weight: 500;
  transition: 0.3;
}
.backend-nav .sidenav-body .navbar-nav .nav-item .nav-link:hover {
  color: #0077b6;
}
.backend-nav .sidenav-body .navbar-nav .nav-item .nav-link.active {
  color: #0077b6;
}

.dashboard-row {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.dashboard-row .dashboard-item {
  flex: 1 1 calc(33.3333% - 26.6667px);
  background-color: #E3E3E3;
  padding: 30px 20px;
  border-radius: 20px;
  text-align: center;
  cursor: pointer;
}
.dashboard-row .dashboard-item i {
  color: #0077b6;
  font-size: 42px;
}
.dashboard-row .dashboard-item .section-heading {
  margin: 15px 0px;
  padding: 0px;
  color: #1e1c16;
}
.dashboard-row .dashboard-item .section-title {
  margin: 0px;
  font-family: cursive;
  color: #0077b6;
}

.inquiries_content table {
  table-layout: fixed;
  overflow-wrap: break-word;
}

.country_admin .country_add {
  margin-top: 60px;
}
.country_admin .country_add form .form-group {
  margin: 10px 0px;
}

.add-admin-form form .form-row .form-group {
  margin: 20px 0px;
}

/*# sourceMappingURL=style.css.map */
