/********** CSS **********/
:root {
    /* --primary: #9F1015;
    --secondary: #00A2DF;
    --dark: #222222;
    --light:#444444;
    --bg-light: #F8F8F8; */

    --jubilee: #066AC9;
    --bg-light-jubilee: #F5F7F9;
    --secondary: #4AAF57;
}


/* html {
    scroll-behavior: smooth;
}

body {
    font-family: "Open Sans", serif;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    border-radius: 7px;
}


::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
} */


/************************ Common ************************/

/* section {
    padding: 60px 0px;
}

.text-primary {
    color: var(--primary) !important;
}
.text-secondary {
    color: var(--secondary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-secondary {
    background-color: var(--secondary) !important;
}

.bg-light {
    background-color: var(--bg-light) !important;
} */



/* .section-title {
	font-size: 30px;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 20px;
	text-transform: capitalize;

}

.learn-more {
    background-color: var(--secondary);
    padding: 10px 30px;
    border-radius: 5px;
    font-weight: 600 !important;
    color: white;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.learn-more:hover {
    background-color: var(--primary);
    color: white;
} */

/*********************************************************************/

/************************ BANNER ************************/
h2{
    font-size: 38px !important;
}
.silver-jubilee-banner{
    background: linear-gradient(#066AC9, #4c91d32e);
}
.silver-jubilee-banner h1{
    color: white;
    font-size: 45px;
}
.silver-jubilee-banner img{
    object-fit: cover;
    object-position: top;
}
.jubilee{
    margin: 30px 0px;
}
.jubilee img{
    height: 200px;
    width: auto;
}
/************************ MILESTONES ************************/

.journey{
    gap: 10px;
    justify-content: center;
}
.years{
    padding: 10px 0px;
    border-radius: 10px;
}
.years h3{
    margin: 0;
}

.year h6{
    background: var(--jubilee);
    color: white;
    width: 18%;
    border-radius: 10px;
    padding: 5px 10px;
    text-align: center;
}
/************************ TIMELINE ************************/

.timeline-ipsr {
  white-space: nowrap;
  /* overflow-x: hidden; */
  /* background: var(--jubilee) */
}

.timeline-ipsr ol {
  font-size: 0;
  width: 100vw;
  /* padding: 250px 0; */
  padding: 200px 0;
  transition: all 1s;
}

.timeline-ipsr ol li {
  position: relative;
  display: inline-block;
  list-style-type: none;
  /* width: 160px; */
  width: 320px;
  height: 3px;
  background: #D9D9D9;
}

.timeline-ipsr ol li:last-child {
  width: 280px;
}

.timeline-ipsr ol li:not(:first-child) {
  margin-left: 14px;
}
.timeline-ipsr ol li:first-child::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  bottom: 0;
  width: 12px;
  height: 12px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--jubilee);
}

.timeline-ipsr ol li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + 1px);
  bottom: 0;
  width: 12px;
  height: 12px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--jubilee);
}

.timeline-ipsr ol li div {
  position: absolute;
  /* left: calc(100% + 7px); */
  /* width: 280px; */
  width: 320px;
  padding: 15px 0px;
  font-size: 1rem;
  white-space: normal;
  color: black;
  background: white;
  height: 180px !important;
}

.timeline-ipsr ol li div::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
}

.timeline-ipsr ol li:nth-child(odd) div {
  top: -10px;
  transform: translateY(-100%);
}

.timeline-ipsr ol li:nth-child(odd) div::before {
  top: 100%;
  border-width: 8px 8px 0 0;
  border-color: white transparent transparent transparent;
}

.timeline-ipsr ol li:nth-child(even) div {
  top: calc(100% + 16px);
}

.timeline-ipsr ol li:nth-child(even) div::before {
  top: -8px;
  border-width: 8px 0 0 8px;
  border-color: transparent transparent transparent white;
}
/* .timeline time{

} */
.timeline-ipsr h5 {
  display: block;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 8px;
  background-color: var(--jubilee);
  color: white;
  width: 20%;
  border-radius: 20px;
  text-align: center;
  padding: 2px 5px;

}
.timeline-ipsr img{
  height: 45px;
  width: auto;
  margin: 10px 0px 15px;
}
.timeline-ipsr p{
  color: #747579;
  margin: 0;
  font-size: 15px;
}

/* '''''''' */


.timeline-ipsr ol {
  display: flex;
  animation: scroll-linear 100s linear infinite; 
  width: max-content; 
}
.timeline-ipsr:hover ol {
  animation-play-state: paused; 
}

@keyframes scroll-linear {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/* ..... */

/* TIMELINE ARROWS
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* .timeline-ipsr .arrows {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  gap: 5px;
}

.timeline-ipsr .arrows .arrow__prev {
  border: none;
  background: transparent;
}
.timeline-ipsr .arrows .arrow__next{
  border: none;
  background: transparent;
}
.timeline-ipsr .disabled {
  opacity: 0.5;
}
.timeline-ipsr .arrows i{
  color: var(--secondary);
  font-size: 30px;
}
.timeline-ipsr .arrows img {
  width: 45px;
  height: 45px;
} */


/************************ TIMELINE-MOBILE ************************/

/* –––––––––––––––––––––––––––––––––––––––––––––––––– */

.timeline-mob{
  display: none;
}
.timeline-mob ul {
  /* background: #456990; */
  padding: 50px 0 0;
}

.timeline-mob ul li {
  list-style-type: none;
  position: relative;
  width: 6px;
  margin: 0 auto;
  padding-top: 0px;
  background: var(--jubilee);
  min-height: 110px;
}

.timeline-mob ul li::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: inherit;
}

.timeline-mob ul li div {
  position: relative;
  bottom: 0;
  width: 400px;
  /* padding: 15px; */
  /* background: #F45B69; */
  padding: 0 15px;
}

.timeline-mob ul li div::before {
  content: '';
  position: absolute;
  bottom: 7px;
  width: 0;
  height: 0;
  border-style: solid;
}

.timeline-mob ul li:nth-child(odd) div {
  left: 45px;
}

.timeline-mob ul li:nth-child(odd) div::before {
  left: -15px;
  border-width: 8px 16px 8px 0;
  border-color: transparent #F45B69 transparent transparent;
  display: none;
}

.timeline-mob ul li:nth-child(even) div {
  left: -439px;
}

.timeline-mob ul li:nth-child(even) div::before {
  right: -15px;
  border-width: 8px 0 8px 16px;
  border-color: transparent transparent transparent #F45B69;
  display: none;

}

time {
  display: block;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 8px;
  color: var(--jubilee);
}


/* EFFECTS
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.timeline-mob ul li::after {
  transition: background .5s ease-in-out;
}

.timeline-mob ul li.in-view::after {
  background: var(--jubilee);
}

.timeline-mob ul li div {
  visibility: hidden;
  opacity: 0;
  transition: all .5s ease-in-out;
}

.timeline-mob ul li:nth-child(odd) div {
  transform: translate3d(200px, 0, 0);
}

.timeline-mob ul li:nth-child(even) div {
  transform: translate3d(-200px, 0, 0);
}

.timeline-mob ul li.in-view div {
  transform: none;
  visibility: visible;
  opacity: 1;
}


/* GENERAL MEDIA QUERIES
–––––––––––––––––––––––––––––––––––––––––––––––––– */

@media screen and (max-width: 900px) {
  .timeline-mob ul li div {
    width: 250px;
  }
  .timeline-mob ul li:nth-child(even) div {
    left: -289px;
    /*250+45-6*/
  }
}

@media screen and (max-width: 768px) {
  .timeline-mob ul li {
    margin-left: 20px;
  }
  .timeline-mob ul li div {
    width: calc(100vw - 91px);
  }
  .timeline-mob ul li:nth-child(even) div {
    left: 45px;
  }
  .timeline-mob ul li:nth-child(even) div::before {
    left: -15px;
    border-width: 8px 16px 8px 0;
    border-color: transparent #F45B69 transparent transparent;
  }
} 



/************************ AWARDS ************************/
.awards img{
    height: 450px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.awards ul li i{
    color: var(--secondary);
    font-size: 24px;
}
.awards p{
    margin: 5px 0px;
}
.awards1{
  padding: 40px 0 0;
}
.awards1 p{
  margin: 0 !important;
}
.awards1 .p-4{
  min-height: 120px;
}

/* .awards-sec-counter {
    display: grid;
    grid-template-areas: 'counter1 counter2 counter3 counter4 counter5';
    gap: 20px;
    width: 100%;
    grid-template-columns: auto;
    text-align: center;
}

.award-counter:first-child {
    grid-area: counter1;
}

.award-counter:nth-child(2) {
    grid-area: counter2;
}

.award-counter:nth-child(3) {
    grid-area: counter3;
}
.award-counter:nth-child(4) {
    grid-area: counter4;
}
.award-counter:last-child {
    grid-area: counter5;
}
.award-counter .p-4{
    padding: 20px 10px !important;
} */

/************************ AWARDS ************************/
.offer .item{
  display: flex;
  /* align-items: center; */
}
.offer h4{
  color: var(--secondary);
}
.offer img{
  height: 300px;
  width: auto;
  object-fit: cover;
  object-position: top;
}
.offer button{
  background-color: var(--secondary);
  color: white;
}
.offer button:hover{
  background-color: var(--jubilee);
  color: white;
}

/************************ TESTIMONIALS ************************/

.testimonial-title p{
  font-weight: 500;
}
.testimonial-item{
  background: white;
  padding: 30px 20px;
  border-radius: 10px;
}
.testimonial-item img{
  height: 100px;
  width: 70px !important;
}
.testimonial-item h6{
  color: var(--jubilee);
}
.testimonial-user, .testimonial-user-info{
  padding: 10px 10px;
}
.testimonial-item .testimonial-user-info p{
  margin: 0;
}
.testimonial-user-info h5{
  font-size: 19px;
}
.testimonial-user-info h6{
  margin: 8px 0;
}

/* .owl-carousel .owl-nav.disabled{
  display: block !important;
}

.testimonial-carousel .owl-nav {
  display: flex !important;
  gap: 5px;
  top: auto;
  position: absolute;
  right: 0;
  bottom: -20px;
  left: 0;
}
.testimonial-carousel .owl-nav .owl-prev, .testimonial-carousel .owl-nav .owl-next{
    background: var(--secondary) !important;
    width: 35px;
    height: 35px;
    border-radius: 10px;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.testimonial-carousel .owl-nav i {
  color: white;
}
.testimonial-carousel .owl-nav .owl-prev:hover, .testimonial-carousel .owl-nav .owl-next:hover{
    background-color: var(--primary);
}
.testimonial-carousel .owl-nav .owl-prev:hover i, .testimonial-carousel .owl-nav .owl-next:hover i{
    color: #fff !important;
}
.testimonial .owl-nav .owl-prev {
  position: absolute;
  left: -40px;
} */
 .thank{
  /* padding: 0; */
  /* padding-bottom: 30px; */
 }
.thank-you h4{
  color: var(--secondary);
  text-align: center;
}
.thank-you img{
  height: 50px;
  width: auto;
  margin: 0 auto;
  display: block;
}
/************************ Form ************************/
.feedback-form {

}

.contact-form{
  padding: 30px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
}
.contact-form label{
  font-size: 16px;
  margin-bottom: 5px;
  font-weight: 500;
  color: #24292D;
}
.contact-form input[type=text], .contact-form textarea {
  width: 100%; 
  padding: 10px;
  /* margin: 8px 0; */
  /* display: inline-block; */
  border: 1px solid #9e9fa25e !important;
  background-color: transparent;
  color: #747579 !important;
  border-radius: 8px;
  box-sizing: border-box;
  height: 50px;
  z-index: 99;
  /* margin-bottom: 25px; */
}
.contact-form input::placeholder{
  color: #747579 !important;
  opacity: 0.7;
}
.contact-form input[type=submit] {
  background-color: var(--secondary);
  width: 120px;
  color: white;
  padding: 5px 15px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  height: 40px;
  z-index: 99;
  text-transform: capitalize;
  margin: 10px 0px;
}
.contact-form input[type=submit]:hover{
  background: var(--secondary);
}

.contact-form input[type=text]:focus{
  /* border: none !important; */
  outline: none !important;
  box-shadow: none !important;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border: none; /* Remove border on focus */
    /* You can also adjust other border properties here */
    outline: none !important;
}

.feedback1{
  background-color: var(--bg-light-jubilee);
  padding: 30px 30px 10px 30px;
  border-radius: 10px;
  margin-bottom: 20px;
}


/* --------popup---------- */
.feedback-popup {
  display: none;
  position: fixed;
  top: 5%;
  left: auto;
  right: auto;
  /* transform: translate(-50%, -50%); */
  background: white;
  padding: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  width: 50%;
  border-radius: 8px;
  height: 80%;
  overflow: auto;
}

.popup-content {
  position: relative;
}

.close-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 32px;
  cursor: pointer;
  background: red;
  height: 30px;
  width: 30px;
  border-radius: 5px;
  text-align: center;
  display: flex
;
  align-items: center;
  justify-content: center;
  color: white;
}

/* Background Overlay */
.popup-overlay {
  cursor: pointer;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.feedback-form button{
  background-color: var(--secondary);
  color: white;
}
.feedback-form button:hover{
  background-color: var(--jubilee);
  color: white;
}
.feedback-form h6{
  font-size: 14px;
  color: #747579 !important;
  /* opacity: 0.7; */
  margin-bottom: 18px;
  font-weight: 500;
  padding: 7px;
}
/************************ Responsive ************************/

@media screen and (max-width: 1400px) {
  .feedback-popup{
    width: 80%;
    height: 500px;
  }
}
@media screen and (max-width: 1200px) {
  .offer2{
    min-height: 160px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 992px) {
  .timeline-ipsr {
    /* overflow-x: hidden; */
    display: none;
  }
  .timeline-mob{
    display: block;
  }
  .years{
    width: 50%;
}
.testimonials figure{
  display: none;
}
.silver-jubilee-banner{
  background: linear-gradient(#066ac9b5, #066ac900, #4c91d32e);
  padding-bottom: 70px;
}
.testimonial-carousel{
  margin-top: 30px;
}
}
@media screen and (max-width: 768px) {
  .timeline-ipsr{
    display: none;
  }
  .awards img{
    height: 300px;
  }
  .awards .list-inline-item{
    display: flex;
  }
  .awards p {
    margin-top: -4px;
  }
  .awards ul{
    gap: 12px !important;
  }
  .offer .item{
    display: block;
  }
  .offer-content-sec{
    margin-bottom: 30px;
  }
  .offer2 {
    min-height: 110px;
  }
}


.alumni-modal{
 
  height: 80%;
  overflow: auto;
  top: 5%;
}