@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
.blink {
  animation: blink 1s infinite;
} 


.navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: nowrap; /* Prevent items from wrapping */
  overflow: hidden; /* Hide overflow if necessary */
}

.navbar-nav > li {
  position: relative;
}

.navbar-nav > li + li::before {
  content: '|';
  color: #150202;
  margin: 0 5px; /* Adjust this margin to fit items in one line */
}

/* Show the graduation cap image on hover and active states */
.navbar-nav > li > a:hover::before,
.navbar-nav > li > a.active::before {
content: "";
position: absolute;
height: 25px; /* Adjust height to fit the image */
width: 25px;  /* Adjust width to fit the image */
top: 50px;  /* Adjust vertical position */
left: 50%;
margin-left: -8px; /* Adjust to center the image */
background-image: url('../img/icon.png'); /* Path to your graduation cap image */
background-size: cover;
background-repeat: no-repeat;
background-position: center;
display: block;
}

/* Styles for the links */
.navbar-nav > li > a {
  text-decoration: none;
  padding: 10px 10px; /* Reduce padding */
  display: inline-block;
  font-size: 14px; /* Reduce font size if needed */
}

.navbar-nav > li > a:hover, 
.navbar-nav > li > a.active {
  color: #f00; /* Change this to the color you want for active or hover state */
}

/* Responsive design for navbar */
@media (max-width: 768px) {
  .navbar-nav {
      flex-direction: column;
  }

  .navbar-nav > li + li::before {
      content: none;
  }

  .navbar-nav > li > a {
      padding: 10px 15px; /* Increase padding for mobile */
      font-size: 16px; /* Increase font size for mobile */
  }
}
.footerr {
    position: relative;
    background-color: #f8f9fa;
    }
    .attr-nav {
        display: flex;
        justify-content: center;
        align-items: center;
        
        
    }
    .attr-nav ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
     
	
    }
    .attr-nav li {
        display: inline-block;
    }
    .side-menu a {
        display: block;
        width: 40px;
        height: 30px;
        position: relative;
        
        
    }
    .side-menu span {
        position: absolute;
        right: 0;
        top: 0;
        content: "";
        height: 2px;
        width: 40px;
        background: #232323;
        transition: all 0.3s ease-in-out;
    }
    .side-menu .bar-1 {
        top: 0;
        height: 2px; /* Increase the height of the top line */
        width: 40px;
        transform-origin: 50% 50%;
    }
    .side-menu .bar-2 {
        top: 10px;
        height: 2px; /* Increase the height of the top line */
        width: 35px;
        /* transform-origin: 50% 50%; */
    }
    .side-menu .bar-3 {
        top: 20px;
        height: 2px; /* Increase the height of the top line */
        width: 30px;
        /* transform-origin: 50% 50%; */
    }
   
    .side {
    background-image: url("../img/Menu.jpg"); 
    position: fixed;
    right: -400px; /* Adjust the width of the side menu */
    top: 0;
    width: 230px; /* Adjust the width of the side menu */
    height: 100%; 
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: right 0.3s ease;
}

.side.active {
    right: 0;
}

.close-side {
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 24px;
    cursor: pointer;
}

.attr-nav .side-menu a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 30px;
    width: 30px;
}

.attr-nav .side-menu a .bar-1,
.attr-nav .side-menu a .bar-2,
.attr-nav .side-menu a .bar-3 {
    height: 3px;
    width: 100%;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}
/*
.attr-nav .side-menu a:hover .bar-1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.attr-nav .side-menu a:hover .bar-2 {
    opacity: 0;
}

.attr-nav .side-menu a:hover .bar-3 {
    transform: rotate(45deg) translate(-5px, -6px);
}*/

     .timeline {
      position: relative;
      width: 100%;
      max-width: 1140px;
      margin: 0 auto;
      padding: 15px 0;
    }
    
    /* .timeline::after {
      content: '';
      position: absolute;
      width: 2px;
      background: #184180;
      top: 0;
      bottom: 0;
      left: 50%;
      margin-left: -1px;
    } */
    
    .container1 {
      padding: 15px 30px;
      position: relative;
      background: inherit;
      width: 50%;
    }
    
    .container1.left {
      left: 0;
    }
    
    .container1.right {
      left: 50%;
    }
    
    /* .container1::after {
      content: '';
      position: absolute;
      width: 16px;
      height: 16px;
      top: calc(50% - 8px);
      right: -8px;
      background: #ffffff;
      border: 2px solid #184180;
      border-radius: 16px;
      z-index: 1;
    } */
    
    /* .container1.right::after {
      left: -8px;
    } */
    
    /* .container1::before {
      content: '';
      position: absolute;
      width: 50px;
      height: 2px;
      top: calc(50% - 1px);
      right: 8px;
      background: #184180;
      z-index: 1;
    }
    
    .container1.right::before {
      left: 8px;
    } */
    
    .container1 .date {
      position: absolute;
      display: inline-block;
      top: calc(50% - 8px);
      text-align: center;
      font-size: 14px;
      font-weight: bold;
      color: #184180;
      text-transform: uppercase;
      letter-spacing: 1px;
      z-index: 1;
    }
    
    .container1.left .date {
      right: -75px;
    }
    
    .container1.right .date {
      left: -75px;
    }
    
    .container1 .icon1 {
      position: absolute;
      display: inline-block;
      width: 25px;
      height: 25px;
      padding: 6px 0;
      top: calc(50% - 5px);
      background: #FFCB00;
      border: 2px solid #184180;
      border-radius: 40px;
      text-align: center;
      font-size: 35px;
      color: #184180;
      z-index: 1;
    }
    .container1 .icon2 {
      position: absolute;
      display: inline-block;
      width: 25px;
      height: 25px;
      padding: 6px 0;
      top: calc(50% - 5px);
      background: #f00;
      border: 2px solid #184180;
      border-radius: 40px;
      text-align: center;
      font-size: 35px;
      color: #184180;
      z-index: 1;
    }
    .container1 .icon3 {
      position: absolute;
      display: inline-block;
      width: 25px;
      height: 25px;
      padding: 6px 0;
      top: calc(50% - 5px);
      background: #80BA27;
      border: 2px solid #184180;
      border-radius: 40px;
      text-align: center;
      font-size: 35px;
      color: #184180;
      z-index: 1;
    }
    
    .container1.left .icon1 {
      right:11px;
    }
    
    .container1.right .icon1 {
      left: 10px;
    }
    .container1.left .icon2 {
      right:11px;
    }
    
    .container1.right .icon2 {
      left: 10px;
    }
    .container1.left .icon3 {
      right:11px;
    }
    
    .container1.right .icon3 {
      left: 10px;
    }
    
    .container1 .content {
      padding: 30px 90px 30px 30px;
      background: #FFCB00;
      position: relative;
      border-radius: 0 500px 500px 0;
    }
    
    .container1.right .content {
      padding: 30px 30px 30px 90px;
      border-radius: 500px 0 0 500px;
    }
    
    .container1 .content h2 {
      margin: 0 0 10px 0;
      font-size: 18px; 
      color: #000000;
    }
    
    .container1 .content p {
      margin: 0;
      font-size: 16px;
      line-height: 22px;
      color: #000000;
      text-align:inherit;
    }
    
    .connector {
                   position: relative;
                   width: 100%;
                   /*height: 50px;*/
               }
               
               .connector-left::before, .connector-right::before {
                   content: '';
                   position: absolute;
                   width: 2px;
                   background: #184180;
               }
               
               .connector-left::before {
                   height: 214px;
                   left: 102%;
                   top: -100px;
               }
               
               .connector-left::after {
                   content: '';
                   position: absolute;
                   width: calc(69% - 170px);
                   height: 2px;
                   background: #184180;
                   left: 48%;
                   top: -100px;
               }
               
               .connector-left1::before, .connector-right::before {
                   content: '';
                   position: absolute;
                   width: 2px;
                   background: #184180;
               }
               
               /* .connector-left1::before {
                   height: 270px;
                   left: 80%;
                   top: -170px;
               } */
               
               .connector-left1::after {
                   content: '';
                   position: absolute;
                   width: calc(23% - 125px);
                   height: 2px;
                   background: #184180;
                   left: 90%;
                   top: 112px;
               }
               
    
               .connector-right::before {
                   /* height: 50px;
                   right: 50%;
                   top: -50px; */
                   /* height: 210px;
                   right: 108%;
                   top: -100px; */
                   height: 215px;
                   right: 102%;
                   top: -100px;
               }
               
               .connector-right::after {
                   /* content: '';
                   position: absolute;
                   width: calc(50% - 125px);
                   height: 4px;
                   background: #000;
                   right: 50%;
                   top: 0; */
                   /* content: '';
                   position: absolute;
                   width: calc(47% - 125px);
                   height: 2px;
                   background: #184180;
                   right: 44%;
                   top: -100px; */
    
                   content: '';
                   position: absolute;
                   width: calc(69% - 170px);
                   height: 2px;
                   background: #184180;
                   right: 48%;
                   top: -100px;
               }
    
               .connector-right1::before, .connector-right::before {
                   content: '';
                   position: absolute;
                   width: 2px;
                   background: #184180;
               }
               
               /* .connector-left1::before {
                   height: 270px;
                   left: 80%;
                   top: -170px;
               } */
               
               .connector-right1::after {
                content: '';
                   position: absolute;
                   width: calc(23% - 125px);
                   height: 2px;
                   background: #184180;
                   right: 90%;
                   top: 113px;
               }
    @media (max-width: 767.98px) {



      .navbar-nav > li > a:hover::before,
.navbar-nav > li > a.active::before {
content: "";
position: absolute;
height: 25px; /* Adjust height to fit the image */
width: 25px;  /* Adjust width to fit the image */
top: 0px;  /* Adjust vertical position */
left: 50%;
margin-left: -8px; /* Adjust to center the image */
background-image: url('../img/icon.png'); /* Path to your graduation cap image */
background-size: cover;
background-repeat: no-repeat;
background-position: center;
display: block;
}


      .timeline::after {
        left: 90px;
      }
    
      .container1 {
        width: 100%;
        padding-left: 120px;
        padding-right: 30px;
      }
    
      .container1.right {
        left: 0%;
      }
    
      .container1.left::after, 
      .container1.right::after {
        left: 82px;
      }
    
      .container1.left::before,
      .container1.right::before {
        left: 100px;
        border-color: transparent #184180 transparent transparent;
      }
    
      .container1.left .date,
      .container1.right .date {
        right: auto;
        left: 15px;
      }
    
      .container1.left .icon,
      .container1.right .icon {
        right: auto;
        left: 146px;
      }
    
      .container1.left .content,
      .container1.right .content {
        padding: 30px 30px 30px 90px;
        border-radius: 500px 0 0 500px;
      }
      @media (max-width: 480px) {
        .connector-left::before, .connector-right::before {
            height: 5vh;
            top: -4vh;
        }
        .connector-left::after, .connector-right::after {
           display: none;
        }
        .connector-left1::after, .connector-right1::after {
           display: none;
        }
      }
      
    }

    .dot {
      height: 25px;
      width: 25px;
      background-color: #bbb;
      border-radius: 50%;
      display: inline-block;
    }

    @media (min-width: 1200px) {
      .container {
          max-width: 1450px!important;
      }
  }
