/* english page font  */
@font-face {
  font-family: 'notosans';
  src: url('NotoSans-Regular.ttf') format('truetype');
}

/* mr page font  */
@font-face {
  font-family: 'yashomudra';
  src: url('Yashomudra-Normal.ttf') format('truetype');
}

/* headings font  */
@font-face {
  font-family: 'headingFont';
  src: url('BreeSerif-Regular.ttf') format('truetype');
}

.eng_font {
  font-family: 'notosans', sans-serif;
}

.mr_font {
  font-family: 'yashomudra', sans-serif;
}

#spinner {
  margin-top: 25%;
}

/* navbar animation  */

body {
  margin: 0px;
}



.link-3 {
  transition: 0.4s;

}

.link-3:hover {
  background-color: #FF7C2C;
  font-weight: bold;
}


/* navbar animation end  */

.fixed-bottom {
  text-align: right;
  margin: 10px;
}


/* for dropdown hover    */
.dropdown:hover>.dropdown-menu {
  display: block;
}

/* Paste this css to your style sheet file or under head tag */
/* This only works with JavaScript, 
if it's not present, don't show loader */
.no-js #loader {
  display: none;
}

.js #loader {
  display: block;
  position: absolute;
  left: 100px;
  top: 0;
}

.se-pre-con {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: none center no-repeat #fff;
}



/* Background color and padding for the logo container */
.logo-container {
  background-color: #0c0188;
  padding-top: 10px;
}

/* Background color, padding, text alignment, and font size for the emergency contacts container */
.emergency-contacts-container {
  background-color: #0c0188;
  padding-top: 15px;
  color: white;
  text-align: center;
  font-size: 1vw;
}

/* Common styles for each emergency contact column */
.emergency-contact {
  border-right-style: dashed;
  border-width: 1px;
}

/* Color for the contact numbers */
.contact-number {
  color: #ff745c;
}

/* Hover effect for the columns */
.hvr-grow:hover {
  transform: scale(1.05);
  transition: transform 0.3s;
}




/* Modal body text color */
.modal-body {
  color: white;
}

/* Table font weight */
.table-bold {
  font-weight: bold;
}

/* Specific color for table cell content */
.table-content {
  color: #ff745c;
}

.divwhite {
  background-color: #ffffff;
  height: 1px;
}

/* nav bar */

nav {
  background-color: #0c0188;
}

button.navbar-toggler {
  background-color: #ffffff;
}

nav button.btn {
  width: 90px;
  padding: 7px;
}

nav ul {
  font-weight: bold;
}

.nav-link {
  color: #ffffff;
}

ul.dropdown-menu {
  background-color: #0c0188;
  width: auto;
  border: 1px solid #385b64;
}

ul.dropdown-menu .branches {
  background-color: #0c0188;
  width: auto;
  border: 1px solid #385b64;
  margin-left: 100px;
}


a.dropdown-item {
  padding: 10px;
  font-size: 16px;
  color: white
}

.social-media {
  background-color: #3d34a0;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding-left: 1vw;
  padding-right: 1vw;
  width: auto;
}

.bi-facebook {
  color: #1877f2;
  font-size: 25px;
  margin-right: 20px;
}

.bi-instagram {
  color: #e4405f;
  font-size: 25px;
  margin-right: 20px;
}

.bi-twitter-x {
  color: #1da1f2;
  font-size: 25px;
  margin-right: 10px;
}

/* end nav bar */

/* photo and msg  */

.topbg {

  
}

.padding-1 {
  padding: 70px;
}

.topbg .row .col-md-12.col-lg-6 img {
  padding: 50px;
}

.msg-heading {
  font-size: 45px;
  font-family: 'headingFont', sans-serif;
  /* Ensure headingFont is properly defined */
  color: #ff745c;
}
.msg-heading_mr {
  font-size: 45px;
  font-family: 'yashomudra', sans-serif;
  /* Ensure headingFont is properly defined */
  color: #ff745c;
}

.msg {
  text-align: justify;
  font-size: 23px;
}

.author {
  text-align: right;
  font-weight: bold;
  font-size: 25px;
}

.cpimg {
  padding: 50px;
}

/*  Latest News  */

.latest_news {
  background-color: #ff7c2c;
  padding: 12px 0;
  color: #ffffff;
  text-align: center;
}

.latest_news_feeds {
  background-color: #270c0c;
}

/* END  Latest News  */


/* corousal  */

.corousal-div {
  background-image: url('../images/stacked-waves-haikei.svg');
  background-size: cover;
  background-attachment: fixed;
}

.corousal-ht {
  height: 8vw;
}

.carousel-indicators button {
  background-color: #ff7c2c;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #90a4ae;
}

/* corousal end  */

/* Leadership  */

 .card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
        }
.card-title-orange{
            color: #FE7C31 !important;
}
        

/* Leadership end  */


/* nearest ps map */
   /* Container to hold map + controls together */
    .map-container {
      position: relative;   /* ensures .controls stay inside */
      width: 100%;
      max-width: 100%;    /* optional: set a max width */
      margin: auto;         /* center the whole block */
    }

    #map {
      height: 600px;
      width: 100%;
    }

    .controls {
      background: white;
      padding: 12px;
      border-radius: 8px;
      box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
      width: 260px;
      position: absolute;   /* positioned relative to .map-container */
      top: 10px;
      left: 60px;
      z-index: 1000;
    }

    .cbtn {
      width: 100%;
      margin-top: 10px;
    }

    /* Preloader Overlay */
    #preloader {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(255,255,255,0.8);
      z-index: 9999;
      align-items: center;
      justify-content: center;
    }

    .spinner-border {
      width: 3rem;
      height: 3rem;
    }

    /* Mobile View: Controls at top, map below */
    @media (max-width: 576px) {
      .map-container {
        display: flex;
        flex-direction: column;
      }
      .controls {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        box-shadow: none;
        border-radius: 0;
      }
      #map {
        height: calc(100vh - 400px); /* adjust based on controls height */
      }
    }
/* END nearest ps map*/


/* gallery  */

.gallery-div {
  background-image: url('../images/Shiny-bg.svg');
  background-size: cover;
}

.gal-title {
  font-size: 45px;
  font-weight: bold;
  color: #1a2e35;
  text-align: center;
  padding-top: 100px;
  padding-bottom: 40px;
}

.vm {
  height: 8vw;
  color: black;
  text-align: center;
  padding: 50px
}

/* gallery end  */

/* PS list  section */
.ps-div {
  background-image: url('../images/office_black_bg.png');
  background-size: cover;
  background-attachment: fixed;
}

.ps-title {
  font-size: 45px;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  padding-top: 100px;
  padding-bottom: 40px;
}

.ps-div .container-fluid {
  text-align: center;
}

.ps-div a {
  text-decoration: none;
}

.psbox {
  color: white;
  padding: 30px;
  font-size: 22px;
  border: 1px solid #ff7c2c;
}

.psht {
  height: 8vw;
}

/* PS list  section end */

/* social media widgets  section */
.social-media-fb-widget {
  border: 1px solid #C1C1C1;
  border-radius: 15px;
  overflow: hidden;
  width: 100%;
  height: 500px;
  padding-left: 50px;
}

.card-header .bi {
  color: white;
}

.twitter-wgt {
  background-color: #1877F2;
  text-align: center;
  color: white;
}

.fb-wgt {
  background-color: #1DA1F2;
  text-align: center;
  color: white;
}

/* END social media widgets  section */



/* Bottom slider */
.autoplay {
  padding: 40px;
}

/* Bottom slider end */

/* bottom social media    */
.foot-sec {
  background-color: #212121;
  padding: 15px;
}

.foot-sec .bi-facebook {
  color: #1877f2;
  font-size: 40px;
  margin-right: 50px;
}

.foot-sec .bi-instagram {
  color: #e4405f;
  font-size: 40px;
  margin-right: 50px;
}

.foot-sec .bi-twitter-x {
  color: #1da1f2;
  font-size: 40px;
  margin-right: 50px;
}

.icon-div {
  text-align: right;
}

.container-btm {
  height: 1px;
  background-color: wheat;
  width: 80%;
}

/* bottom social media end    */

/* for footer    */

.myfooter {
  background-color: #212121;
  text-align: center;
  padding: 20px;
}

.myfooter span {
  color: white;
  font-family: Arial, Arial, Helvetica, sans-serif;
}


.myfooter iframe {
  height: 25px;
  width: 120px;
  margin-top: -7px;


}

/* Footer section end */