/********** Template CSS **********/
:root {
  --primary: #3083dc;
  --secondary: #999999;
  --light: #f2f8fe;
  --dark: #111111;
}

@font-face {
  font-family: "Mukta";
  src: url("fonts/Mukta-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Mukta";
  src: url("fonts/Mukta-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Mukta";
  src: url("fonts/Mukta-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Mukta";
  src: url("fonts/Mukta-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Mukta";
  src: url("fonts/Mukta-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: "Open Sans";
  src: url("fonts/OpenSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Open Sans";
  src: url("fonts/OpenSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Open Sans";
  src: url("fonts/OpenSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Open Sans";
  src: url("fonts/OpenSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 60px;
  z-index: 99;
}

h4,
h5,
h6,
.h4,
.h5,
.h6 {
  font-weight: 500 !important;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  font-weight: 500;
  transition: 0.5s;
}

.btn.btn-primary {
  color: #ffffff;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

/*** Navbar ***/
.navbar.sticky-top {
  top: -100px;
  transition: 0.5s;
}

.navbar .navbar-brand {
  height: 75px;
}

.navbar .navbar-nav .nav-link {
  /* margin-right: 30px;
    padding: 25px 0;
    color: var(--dark); */
  font-weight: 500;
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--primary);
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }

  .navbar .navbar-nav {
    border-top: 1px solid #eeeeee;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

.navbar .btn:hover {
  color: #ffffff !important;
  background: var(--primary) !important;
}

/*** Header ***/
.hero-header .breadcrumb-item + .breadcrumb-item::before {
  color: var(--secondary);
}

/*** Service ***/
.service-item {
  position: relative;
  overflow: hidden;
  background: #f2f2f2 !important;
  text-align: center;
}

.service-item::after {
  /* position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: -80px;
    right: -80px;
    border: 80px solid;
    transform: rotate(45deg);
    opacity: 1;
    transition: .5s; */
}

.service-item.bg-white::after {
  border-color: transparent transparent var(--light) transparent;
}

.service-item.bg-light::after {
  border-color: transparent transparent #ffffff transparent;
}

.service-item:hover::after {
  opacity: 0;
}

/*** Roadmap ***/
.roadmap-carousel {
  position: relative;
}

.roadmap-carousel::before {
  position: absolute;
  content: "";
  height: 0;
  width: 100%;
  top: 20px;
  left: 0;
  border-top: 2px dashed var(--secondary);
}

.roadmap-carousel .roadmap-item .roadmap-point {
  position: absolute;
  width: 30px;
  height: 30px;
  top: 6px;
  left: 50%;
  margin-left: -15px;
  background: #ffffff;
  border: 2px solid var(--primary);
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.roadmap-carousel .roadmap-item .roadmap-point span {
  display: block;
  width: 18px;
  height: 18px;
  background: var(--primary);
}

.roadmap-carousel .roadmap-item {
  position: relative;
  padding-top: 150px;
  text-align: center;
}

.roadmap-carousel .roadmap-item::before {
  position: absolute;
  content: "";
  width: 0;
  height: 115px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-right: 2px dashed var(--secondary);
}

.roadmap-carousel .roadmap-item::after {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  top: 111px;
  left: 50%;
  margin-left: -7px;
  transform: rotate(45deg);
  background: var(--primary);
}

.roadmap-carousel .owl-nav {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.roadmap-carousel .owl-nav .owl-prev,
.roadmap-carousel .owl-nav .owl-next {
  margin: 0 12px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  font-size: 22px;
  color: var(--light);
  background: var(--primary);
  transition: 0.5s;
}

.roadmap-carousel .owl-nav .owl-prev:hover,
.roadmap-carousel .owl-nav .owl-next:hover {
  color: var(--primary);
  background: var(--dark);
}

/*** FAQs ***/
.accordion .accordion-item {
  border: none;
  margin-bottom: 15px;
}

.accordion .accordion-button {
  background: var(--light);
  border-radius: 2px;
}

.accordion .accordion-button:not(.collapsed) {
  color: #ffffff;
  background: var(--primary);
  box-shadow: none;
}

.accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion .accordion-body {
  padding: 15px 0 0 0;
}

/*** Footer ***/
.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: var(--secondary);
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--secondary);
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: var(--primary);
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .btn.btn-square {
  color: var(--primary);
  border: 1px solid var(--primary);
}

.footer .btn.btn-square:hover {
  color: #ffffff;
  background: var(--primary);
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
}

.footer .copyright a {
  color: var(--primary);
}

.footer .copyright a:hover {
  color: var(--dark);
}

.header01 {
  width: 68%;
}

.navbar .navbar-nav .nav-link {
  color: #fff !important;
}

body {
  font-family: "Mukta", sans-serif; /* Default font for the whole site */
  color: #000;
}

.header-title,
h1,
h2 {
  font-family: "Open Sans", sans-serif; /* Use Open Sans for headings */
  
  text-align: center;
    font-family: "Open Sans", sans-serif;
    margin-top: 10px;
    margin-bottom: 13px;
    
}
.header-title,
h1{
	font-size: 30px;
}




.footer-text {
  font-family: "Open Sans", sans-serif; /* Open Sans in footer */
}

.contText {
  color: #3083dc;
  font-size: 1.4rem !important;
}

.mammicpm {
  height: 146px !important;
}
.mammicpmText {
  text-align: center;
}

.carousel-wrapper {
  width: 100%;
  max-width: 400px;
  margin: auto;
  border: 1px solid #ccc;
  padding: 10px;
}

.carousel-header {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.vertical-carousel {
  height: 400px;
  /* 4 posts * 100px */
  overflow: hidden;
  position: relative;
}

.carousel-items {
  display: flex;
  flex-direction: column;
  transition: transform 0.5s ease-in-out;
}

.carousel-items div {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #ddd;
  background: #f7f7f7;
}

.carousel-controls {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.carousel-controls button {
  padding: 6px 12px;
  background: #007bff;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

.carousel-controls button:disabled {
  background: #aaa;
  cursor: not-allowed;
}

.slickmm .slick-slide {
  margin: 0 10px;
  /* Adjust 10px as needed */
}

.slickmm {
  margin: 0 -10px;
  /* Must match the value used above */
}

.slick-prev,
.slick-next {
  background: #000;
  color: #fff;
  border: none;
  padding: 10px;
  z-index: 1;
}

.banner-content .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  /* semi-transparent black */
  z-index: 0;
}

.banner-content > * {
  position: relative;
  z-index: 1;
}


.trending-now {
   /*  max-height: 250px; Adjust height as needed */
    overflow: hidden;
}

.trending-list .slick-slide {
    display: flex !important;
    align-items: center;
}


/*.trending-now {
  max-height: 300px;
  overflow-y: auto;
  position: relative;
  max-height: 500px;
}

.trending-list li {
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}
*/

.arrow-button {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  padding: 4px 6px;
}

.arrow-button:hover {
  color: #007bff;
}

.slickmm div {
  float: left;
}

.menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  align-items: center;
  background-color: #112c3f;
}

.menu li {
  position: relative;
}

.menu li a {
display: block;
    padding: 1px 9px;
    text-decoration: none;
    color: white;
    font-size: 20px;
}

.menu li a:hover {
  background-color: #3083DC;
}

.sub-menu {
  display: none;
  position: absolute;
  background-color: #34495e;
  top: 100%;
  left: 0;
  min-width: 220px;
  z-index: 999;
}

.menu li:hover > .sub-menu {
  display: block;
}
.mmimGWWW{
	max-width: 100%;
}

.menu-item-has-children > a::after {
  content: " ▼";
  font-size: 12px;
  margin-left: 5px;
  color: #fff;
}

@media (max-width: 768px) {
	
	
	.mmlogo {margin-top: -41px;
    margin-left: 117px;}
	.navbar-toggler{margin-left: -28px;}
	.mmdv{width: 109px;margin-left: 114px;}
  .menu {
	    top: 100%; /* below toggle button */
		  background: #112C3F; /* Add your menu background */
	     position: absolute;
    flex-direction: column;
    display: none;
    width: 100%;
	margin-left: -34px;
  }

  .menu.active {
    display: flex;
  }

  .menu li {
    width: 100%;
  }

  .menu-toggle {
    display: block;
  }

  .menu li .sub-menu {
    position: relative;
    top: 0;
    left: 0;
  }

  .menu li.show-submenu > .sub-menu {
    display: block;
  }

  .menu li.menu-item-has-children > a::after {
    content: " ▼";
    float: right;
  }
}





.reltedtop {
  background: #f2f8fe !important;
  margin-top: -24px;
}
.trending-now  #nextBtn{
color: #3083DC;
    border: 1px solid #3083DC;
    border-radius: 7px;
    height: 26px;	
}

.trending-now  #prevBtn{
color: #3083DC;
    border: 1px solid #3083DC;
    border-radius: 7px;
    height: 26px;	
}
.trendingnowHeading{
	border-bottom: 3px solid #3083DC;
}
.category-post-list {
    overflow: hidden;
    margin: 20px 0;
}

.post-box {
    float: left;
    width: 259px;
    margin: 27px;
    border: 1px solid #ddd;
    padding: 10px;
    box-sizing: border-box;
    background-color: #fafafa;
    text-align: center;
    height: 375px;
}

.post-box img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 10px;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
}

/* Left Arrow - shaped like < */
.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpolyline points='10 2 4 8 10 14' fill='none' stroke='%23417FC2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* Right Arrow - shaped like > */
.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpolyline points='6 2 12 8 6 14' fill='none' stroke='%23417FC2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}


.carousel-indicators {
    justify-content: center;
    margin-top: 1rem;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    background-color: #417FC2;
    opacity: 0.5;
    margin: 0 6px;
    border-radius: 50%;
    transition: opacity 0.3s;
}

.carousel-indicators .active {
    opacity: 1;
}
.btn-explore {
    background-color: #3083DC;
    color: #fff;
    padding: 14px 32px;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    text-transform: uppercase;
    font-weight: 600;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-explore:hover {
    background-color: #2469b5; /* slightly darker */
    transform: translateY(-2px);
    text-decoration: none;
}
.jindalsir{ 
max-width: 66% !important;
}
.abourjindalsir{
text-align: left!important;
    border-bottom: 5px solid #ccc!important;
	padding-bottom: 10px;
}
.abourjindalsirname
{    font-size: 40px;
    font-weight: bold; }
.abourjindalsirname1
{	
	font-size: 24px;
}

.abutContent{ font-size: 18px;}

.post-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.post-box:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.post-box img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.post-box:hover img {
    transform: scale(1.05);
}

.post-box p {
    padding: 10px;
    margin: 0;
    background: #fff;
    font-weight: bold;
    text-align: center;
}

.service-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
    border: 1px solid #eee;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}

.service-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.service-item img {
    transition: transform 0.3s ease;
}

.service-item:hover img {
    transform: scale(1.05);
}
.slideContentH1 {position: absolute;
    top: -536px;
    width: 390px !important;
    font-size: 27px !important;
    text-align: left; } 
#contentCarousel { border:2px solid #88B1E7;}
.crosaltxt{font-size: 18px;
    max-width: 600px;
    color: #967e7e;
    width: 223px;
    top: -407px;
    position: absolute;}
.mmtrend{ border: 2px solid #ccc;
    height: 639px;
 }
 .bbtt{ padding: 30px;}

.page-content {
  line-height: 1.8;
  font-size: 1.1rem;
}

.trending-item {
  /*  height: 200px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.trending-thumb {
    width: 100%;
  /*  height: 140px; */
    overflow: hidden;
    border-radius: 5px;
}

.trending-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.trending-item:hover .trending-thumb img {
    transform: scale(1.05);
}

.trending-title {
    font-size: 1rem;
    margin-top: 0.5rem;
    color: #333;
}
.mainlekh{border :3px solid #CCCCCC;height: 334px;}
.homeslidebtn{position: absolute;
    top: -227px;}
	
@media (max-width: 1024px) {
	
	.img-fluid {
    max-width: 74%!important;
	
	}

}	
	

@media (max-width: 853px) {
	.mmlogo{ max-width: 63%!important;  }
	.slideContentH1 {
    position: absolute;
    top: -402px;
    width: 389px !important;
    font-size: 19px !important;
    text-align: left;
}
.crosaltxt {
    font-size: 15px;
    max-width: 600px;
    color: #967e7e;
    width: 223px;
    top: -337px;
    position: absolute;
}

.homeslidebtn {
    position: absolute;
    top: -127px;
    padding: 8px !important;
}
	
}

@media (max-width: 768px) {
  .menu-item-has-children > a::after {
    content: " ▼";
    float: right;
  }

  .menu-item-has-children.show-submenu > a::after {
    content: " ▲";
  }
}

@media (max-width: 540px) {
		.slideContentH1{
       position: absolute;
        top: -225px;
        width: 320px !important;
        font-size: 10px !important;
    
    }
	.crosaltxt{
        font-size: 9px !important;
        max-width: 169px;
        color: #967e7e;
        width: 223px;
      top: -167px;
        position: absolute;
    }
	
	       .homeslidebtn {
        position: absolute;
        top: -60px;
        padding: 6px !important;
        font-size: 9px !important;
    }
	
	
	.carousel-control-prev-icon, .carousel-control-next-icon {
    width: 2rem !important;
    height: 2rem !important;
	
	}
}


@media (max-width: 460px) {
	
	.slideContentH1{
        position: absolute;
        top: -167px;
        width: 320px !important;
        font-size: 7px !important;
    
    }
	.crosaltxt{
        font-size: 9px !important;
        max-width: 169px;
        color: #967e7e;
        width: 223px;
        top: -137px;
        position: absolute;
    }
	
	    .homeslidebtn{
        position: absolute;
        top: -60px;
        padding: 3px !important;
        font-size: 12px !important;
    }
	
	.carousel-control-prev-icon, .carousel-control-next-icon {
    width: 2rem!important;
    height: 1rem!important;
	}

    .carousel-caption {
        background-color: transparent !important;
    }

    .mmdv {
      
		
		        width: 65px;
        margin-left: 84px;
    }
	
	    .mmlogo {
      margin-top: -43px;
        margin-left: 88px;
    }

  .carousel-caption {
    bottom: 20px;
    background-color: rgba(0, 0, 0, 0.5); /* optional: dark background */
    padding: 10px;
    border-radius: 8px;
  }

  .carousel-caption h1 {
    font-size: 18px;
  }

  .carousel-caption p {
    font-size: 14px;
  }

  .homeslidebtn {
    padding: 8px 16px;
    font-size: 14px;
  }
}



@media (max-width: 375px) {
	.mmdv {
              width: 55px;
        margin-left: 95px;
    }

	
}
@media (min-width: 853px) {
	.navbar-dark .navbar-toggler{
		display:none;
		
	}
	
}

/* Card Header */
.sidebar .card-header {
  font-weight: bold;
  font-size: 1.1rem;
  background-color: #0056b3 !important; /* Darker blue */
  color: #fff !important;
  padding: 0.75rem 1rem;
}

/* List group items */
.sidebar .list-group-item {
  border: none;
  border-bottom: 1px solid #e9ecef;
  padding: 0.6rem 1rem;
  transition: all 0.2s ease-in-out;
  background-color: #fff;
  color: #212529;
  font-size: 0.95rem;
}

/* Hover effect */
.sidebar .list-group-item:hover {
  background-color: #f1f5ff;
  color: #0d6efd;
}

/* Active category link */
.sidebar .list-group-item.active {
  background-color: #e7f1ff;
  font-weight: 600;
  border-left: 4px solid #0d6efd;
  border-radius: 0;
  color: #0d6efd;
}

/* Active anchor tag inside list */
.sidebar .list-group-item.active a {
  color: #0d6efd;
  text-decoration: none;
  font-weight: 600;
}

/* Link reset for all list items */
.sidebar .list-group-item a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.card-title a:hover {
  color: #0d6efd;
}

.card-text {
  font-size: 0.95rem;
  color: #555;
}

.sidebar .card {
  border-radius: 10px;
  overflow: hidden;
}

h5, .h5 {
    font-size: 1.6rem!important;
}
.download-btn {
    display: inline-block;
    background: #2c7be5;
    color: #fff;
    padding: 10px 16px;
    border-radius: 5px;
    text-decoration: none;
}
.download-btn:hover {
    background: #1a5db3;
}