
@font-face {
    font-family: 'Mangal';
    src: url('../fonts/MANGAL.woff2') format('woff2'),
         url('../fonts/MANGAL.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    /* font-size: 20px; */

}

:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Roboto", serif;
  --accordion-bg: #444444 !important;
  
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #0b2341; /* Color for headings, subheadings and title throughout the website */
  /* --accent-color: #ed502e; Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --accent-color: #e4aa24;
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --secondary-color: #368e5a;
  --footer-background: #2A143C;
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #444444;  /* The default color of the main navmenu links */
  --nav-hover-color: #ed502e; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ed502e; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
  --nav-background-color: #73439A;
}


/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f7f9fd;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  font-size: 1.2rem !important;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  background-color: #009970;
  background-color: var(--nav-background-color);
  padding: 5px 0 5px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 65px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 26px;
  text-transform: uppercase;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.logo {
  line-height: 1;
  padding: 10px 0;
}

.logo img {
  max-height: 85px;
  margin-right: 8px;
}

.logo h1 {
  font-size: 26px;
  text-transform: uppercase;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  color: var(--footer-background);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 15px !important;
  /* margin: 0 0 0 30px; */
  border-radius: 4px;
  transition: 0.3s;
  font-weight: bold;
}


.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    color:#fff8e4;
    padding: 10px 15px;
    font-size: 16px;
    /*font-family: var(--nav-font);*/
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    text-transform: uppercase;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
    color: var(--accent-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 5px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
    font-weight: 500;
    text-transform: uppercase;
    border-bottom: 1px dotted #fff0f0;
    border-bottom: 1px dotted rgb(188 193 193 / 51%);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
    color: var(--secondary-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

@media (max-width: 576px) {
  .header-small {
    display: none;
  }
}
  


/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    color: #fff;
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
    color: var(--accent-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 18px;
  position: relative;
  background-color: #282828;
  background-color: var(--footer-background);
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 16px;
  font-family: var(--heading-font);
  font-weight: 500;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 18px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
  color: #ed502e;
  color: var(--accent-color);
}

.footer p {
  text-align: justify;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .dislaimer {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: var(--background-color);
  transition: 0.3s;
  font-size: smaller;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: var(--background-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--background-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
/* #preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader div {
  width: 4px;
  height: 40px;
  background-color: var(--accent-color);
  margin: 0 4px;
}

#preloader div:nth-child(1) {
  animation: animate-preloader 1s ease-in-out -0.45s infinite;
}

#preloader div:nth-child(2) {
  animation: animate-preloader 1s ease-in-out -0.3s infinite;
}

#preloader div:nth-child(3) {
  animation: animate-preloader 1s ease-in-out -0.15s infinite;
}

#preloader div:nth-child(4) {
  animation: animate-preloader 1s infinite;
}

@keyframes animate-preloader {

  0%,
  100% {
    transform: scaleY(0.3);
  }

  50% {
    transform: scaleY(1);
  }
} */

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  color: var(--footer-background);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--secondary-color);
  position: relative;
  font-size: 30px;
  font-weight: 600;
  /* margin-bottom: 50px; */
  margin: 22px 0;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 40px 0;
  scroll-margin-top: 87px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 63px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title div {
  color: var(--heading-color);
  margin: 0;
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
}

.hero .carousel {
  width: 100%;
  min-height: 50vh;
  min-height: 500px; 
  padding: 0;
  margin: 0;
  /* background-color: var(--background-color); */
  background-image: url(../../assets/img/bg9.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/*
.hero .carousel-item:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .carousel-item::before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
}
*/
.hero .carousel-container {
  position: absolute;
  /* inset: 190px 64px 64px 64px; */
  top: 100px;
  left: 64px;
  right: 64px;
  display: flex;
  justify-content: end  ;
  align-items: center;
  flex-direction: column;
  z-index: 3;
  color: #060606;
}

.hero h2 {
  margin-bottom: 30px;
  font-size: 30px;
  font-weight: 700;
  animation: fadeInDown 1s both;
  color: #060606
}

@media (max-width: 768px) {

  .hero .carousel {
     min-height: 600px;
  }
  .hero h2 {
    font-size: 25px;
  }
  .header-name-big {
    display: none;
  }
  .hero h2,
  .hero p,
  .hero ul {
    max-width: 100% !important;
  }
  .hero p,
  .hero ul {
    font-size: 1.1rem;
    /* text-align: justify; */
  }
 
  .hero .carousel-container {
  	/* inset: 90px 10px 50px 10px; */
    top: 50px;
    left: 10px;
    right: 10px;
  }

  
}

.hero p,
.hero ul {
  animation: fadeInDown 1s both 0.2s;
  font-weight: 600;
}

@media (min-width: 1024px) {

  .hero h2,
  .hero p,
  .hero ul {
    max-width: 60%;
  }
  .hero p,
  .hero ul {
    font-size: 1.3rem;
    text-align: justify;
  }
}


.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 4px;
  transition: 0.5s;
  margin: 10px;
  animation: fadeInUp 1s both 0.4s;
}

.btn-get-started {
    text-align: center;
    background: #c81c1c;
    background: var(--nav-background-color);
    position: relative;
    border-radius: 25px 25px 25px 25px;
    color:#fff;
    padding: 5px 20px;
    margin-left: 15px;
    /* margin: 8% 0; */
}

.btn-get-started h5 {
  font-size: 16px;
    margin: 10px 0;
    color: #fff;
    text-transform: uppercase;
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 10%;
  transition: 0.3s;
  opacity: 0.5;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

@media (min-width: 1024px) {

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

.hero .carousel-indicators {
  list-style: none;
}

.hero .carousel-indicators li {
  cursor: pointer;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.carousel-indicators [data-bs-target] {
 background-color: #000 !important; 
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  padding-bottom: 5px;
  display: flex;
  align-items: center;
}

.about ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.about .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.about .read-more:hover i {
  transform: translate(5px, 0);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats i {
  background-color: var(--surface-color);
  color: var(--accent-color);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  width: 54px;
  height: 54px;
  font-size: 24px;
  border-radius: 50px;
  border: 2px solid var(--background-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.stats .stats-item {
  background-color: var(--surface-color);
  margin-top: -27px;
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  z-index: 0;
}

.stats .stats-item span {
  font-size: 36px;
  display: block;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features h3 {
  font-size: 20px;
  font-weight: 700;
}

.features p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features ul li {
  display: flex;
  align-items: center;
  font-size: 14px;
  padding-top: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.features ul li i {
  font-size: 16px;
  color: var(--accent-color);
  margin-right: 6px;
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
#accordion {  

    /* .accordion-title{
        position: relative;
        display: block;
        padding:8px 0 8px 50px;
        background: #213744;
        border-radius: 8px;
        overflow: hidden;
        text-decoration: none;
        color: #fff;
        font-size: 16px;
        font-weight: 700;
        width: 100%;
        text-align: left;
        transition: all .4s ease-in-out; 
        i{
            position: absolute;
            width: 40px;
            height: 100%;
            left: 0;
            top: 0;
            color: #fff;
            background: radial-gradient(rgba(#213744, .8), #213744);
            text-align: center;
            border-right: 1px solid transparent;
        }
        &:hover{
            padding-left: 60px;
            background: #213744;
            color: #fff;
            
            i {
                border-right: 1px solid #fff;
            }
        }
    } */
    [aria-expanded="true"]{
        background: var(--accent-color);
        color: var(--nav-background-color);

    }
    /* .accordion-body{
        padding: 40px 55px;
    } */
}

.accordion-button {
  color: var(--accent-color);
  background: var(--nav-background-color);
  margin: 20px 0;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
}

.accordion-item {
  border : none;
}

.accordion-button:not(.collapsed) {
    color: var(--accent-color);
    background-color: var(--nav-background-color);
    box-shadow: none;
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 24px 0 30px 0;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.contact .info-item h3 {
  font-size: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 30px;
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}



/*--------------------------------------------------------------
# Highlight Section
--------------------------------------------------------------*/
.highlights .highlight-item {
  position: relative;
  padding-top: 40px;
}

.highlights .highlight-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
}

.highlights .highlight-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
  height: 2px;
  background: var(--nav-background-color);
  border-right: 5px solid var(--background-color);
}

.highlights .highlight-item .icon {
  width: 48px;
  height: 48px;
  position: relative;
  margin-right: 50px;
  line-height: 0;
}

.highlights .highlight-item .icon i {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  color: color-mix(in srgb, var(--nav-background-color), transparent 30%);
  font-size: 56px;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
}

/*
.highlights .highlight-item .icon:before {
  position: absolute;
  content: "";
  height: 70px;
  width: 70px;
  background: color-mix(in srgb, var(--nav-background-color), transparent 80%);
  border-radius: 50px;
  z-index: 1;
  bottom: -15px;
  right: -15px;
  transition: 0.3s;
}
*/
.highlights .highlight-item .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 22px;
}

.highlights .highlight-item .title a {
  color: var(--heading-color);
}

.highlights .highlight-item .title a:hover {
  color: var(--nav-background-color);
}

.highlights .highlight-item .description {
  line-height: 24px;
  font-size: 16px;
}

.highlight-end {
  margin-top :40px;
  margin-bottom : -20px;
  width:100%; 
  height: 2px;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
}

/*--------------------------------------------------------------
# Important Dates Section
--------------------------------------------------------------*/
.imp-dates {
  background-image: url(../../assets/img/bg-w.png);
}
.imp-dates .imp-dates-item {
  background-color: var(--nav-background-color);
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  border-top: 4px solid var(--background-color);
  /* padding: 20px 40px; */
  height: 100%;
  border-radius: 5px;
}

.imp-dates h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.imp-dates h4 {
  color: var(--nav-background-color);
  color: var(--footer-background);
  font-size: 26px;
  font-weight: 600;
  /* font-family: var(--heading-font); */
  margin-bottom: 0;
  background: var(--accent-color);;
  padding: 15px 40px;
}

.imp-dates h4 sup {
  font-size: 28px;
}

.imp-dates h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 18px;
}

.imp-dates ul {
  padding: 20px 40px;
  /* padding: 20px 0; */
  list-style: none;
  color: color-mix(in srgb, #fff, transparent 10%);
  text-align: left;
  line-height: 20px;
}

.imp-dates ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  border-bottom: 1px dotted #aaa;
}

.imp-dates ul i {
  color: var(--accent-color);
  font-size: 24px;
  padding-right: 3px;
}

.imp-dates ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.imp-dates ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.imp-dates ul .na span {
  text-decoration: line-through;
}

.imp-dates .more-btn {
  color: var(--accent-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
  border: 1px solid var(--accent-color);
  margin: 20px 40px;
}

.imp-dates .more-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.imp-dates .featured {
  border-top-color: var(--accent-color);

}

.imp-dates .featured .more-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  color: var(--footer-background);
  font-weight:600;
}


@media (max-width: 992px) {
  .imp-dates .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
  .imp-dates img {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .imp-dates .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
  .imp-dates .imp-dates-item {
     /*padding: 20px 5px; */
  }
  .imp-dates ul { 
	padding: 20px 10px;
  }
}

@media (max-width: 420px) {
  .imp-dates .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

.header-top {
      padding: 10px 30px;
      /* background-color: #f8f9fa; */
    }
    .header-logo {
      height: 120px;
      max-width: 100%;
    }
    .header-logo-gate {
      height: 150px;
      max-width: 100%;
    }
    .header-text {
      /* white-space: nowrap; */
      overflow: hidden;
      text-overflow: ellipsis;
      font-weight: 600;
      line-height: 125%;
      font-family: var(--nav-font);
      padding-bottom: 0.2rem;
      color: var(--nav-background-color);

    }
    .header-text-org {
      font-size: 1.5rem;
      color: var(--secondary-color);
      margin-top: .5rem;
      font-weight: 600;
    }

    .header-text-hindi {
      overflow: hidden;
      text-overflow: ellipsis;
      line-height: 125%;
      /* font-family: var(--header-hindi-font); */
      font-family: 'Mangal', sans-serif;
      font-size: 2rem !important;
      font-weight: 600 !important;
      padding-bottom: 0.2rem;
      color: var(--nav-background-color);
    }

    @media (max-width: 768px) {
      .header-text {
        font-size: 0.9rem;
        font-weight: 500 !important;
      }
      .header-text-hindi{
        font-size: 0.9rem !important;
        font-weight: 500 !important;
      }
      .header-logo {
      height: 70px;
      max-width: 100%;
      }
      .header-logo-gate {
        height: 90px;
        max-width: 100%;
      }
      .header-text-org {
      font-size: 0.7rem;
      
    }
     .header-top {
      padding: 20px 5px;
      /* background-color: #f8f9fa; */
    }
    }
    @media (min-width: 769px) {
      .header-text {
        font-size: 2rem;
      }
      .header-text-hindi {
        padding-top:5px;
      }
    }


.social-icons {
  margin:0;
  padding:0;
  width:auto
}
.social-icons li {
  display:inline-block;
  margin: 0 -8px 0 0;
  padding:0;
  border-radius:100%;
  overflow:visible
}
.social-icons li a {
  transition:all .2s ease;
  border-radius:100%;
  display:block;
  height:48px;
  line-height:48px;
  width:48px;
  text-align:center;
  color:#fff !important;
  text-decoration:none;
  font-size:12.8px;
  font-size:1rem
}

.social-icons li:hover.social-icons-twitter a {
  background:#1aa9e1!important;
  background:#000000!important;
}
.social-icons li:hover.social-icons-facebook a {
  background:#3b5a9a!important
}
.social-icons li:hover.social-icons-linkedin a {
  background:#0073b2!important
}
.social-icons li:hover.social-icons-rss a {
  background:#ff8201!important
}
.social-icons li:hover.social-icons-instagram a {
  background:#7c4a3a!important;
  background:#833AB4!important
}
.social-icons.social-icons-dark li a {
  background:#181818
}
.social-icons.social-icons-dark li a i {
  color:var(--light)
}
.social-icons.social-icons-dark-2 li a {
  background:#272a2e
}
.social-icons.social-icons-dark-2 li a i {
  color:var(--light)
}
.social-icons.social-icons-transparent li {
  box-shadow:none
}
.social-icons.social-icons-transparent li a {
  background:0 0
}
.social-icons.social-icons-icon-gray li a {
  color:var(--default)!important
}
.social-icons.social-icons-icon-gray li:hover a {
  color:var(--light)!important
}
.social-icons.social-icons-icon-light li a i {
  color:var(--light)
}
.social-icons.social-icons-icon-light.social-icons-clean li a i {
  color:var(--light)!important
}
.social-icons.social-icons-medium li a,
.social-icons.social-icons-md li a {
  height:35px;
  line-height:40px;
  width:35px;
  font-size:1rem
}
.header-social-icons {
  position: absolute;
  right:5px;
}
.social-icons.social-icons-big li a,
.social-icons.social-icons-lg li a {
  height:48px;
  line-height:50px;
  width:48px
}
@media(max-width:400px) {
  .social-icons.social-icons-big li a,
  .social-icons.social-icons-lg li a {
    height:38px;
    line-height:40px;
    width:38px
  }
}

.social-icons.social-icons-clean-with-border li a {
  background:0 0;
  color:#fff!important;
  /* border:1px solid rgba(255,255,255,.1) */
}
.social-icons.social-icons-clean-with-border.social-icons-clean-with-border-border-grey li a {
  border:1px solid #e7e7e7
}

/* .about__v4 .mission-statement {
  background-color: var(--nav-background-color);
  position: relative;
  bottom: -20px;
  width: 100%;
  color: #fff;
}

.mission-statement h3 {
  color: #fff;
} */

.ticker { 
    /* display: flex; */
    /* margin: 10px auto; */
    background: antiquewhite;
    background: #efdcff;
}

.news {
        /* padding: 0 2%; */
    border-radius: 0 10px 10px 0;
    /* border: 1px solid #c81c1c; */
    /* color: var(--nav-background-color); */
    width: 100%;
    font-weight: 500;
    /* background: antiquewhite; */
    color: #242424;
  font-weight: 600;
}

.title {
    /* text-align: center; */
    /* background: #c81c1c; */
    /* position: relative; */
    /* border-radius: 10px 0 0 10px; */
    /* color:#fff; */
    /* padding: 5px 20px; */
    /* font-size: 18px; */
    /* margin: 8% 0; */
    /* color: #fff; */
    text-transform: uppercase;
    font-weight: 600;
    /* width: 80%; */
    /* color: #c81c1c; */
    color: #fff;

}

.title a {
  color: #fff;
}

.title a:hover {
  color: var(--accent-color);
  margin-left: 20px;
}

.title span {
  /* border: 1px solid #c81c1c;
 *   padding: 5px 15px;
 *     border-radius: 10px;
 *       background: #c81c1c;
 *         border: 1px solid #c81c1c; */
  padding: 7px 15px;
  border-radius: 5px;
  background: var(--nav-background-color); 
}

@media (max-width: 768px) { 

 .title span {
  /* border: none;
 *   padding: 5px 15px;
 *     border-radius: 10px;
 *       background: none;
 *         color: var(--nav-background-color);  */
  margin-top: 20px;
}

.title a:hover {
  color: var(--accent-color);
}

.ticker .btn {
  text-align: right !important;
}

}

@media (min-width: 992px) {
  .ticker .btn {
  text-align: center !important;
}
}


.news marquee {
    font-size: 18px;
    margin-top: 12px;
    padding-bottom: 5px;
}

.news-content p{
    margin-right: 41px;
    display: inline
}

.news-content a {
	text-decoration: none;
}

img {
	display: block;
	max-width: 100%;
	object-fit: cover;
}

h1 {
	margin-block-end: 1rem;
	font-size: 3rem;
}

/* a {
	color: var(--color-primary);
	text-decoration: none;

	&:hover {
		text-decoration: underline;
	}
} */

.wrapper {
	display: grid;
	place-content: center;
	/*height: 100vh;*/
  padding: 10px 0;
}

.marquee {
	overflow: hidden;
	position: relative;
	mask-image: linear-gradient(
		var(--mask-direction, to right),
		hsl(0 0% 0% / 0),
		hsl(0 0% 0% / 1) 10%,
		hsl(0 0% 0% / 1) 90%,
		hsl(0 0% 0% / 0)
	);
}

.marquee__ctn {
	display: flex;
	width: 100%;
}

.marquee__track {
	display: flex;
}

@supports (-webkit-touch-callout: none) {
	.marquee__ctn {
		transform: translate3d(0, 0, 0) scale(1);
		perspective: 1px;
	}
}

.marquee__item {
	display: flex;
	align-items: center;
	justify-content: center;

	flex-shrink: 0;

	width: 120px;
	margin-inline-end: 1rem;

	img {
		height: 100px;
		width: 100%;
		object-fit: contain;
		backface-visibility: hidden;
		filter: brightness(100%);
	}

  .marquee__item img:hover {
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -o-animation-play-state: paused;
    animation-play-state: paused;
  }
}

.page-header {
  padding: 20px 0;
	background-image: url(../../assets/img/pb.png);
}

hr {
    border-top: 2px solid #c8d2dc;
    width: 50%;
    margin: 15px auto;
}

.contact-header {
  font-weight: 600;
  color: var(--nav-background-color);
  text-transform: uppercase;
}

.faq ol>li {
  border-bottom : 1px dotted #c8d2dc;
  padding: 15px 0;
}

.table-header {
  background-color: var(--nav-background-color) !important;
  color: var(--accent-color) !important;
}

.table a {
  color:  var(--footer-background);
}

.table a:hover {
  color: var(--nav-background-color);
}

.text-custom {
   color: var(--nav-background-color);
}

.custom-page ul li {
	list-style-type: none;
	padding : 10px 0 0 10px;
}

.dark {
	font-weight: 600;
}

.featured-box {
	background-color: var(--nav-background-color) !important;
	border-radius: 10px;
	padding: 20px 20px;
	font-size: 1.5rem;
	height: 120px;
        display: flex;
        align-items: center; 
        justify-content: center;
}

.featured-box a {
        color: var(--accent-color) !important;
}

.featured-box a:hover {
	color: #fff !important;
}

