:root {
  --navy: #03182b;
  --gold: #ba8624;
  --cream: #f7f4ef;
  --ink: #142032;
}
* {
  box-sizing: border-box;
}
body {
  font-family: "DM Sans", sans-serif;
  background: var(--cream);
  color: #082947;
  font-size: 18px;
}
.section {
  padding: 42px 0;
}
h1,
h2 {
  font-family: "Playfair Display", serif;
  color: var(--ink);
}
h2 {
  font-size: 29px;
  line-height: 1.25;
  margin: 0px 0px 10px;
}
.eyebrow {
  font-size: 18px;
  color: #a87822;
  font-weight: 700;
  text-transform: uppercase;
}
.site-nav {
  background: rgba(2, 20, 35, 0.96);
  min-height: 72px;
}
.navbar-brand {
  color: #e3b752 !important;
  font-size: 25px;
  line-height: 1;
}
.navbar-brand small {
  display: block;
  font-size: 14px;
  color: #d4bc83;
  letter-spacing: 0.4px;
  margin-top: 5px;
}
.crest {
  width: 49px;
  height: 49px;
  border: 2px solid #c49337;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 27px;
  color: #cf9f43;
}
.nav-link {
  font-size: 16px;
  color: #fff !important;
}
.nav-link.active {
  color: #d5a33c !important;
  border-bottom: 2px solid #c8942e;
}
.btn {
  border-radius: 2px;
  font-size: 16px;
  font-weight: 700;
  padding: 10px 17px;
}
.btn-gold {
  background: #bc8828;
  border-color: #bc8828;
  color: #fff;
}
.btn-gold:hover {
  background: #956618;
  color: #fff;
}
.btn-outline-gold {
  border: 1px solid #b98a34;
  color: #a8761e;
  background: transparent;
}
.hero {
  height: 465px;
  background: url("https://images.unsplash.com/photo-1564981797816-1043664bf78d?auto=format&fit=crop&w=1800&q=85")
    center 42% / cover no-repeat;
  position: relative;
  margin-top: 72px;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.78),
    rgba(0, 0, 0, 0.24),
    rgba(0, 0, 0, 0.42)
  );
}
.hero-copy {
  color: #e9c267;
}
.hero h1 {
  font-size: 52px;
  color: #fff;
  line-height: 1.1;
}
.hero-copy p {
  font-size: 16px;
  line-height: 1.55;
  margin: 18px 0;
}
.about {
  background: #faf9f6;
}
.about p {
  line-height: 28px;
  text-align: justify;
 
}
.batch-photo {
  
  overflow: hidden;
  position: relative;
}
.batch-photo:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #faf9f6,
    transparent 20%,
    transparent 80%,
    #faf9f6
  );
  pointer-events: none;
}
.batch-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.6) grayscale(0.65);
}
.stats {
  background: var(--navy);
  color: #fff;
  padding: 20px 0;
}
.stat {
  border-right: 1px solid #4d5a67;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.stat:last-child {
  border: 0;
}
.stat span {
  font-size: 35px;
  color: #d4a02c;
}
.stat b {
  font-size: 24px;
}
.stat small {
  align-self: flex-end;
  margin-bottom: 3px;
}
.classmates {
  padding-bottom: 10px;
}
.form-control {
  width: 205px;
  border-radius: 2px;
}
.member-card {
  border: 1px solid #d9d4cd;
  border-radius: 4px;
  background: #fbfaf8;
  text-align: center;
  padding: 11px 6px;
}
.member-card img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  filter: saturate(0.7);
}
.member-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 10px 0 5px;
}
.member-card p {
  font-size: 12px;
  line-height: 1.4;
  height: 30px;
  margin: 0 0 8px;
  color: #a87822 !important;
  font-weight: 600;
}
.member-card .btn {
  font-size: 9px;
  padding: 6px 10px;
  background: var(--navy);
  color: #fff;
}
.feature-box {
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid #ded8d0;
}
.faculty-photo {
  width: 88px;
  height: 97px;
  object-fit: cover;
  filter: grayscale(1);
}
.faculty-card {
  text-align: center;
  font-size: 9px;
}
.faculty-card b {
  display: block;
  font-size: 9px;
  margin-top: 7px;
}
.faculty-card p {
  line-height: 1.35;
  margin: 7px 0;
}
.timeline {
  display: flex;
  justify-content: space-between;
  margin: 34px 0 26px;
  position: relative;
}
.timeline:before {
  content: "";
  height: 2px;
  background: #173044;
  position: absolute;
  left: 7%;
  right: 7%;
  top: 22px;
}
.timeline div {
  z-index: 1;
  text-align: center;
  width: 20%;
  background: transparent;
}
.timeline i {
  font-style: normal;
  display: grid;
  place-items: center;
  margin: auto;
  width: 60px;
  height: 60px;
  border: 1px solid var(--navy);
  border-radius: 50%;
  background: #ffe8b2;
  font-size: 45px;
}
.timeline b,
.timeline small {
  display: block;
}
.timeline b {
  margin: 7px 0 2px;
  font-size: 22px;
}
.timeline small {
  font-size: 14px;
  line-height: 1.25;
  font-weight: bold;
}
.timeline .future i {
  border-color: #b9872a;
  color: #b9872a;
}
.timeline .future b,
.timeline .future small {
  color: #a8751e;
}
.memory {
  height: 240px;
  position: relative;
  overflow: hidden;
  border-radius: 3px;
}
.memory img {
  width: 100%;
  height: 100%;
  object-fit: cover;
/*  filter: sepia(0.4) grayscale(0.45);*/
}
.memory span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  text-align: center;
  font-size: 18px;
  padding: 7px;
}
.then-now {
  display: flex;
  margin-top: 7px;
}
.then-now img {
  width: 50%;
  height: 190px;
  object-fit: cover;
}
.quote {

  background: #fffdf9;
  text-align: center;
  min-height: 128px;
  padding: 10px;
  font-size: 12px;
/*  display: flex;*/
  align-items: center;
  justify-content: center;
}
.quote p:before {
  content: "“";
color: #b68427;
    font-size: 28px;
    font-weight: bold;
    margin-left: 6px;
}

.quote p::after{
    content: "”";
    color: #b68427;
    font-size: 28px;
    font-weight: bold;
    margin-left: 6px;
}
.quote .doc-msg{font-size: 18px;margin-top: 10px;}
.quote a{font-size: 14px;font-weight: bold;
    color: #bc8828;}
.quote small {
  display: block;
  margin-top: 8px;
}
.dots {
  color: #bf8c2d;
  margin-top: 8px;
}
.news {
  min-height: 145px;
  border: 1px solid #ddd7d0;
  background: #fff;
  padding: 10px;
  font-size: 10px;
}
.news img {
  height: 157px;
  /* width: 100%; */
  object-fit: cover;
  margin: -10px -10px 9px;
  width: calc(100% + 20px);
}
.news b {
  display: block;
  font-size: 12px;
}
.birthdays {
  background: var(--navy);
  color: #fff;
  padding: 12px;
  font-size: 12px;
}
.birthdays .birthday {
  border-bottom: 1px solid #425264;
  padding: 5px 0;
  font-size: 12px;
}
.birthdays .birthday span {
  float: right;
}
footer {
  background: var(--navy);
  color: #e4e6e9;
  padding: 28px 0 10px;
  font-size: 10px;
}
footer p {
  margin-top: 16px;
}
footer b {
  font-size: 10px;
  color: #fff;
  display: block;
  margin-bottom: 9px;
}
footer a {
  display: block;
  color: #e4e6e9;
  text-decoration: none;
  line-height: 1.8;
}
.socials {
  font-size: 24px;
  color: #c99a36;
}
.copyright {
  text-align: center;
  border-top: 1px solid #354555;
  margin-top: 18px;
  padding-top: 8px;
  color: #9aa4ae;
}
@media (max-width: 991px) {
  .hero h1 {
    font-size: 42px;
  }
  .border-start-lg {
    border-top: 1px solid #ded8d0;
  }
  .stat:nth-child(2) {
    border: 0;
  }
  .stat:nth-child(n + 3) {
    margin-top: 15px;
  }
  .navbar-nav {
    padding: 12px 0;
  }
  .site-nav .container {
    padding-top: 6px;
    padding-bottom: 6px;
  }
}
@media (max-width: 575px) {
  .hero {
    height: 420px;
  }
  .hero h1 {
    font-size: 36px;
  }
  .section {
    padding: 30px 0;
  }
  .batch-photo {
    height: 180px;
  }
  .member-card img {
    width: 70px;
    height: 70px;
  }
  .timeline {
    overflow-x: auto;
    gap: 16px;
  }
  .timeline div {
    min-width: 80px;
  }
  .timeline:before {
    width: 540px;
  }
  .memory {
    height: 110px;
  }
  .form-control {
    width: 150px;
  }
  .stats {
    padding: 15px 0;
  }
}

.leadership-section, #memories,#updates{
    background:#f8fafc;
}

.president-card{
    background:#fff;
    border-radius:30px;
    padding:40px;
    box-shadow:0 15px 50px rgba(0,0,0,.08);
}

.president-img{
    width:280px;
    height:280px;
    border-radius:50%;
    object-fit:cover;
    border:8px solid #0d6efd;
}

.leader-card{
    background:#fff;
    border-radius:20px;
    padding:25px;
    text-align:center;
    transition:.4s;
    height:100%;
    box-shadow:0 5px 25px rgba(0,0,0,.05);
}

.leader-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.leader-img{
    width:auto;
    height:240px;
    border-radius:10%;
    object-fit:contain;
    border:4px solid ;
    margin-bottom:15px;
    border:4px solid #0A2A66;
   
   
}

.leader-card h5{
    font-size:18px;
    font-weight:700;
    margin-bottom:5px;
}

.leader-card span{
    color:#0d6efd;
    font-weight:500;
}


/*************************************************************/
.testimonial-section{
    padding:80px 0;
    background:#fffdf9;
}

.testimonial-item{
    margin:auto;
    text-align:center;
      border: 1px solid #e1dcd6;
        background:#fffdf9;

}

.testimonial-item img{
    width:120px !important;
    height:120px;
    border-radius:50%;
    object-fit:cover;
    margin:0 auto 30px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.testimonial-content p{
    font-size:30px;
    line-height:1.8;
    color:#143d73;
    margin-bottom:25px;
}

.testimonial-content a{
    color:#0d6efd;
    text-decoration:none;
    font-weight:600;
}

.testimonial-content h4{
    margin-top:25px;
    font-size:34px;
    color:#143d73;
    font-weight:700;
}

.testimonial-content span{
    display:block;
    color:#777;
    font-size:22px;
    margin-top:8px;
}

/* Owl Navigation */

.testimonial-carousel{
    position:relative;
}

.testimonial-carousel .owl-nav{
    margin:0;
}

.testimonial-carousel .owl-prev,
.testimonial-carousel .owl-next{
    position:absolute;
    top:45%;
    transform:translateY(-50%);
    width:55px;
    height:55px;
    border-radius:50% !important;
    background:#fff !important;
    border:1px solid #ddd !important;
    font-size:34px !important;
    color:#143d73 !important;
    transition:.3s;
}

.testimonial-carousel .owl-prev{
    left:-70px;
}

.testimonial-carousel .owl-next{
    right:-70px;
}

.testimonial-carousel .owl-prev:hover,
.testimonial-carousel .owl-next:hover{
    background:#143d73 !important;
    color:#fff !important;
}

.owl-theme .owl-dots{
    margin-top:35px;
}

.owl-theme .owl-dots .owl-dot span{
    width:12px;
    height:12px;
}

.owl-theme .owl-dots .owl-dot.active span{
    background:#143d73;
}

/* Large Laptop */

@media(max-width:1400px){

.testimonial-carousel .owl-prev{
    left:0;
}

.testimonial-carousel .owl-next{
    right:0;
}

}

/* Tablet */

@media(max-width:991px){

.testimonial-section{
    padding:60px 0;
}

.testimonial-item img{
    width:100px !important;
    height:100px;
}

.testimonial-content p{
    font-size:22px;
}

.testimonial-content h4{
    font-size:28px;
}

.testimonial-content span{
    font-size:18px;
}

.testimonial-carousel .owl-prev,
.testimonial-carousel .owl-next{
    width:45px;
    height:45px;
    font-size:26px !important;
}

}

/* Mobile */

@media(max-width:767px){

.testimonial-section{
    padding:40px 0;
}

.testimonial-item{
    padding:0 20px;
}

.testimonial-item img{
    width:80px !important;
    height:80px;
    margin-bottom:20px;
}

.testimonial-content p{
    font-size:16px;
    line-height:1.7;
}

.testimonial-content h4{
    font-size:22px;
}

.testimonial-content span{
    font-size:15px;
}

.testimonial-carousel .owl-prev,
.testimonial-carousel .owl-next{
    display:none;
}

}


.news,
.birthdays{
    display:flex;
    flex-direction:column;
    height:100%;
}

.news img{
    /* width:100%; */
    height:180px;
    object-fit:cover;
}

.news a{
    margin-top:auto;
}

#updatesGrid > div{
    display:flex;
}

.news,
.birthdays{
    width:100%;
    height:100%;
}


/* Owl item */
.testimonial-carousel .owl-item{
    display:flex;
}

/* Testimonial wrapper */
.testimonial-item{
    display:flex;
    width:100%;
    height:100%;
}

/* Quote card */
.quote{
    display:flex;
    flex-direction:column;
    width:100%;
    height:100%;
    padding:30px;
    background:#fff;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

/* Image */
.quote img{
    border-radius:50%;
    margin:0 auto 20px;
}

/* Text takes remaining space */
.quote p{
    flex:1;
}

/* Read More stays at bottom */
.quote a{
    margin-top:auto;
    display:inline-block;
}

/* Name */
.quote h4{
    margin-top:15px;
    margin-bottom:0;
}

.testimonial-carousel .owl-stage{
    display:flex;
}

.testimonial-carousel .owl-item{
    display:flex;
    align-items:stretch;
}

.testimonial-item,
.quote{
    height:100%;
}

.gslide-description {display: none !important;}