

@charset "UTF-8";

/* Fonts */
: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: "Poppins",  sans-serif;
}

/* 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: #f1f5f7; /* Background color for the entire website, including individual sections */
  --default-color: #010608; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #011e2c; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #04415f; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --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. */
}

/* 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: #04415f;  /* The default color of the main navmenu links */
  --nav-hover-color: #2086b8; /* 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: #010608; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #04415f; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* 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: #e6edf0;
  --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);
}

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
--------------------------------------------------------------*/

 .top-bar {
         background-color: #dd980b;
    color: #000000;
    font-size: 14px
    }
    .top-bar a {
     border-right: 1px solid #000000;
    padding: 0px 8px;
    color: #040404;
    text-decoration: none;
    font-size: 12px;
    line-height: 24px;
    font-weight: bold;
    }
    .top-bar a:hover {
      text-decoration: underline;
    }
    .aws-text {
      color: #f8c200; /* yellow */
      font-weight: bold;
    }
    .icon-btn {
      background: none;
      border: none;
      color: #fff;
      margin: 0 4px;
    }
    .nasi-logo h2 {
    font-size: 1.1rem;
    color: #000000;
    text-align: center;
    text-decoration: #0d2237;
    font-weight: bold;
}
.header {--background-color: #3c3e90;
    --heading-color: #ffffff;
    color: var(--default-color);
    background-color: #3e4095;
    padding: 1px 1px;
    transition: all 0.5s;
    z-index: 997;
    margin-bottom: 2px;}

.header .header-container {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  transition: all 0.5s;
  position: relative;
 padding-top: 0px;
    padding-bottom: 0px
}

.header .logo {
  background: var(--accent-color);
  position: absolute;
  inset: 0 auto 0 0;
  padding: 0 20px;
}

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

.header .logo h1 {
  font-size: 26px;
  margin: 0;
  font-weight: 500;
  color: var(--contrast-color);
}

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

  .header .navmenu {
    order: 3;
  }
}

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

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #ffffff;
}

/*--------------------------------------------------------------
# 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{
  background: #3c3e90;
}
  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
            color: #ffffff;
        padding: 5px 21px;
        font-size: 14px;
        font-family: var(--nav-font);
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        font-family: inherit;
        font-weight: 500;
        outline: none;
        font-size: 14px;
        color: #fff;
        text-decoration: none;
  }

  .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: #dd980b;
  }

  .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: 6px 20px;
        font-size: 13px;
        text-transform: none;
        color: var(--nav-dropdown-color);
        border-bottom: 1px solid #ccc;
  }

  .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: #a1292c;
  }

  .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;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: #ffffff;
    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);
  }

  .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: #dd980b;
  font-size: 14px;
  position: relative;
}
.icon-btn {
 border: none;
    background: #fff;
    color: #555;
    border-radius: 50%;
    width: 25px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.icon-btn:hover {
  transform: scale(1.1);
  color: #fff;
}

/* Specific Colors */
.twitter-btn {
  color: #55acee;
}
.twitter-btn:hover {
  background: #55acee;
}

.facebook-btn {
  color: #1877f2;
}
.facebook-btn:hover {
  background: #1877f2;
}

.youtube-btn {
  color: #ff0000;
}
.youtube-btn:hover {
  background: #ff0000;
}

.cloud-icon {
  font-size: 1.6rem;
  color: #f5b400; /* golden yellow */
}

.twitter{
  color: white;
    background: #55acee;
}
.facebook{
  color: white;
    background: #4e71a8;
}
.instagram{
  color: white;
    background: radial-gradient(circle at 33% 100%, #fed373 4%, #f15245 30%, #d92e7f 62%, #9b36b7 85%, #515ecf)
}
.youtube{
  color: white;
    background: #cc0000;
}
.linkedin {
    color: white;
    background: #0076b4}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

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

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  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 Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}



/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

.list-group-item{
  background-color: #ffffff2e;
  color:white;
}


/* for contrtast setting*/



.pagina-acessivel {
  background-color: #000!important;
  color: #FFF;
}

.pagina-acessivel h1, .pagina-acessivel h2, .pagina-acessivel h3, .pagina-acessivel h4 { color: #FFF!important; }

.pagina-acessivel a, .pagina-acessivel a h1, .pagina-acessivel a h2, .pagina-acessivel a h3, .pagina-acessivel a h4, .pagina-acessivel i {
  text-decoration: none;
  color: #FFFF00!important;
}

.pagina-acessivel a:hover { text-decoration: underline; }

.pagina-acessivel .dropdown-menu { border-color: #FFF!important; }

.pagina-acessivel li.active > a { color: #FF0000!important; }

/* ========= Mobile View ========= */
@media (max-width: 768px) {
  /* Top Bar */
  .top-bar .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .top-bar .d-flex {
    flex-wrap: wrap;
  }

  .top-bar a {
    font-size: 13px;
  }
.feature-cards-wrapper .feature-card{
  position: relative;
  top: 0px!important;
}
  /* Header */
  .headerBox .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .headerBox .logo {
    flex-direction: column;
    align-items: center;
  }

  .headerBox .logo img {
    height: 70px;
    margin-bottom: 10px;
  }

  .headerBox .nasi-logo h2 {
    font-size: 16px;
    line-height: 1.4;
  }

  .headerBox .d-flex img {
    height: 40px;
    margin: 5px;
  }
}

/* ========= Extra Small (Phones < 480px) ========= */
@media (max-width: 480px) {
  .top-bar a {
    display: inline-block;
    font-size: 12px;
  }

  .headerBox .nasi-logo h2 {
    font-size: 14px;
  }

  .headerBox .logo img {
    height: 60px;
  }
}


/* ===== Tablet View ===== */
@media (max-width: 768px) {
  #header-carousel img {
    height: 250px;   /* reduce height for tablets */
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 35px;
    height: 35px;
    background-size: 100% 100%;
    position: relative;
        top: -37px;
  }
}

/* ===== Mobile View ===== */
@media (max-width: 576px) {
  #header-carousel img {
    height: 180px;   /* smaller height for phones */
  }

  .carousel-control-prev,
  .carousel-control-next {
    top: 40%; /* adjust navigation position */
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 28px;
    height: 28px;
  }
}

/* ===== Tablet View ===== */
@media (max-width: 992px) {
  .highlights {
    grid-template-columns: repeat(2, 1fr); /* 2 per row */
    gap: 15px;
  }
}

/* ===== Mobile View ===== */
@media (max-width: 576px) {
  .highlights {
    grid-template-columns: 1fr; /* single column */
    gap: 12px;
  }

  .count-box {
    padding: 15px 10px;
  }

  .figure {
    font-size: 16px;
  }

  .text {
    font-size: 13px;
  }
}



.nabi-grid {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgb(0 0 0 / 26%);
}

.nabi-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 15px;
  height: 160px;
  text-decoration: none;
  border-right: 1px solid #e3e3e3;
  border-bottom: 1px solid #e3e3e3;
  color: #000;
  position: relative;
  transition: all .3s ease;
}

.nabi-tile img {
  width: 52px;
  margin-bottom: 12px;
}

.nabi-tile h6 {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  margin: 0;
}
.nabi-tile h6:hover{
  color: white;
}
.nabi-tile:hover {
  background: #f7f9ff;
  transform: translateY(-2px);
}

/* Active / Highlight tile */
.nabi-tile.active {
    background: linear-gradient(135deg, #3e4095, #3e4095);
    color: white;
}

/* Active / Highlight tile */
.nabi-tile:hover {
    background: linear-gradient(135deg, #3e4095, #3e4095);
    color: white;
}


.nabi-tile.active h6 {
  color: #ffffff;
}

/* Arrow button */
.nabi-tile .arrow {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: #fff;
  color: #000;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 3px 8px rgba(0,0,0,.2);
}

/* Remove right border on last column */
.nabi-grid .col-md-3:nth-child(4n) .nabi-tile {
  border-right: none;
}

/* Responsive fix */
@media (max-width: 767px) {
  .nabi-tile {
    height: 140px;
  }
}





/*h4{text-align:center;margin:30px 0;color:#444}*/

.main-timeline {
    position: relative
}

.main-timeline:before {
    content: "";
    width: 3px;
    height: 100%;
    border-radius: 20px;
    margin: 0 auto;
    background: #ffffff;
    position: absolute;
    top: 0;
    left: 1px;
    right: 0
}

.main-timeline .timeline {
    display: inline-block;
    margin-bottom: 13px;
    position: relative
}

.main-timeline .timeline:before {
    content: "";
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 4px solid #fff;
    background: #D81159;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, -50%)
}

.main-timeline .timeline-icon {
    display: inline-block;
    width: 115px;
    height: 115px;
    border-radius: 50%;
    border: 3px solid #D81159;
    padding: 14px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 33%;
    transform: translateY(-50%);
    box-shadow: 0 6px 13px 3px rgb(235 225 225 / 45%);
}

.main-timeline .timeline-icon i {
    display: block;
    border-radius: 50%;
    background: #D81159;
    font-size: 44px;
    color: #fff;
    line-height: 81px;
    z-index: 1;
    position: relative
}

.main-timeline .timeline-icon:after,
.main-timeline .timeline-icon:before {
    content: "";
    width: 100px;
    height: 3px;
    background: #D81159;
    position: absolute;
    top: 50%;
    right: -102px;
    transform: translateY(-50%)
}

.main-timeline .timeline-icon:after {
    width: 69px;
    height: 51px;
    background: #30313100;
    top: 84px;
    right: -29px;
}

.main-timeline .timeline-content {
    width: 50%;
    padding: 0px 49px;
    margin: 59px 0 0;
    float: right;
    position: relative
}

.main-timeline .timeline-content:before {
    content: "";
    width: 73%;
    height: 100%;
    border: 3px solid #D81159;
    border-top: none;
    border-right: none;
    position: absolute;
    bottom: -13px;
    left: 32px;
}

.main-timeline .timeline-content:after {
    content: "";
    width: 35px;
    height: 3px;
    background: #D81159;
    position: absolute;
    top: 13px;
    left: 0
}

.main-timeline .title {
    font-size: 20px;
    color: #D81159;
    text-transform: uppercase;
    margin: 0px 0 4px;
}

.main-timeline .description {
    display: inline-block;
    color: #ffffff;
    line-height: 20px;
    margin: 0
}

.main-timeline .timeline:nth-child(even) .timeline-icon {
    left: auto;
    right: 34%;
}

.main-timeline .timeline:nth-child(even) .timeline-icon:before {
    right: auto;
    left: -103px;
}

.main-timeline .timeline:nth-child(even) .timeline-icon:after {
    right: auto;
    left: -31px;
}

.main-timeline .timeline:nth-child(even) .timeline-content {
    float: left;
}

.main-timeline .timeline:nth-child(even) .timeline-content:before {
    left: auto;
    right: 34px;
    transform: rotateY(180deg)
}

.main-timeline .timeline:nth-child(even) .timeline-content:after {
    left: auto;
    right: 0px;
}

.main-timeline .timeline:nth-child(2n) .timeline-content:after,
.main-timeline .timeline:nth-child(2n) .timeline-icon i,
.main-timeline .timeline:nth-child(2n) .timeline-icon:before,
.main-timeline .timeline:nth-child(2n):before {
    background: #F68657
}

.main-timeline .timeline:nth-child(2n) .timeline-icon {
    border-color: #F68657
}

.main-timeline .timeline:nth-child(2n) .title {
    color: #F68657
}

.main-timeline .timeline:nth-child(2n) .timeline-content:before {
    border-left-color: #F68657;
    border-bottom-color: #F68657
}

.main-timeline .timeline:nth-child(3n) .timeline-content:after,
.main-timeline .timeline:nth-child(3n) .timeline-icon i,
.main-timeline .timeline:nth-child(3n) .timeline-icon:before,
.main-timeline .timeline:nth-child(3n):before {
    background: #8fb800
}

.main-timeline .timeline:nth-child(3n) .timeline-icon {
    border-color: #8fb800
}

.main-timeline .timeline:nth-child(3n) .title {
    color: #8fb800
}

.main-timeline .timeline:nth-child(3n) .timeline-content:before {
    border-left-color: #8fb800;
    border-bottom-color: #8fb800
}

.main-timeline .timeline:nth-child(4n) .timeline-content:after,
.main-timeline .timeline:nth-child(4n) .timeline-icon i,
.main-timeline .timeline:nth-child(4n) .timeline-icon:before,
.main-timeline .timeline:nth-child(4n):before {
    background: #2fcea5
}

.main-timeline .timeline:nth-child(4n) .timeline-icon {
    border-color: #2fcea5
}

.main-timeline .timeline:nth-child(4n) .title {
    color: #2fcea5
}

.main-timeline .timeline:nth-child(4n) .timeline-content:before {
    border-left-color: #2fcea5;
    border-bottom-color: #2fcea5
}

@media only screen and (max-width:1200px) {
    .main-timeline .timeline-icon:before {
        width: 50px;
        right: -50px
    }
    .main-timeline .timeline:nth-child(even) .timeline-icon:before {
        right: auto;
        left: -50px
    }
    .main-timeline .timeline-content {
        margin-top: 75px
    }
}

@media only screen and (max-width:990px) {
    .main-timeline .timeline {
        margin: 0 0 10px
    }
    .main-timeline .timeline-icon {
        left: 25%
    }
    .main-timeline .timeline:nth-child(even) .timeline-icon {
        right: 25%
    }
    .main-timeline .timeline-content {
        margin-top: 115px
    }
}

@media only screen and (max-width:767px) {
    .main-timeline {
        padding-top: 50px
    }
    .main-timeline:before {
        left: 80px;
        right: 0;
        margin: 0
    }
    .main-timeline .timeline {
        margin-bottom: 70px
    }
    .main-timeline .timeline:before {
        top: 0;
        left: 83px;
        right: 0;
        margin: 0
    }
    .main-timeline .timeline-icon {
        width: 60px;
        height: 60px;
        line-height: 40px;
        padding: 5px;
        top: 0;
        left: 0
    }
    .main-timeline .timeline:nth-child(even) .timeline-icon {
        left: 0;
        right: auto
    }
    .main-timeline .timeline-icon:before,
    .main-timeline .timeline:nth-child(even) .timeline-icon:before {
        width: 25px;
        left: auto;
        right: -25px
    }
    .main-timeline .timeline-icon:after,
    .main-timeline .timeline:nth-child(even) .timeline-icon:after {
        width: 25px;
        height: 30px;
        top: 44px;
        left: auto;
        right: -5px
    }
    .main-timeline .timeline-icon i {
        font-size: 30px;
        line-height: 45px
    }
    .main-timeline .timeline-content,
    .main-timeline .timeline:nth-child(even) .timeline-content {
        width: 100%;
        margin-top: -15px;
        padding-left: 130px;
        padding-right: 5px
    }
    .main-timeline .timeline:nth-child(even) .timeline-content {
        float: right
    }
    .main-timeline .timeline-content:before,
    .main-timeline .timeline:nth-child(even) .timeline-content:before {
        width: 50%;
        left: 120px
    }
    .main-timeline .timeline:nth-child(even) .timeline-content:before {
        right: auto;
        transform: rotateY(0)
    }
    .main-timeline .timeline-content:after,
    .main-timeline .timeline:nth-child(even) .timeline-content:after {
        left: 85px
    }
}

@media only screen and (max-width:479px) {
    .main-timeline .timeline-content,
    .main-timeline .timeline:nth-child(2n) .timeline-content {
        padding-left: 110px
    }
    .main-timeline .timeline-content:before,
    .main-timeline .timeline:nth-child(2n) .timeline-content:before {
        left: 99px
    }
    .main-timeline .timeline-content:after,
    .main-timeline .timeline:nth-child(2n) .timeline-content:after {
        left: 65px
    }
}


.nabi-footer {
   background: #2f2f2f;
    color: #fff;
    font-family: Arial, sans-serif;
    padding: 30px 20px 15px;
    text-align: center;
    background-image: url(https://mohfw.gov.in/sites/all/themes/dhfw/images/footer-bottom-bg.png);
    width: 100%;
}

.nabi-footer .footer-top {
    margin-bottom: 20px;
}

.nabi-footer .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.nabi-footer .footer-links a {
    color: #f68657;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nabi-footer .footer-links a:hover {
    color: #d81159;
}

.nabi-footer .footer-bottom p {
    margin: 5px 0;
    font-size: 14px;
    color: #ccc;
}

@media only screen and (max-width: 767px) {
    .nabi-footer .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}


.rounded-circle {
    border-radius: 50% !important;
}
img {
    max-width: 100%;
    vertical-align: top;
}

.sub-info{
    font-weight: bold;
    color: #a2272a;
    font-size: 16px;
}

.display-30 {
    font-size: 0.9rem;
}

.facilities-icon{
      background: #3e4095;
    height: 72px;
    width: 72px;
    font-size: 47px;
    line-height: 77px;
    color: white;
    box-shadow: 0 6px 18px rgb(54 54 54 / 56%);
}
.facilities-icon:hover {
    background: #a1292c;}


.partners-logos-section {
    padding: 20px 0;
    background: #f8f9fa;
}

.partners-cards {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 10px;
}

.partner-card {
       flex: 0 0 auto;
    display: inline-block;
    background: #ffffff;
    border: 1px solid #cbcbcb;
    border-radius: 6px;
    padding: 10px;
    transition: transform 0.3s 
ease, box-shadow 0.3s 
ease;
    width: 18%;
    text-align: -webkit-center;
}

.partner-card img {
    display: block;
    max-height: 70px;
    width: auto;
}

.partner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}


/* Background Section */
.quick-links{
    background: url('../../img/maxresdefault.jpg') center/cover no-repeat;
    position: relative;
    padding: 14px 0;
}

.quick-links::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.75);
}

.quick-links .container-fluid{
    position: relative;
    z-index: 1;
}

/* Card Style */
.link-box{
    text-align:center;
    padding: 2px 20px;
    color:#fff;
}

.icon-circle{
  box-shadow: 0 6px 18px rgb(199 192 192 / 47%);
    width: 79px;
    height: 76px;
    background:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 15px;
    border: 3px solid #a2272a;
}

.icon-circle img{
    width:50px;
}

/* Title */
.link-box h5{
    color:#ffc107;
    font-weight:600;
    margin-bottom: 1px;
    font-size: 17px;
}

/* Text */
.link-box p{
    font-size: 12px;
}

/* Button */
.btn-read{
    background:#ffffff;
    color:#000;
    padding: 2px 16px;
    border-radius:0;
    font-size: 13px;
    margin-top: -14px;
}

.btn-read:hover{
    background:#ffb300;
    color:#000;
}

.rotate-hover img{
    transition: transform 0.4s ease;
    box-shadow: 0 6px 18px rgb(143 131 131 / 4%);
}

.rotate-hover img:hover{
    transform: rotate(135deg);
}

.icon-circle img{
    transition: transform 0.5s ease;
}

.icon-circle:hover img{
    transform: rotate(43deg);
}