:root{
  --p-color:#a94456;
  --ph-color:#8d2a3b;
   --accent: #d4af37;
  --text-dark: #2c2c2c;
}


@media (min-width: 768px){
  .headTopNew{position: fixed; z-index: 99; top: 0;}
  .mainHeader,
  .mainHeader.sticky{position: fixed; top:35px;}
  .headTopNew .headheadTopNewRight ul li a{font-size: 10px;}
}
/* Slider */
.swiper{
  width:100%;
  height:100vh;
}

.swiper-slide{
  position:relative;
  background-size:cover;
  background-position:center;
}

/* Dark overlay */
.swiper-slide::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(0,0,0,0.7) 30%, rgba(0,0,0,0.3) 60%, transparent);
  z-index:1;
}

/* Content */
.slide-content{
  position:absolute;
  top:50%;
  left:8%;
  transform:translateY(-50%);
  color:#fff;
  max-width:600px;
  z-index:2;
}

.slide-subtitle{
  font-size:18px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#ddd;
  margin-bottom:15px;
}

.slide-title{
  font-size:48px !important;
  
  margin-bottom:20px;
  
    height: auto;
    color: #ce5a6f;
    text-decoration: none;
    white-space: normal;
    -webkit-text-stroke: 1px rgb(251, 211, 227);
    text-shadow: rgba(0, 0, 0, 0.25) 3px 6px 7px;
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 76px;
    transform-origin: 50% 50%;
    opacity: 1;
    transform: translate(0px, 0px);
    visibility: visible;
}

.slide-title span{
  color:var(--p-color);
}

.slide-text{
  font-size:18px;
  line-height:1.6;
  margin-bottom:30px;
  opacity:0.9;
}

.slide-btn{
  background:var(--p-color);
  padding:14px 40px;
  border-radius:50px;
  font-weight:600;
  color:#fff;
  transition:0.4s ease;
}

.slide-btn:hover{
  background:var(--ph-color);
  transform:translateY(-4px);
}

/* Responsive */
@media(max-width:768px){
  .slide-title{
    font-size:28px;
  }
  .slide-text{
    font-size:15px;
  }
}
 .char {
      display: inline-block;
      opacity: 0;
	  font-weight: bold;
    }
/* ===== Section ===== */
/* ===== Section ===== */
.journey-section{
  padding:100px 0;
  position:relative;
}

.section-title{
  text-align:center;
  font-size:36px;
  font-weight:700;
  color:var(--p-color);
  margin-bottom:80px;
  position:relative;
}

.section-title::after{
  content:"";
  width:80px;
  height:3px;
  background:var(--p-color);
  display:block;
  margin:12px auto 0;
}

/* ===== Timeline ===== */
.timeline{
  position:relative;
  max-width:1100px;
  margin:auto;
}

/* Center Line */
.timeline::before{
  content:"";
  position:absolute;
  top:0;
  left:50%;
  width:4px;
  height:100%;
  background:linear-gradient(to bottom, var(--p-color), var(--ph-color));
  transform:translateX(-50%);
  border-radius:4px;
}

/* Timeline Row */
.timeline-item{
  display:flex;
  justify-content:flex-end;
  position:relative;
  margin-bottom:80px;
}

/* Left Side */
.timeline-item:nth-child(odd){
  justify-content:flex-start;
}

/* Card */
.timeline-content{
  width:45%;
  background:#fff;
  padding:30px;
  border-radius:15px;
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
  transition:all 0.4s ease;
}

.timeline-content:hover{
  transform:translateY(-8px);
  box-shadow:0 25px 60px rgba(0,0,0,0.15);
}

.year-badge{
  display:inline-block;
  background:var(--p-color);
  color:#fff;
  padding:6px 14px;
  border-radius:5px;
  font-size:14px;
  margin-bottom:15px;
}

/* Icon */
.timeline-icon{
  position:absolute;
  left:50%;
  top:30px;
  transform:translateX(-50%);
  width:60px;
  height:60px;
  background:#fff;
  border:3px solid var(--p-color);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  color:var(--p-color);
  box-shadow:0 10px 25px rgba(0,0,0,0.1);
  z-index:2;
}

/* ===== Responsive ===== */
@media(max-width:768px){

  .timeline::before{
    left:20px;
  }

  .timeline-item{
    justify-content:flex-start !important;
  }

  .timeline-content{
    width:100%;
    margin-left:60px;
  }

  .timeline-icon{
    left:20px;
    transform:none;
  }

}
/* ===== CTA Section ===== */
.cta-section{
  padding:100px 0;
}

.cta-box{
  position:relative;
  overflow:hidden;
  border-radius:20px;
  padding:80px 40px;
  text-align:center;
  color:#fff;

  background:linear-gradient(135deg, #a94456, #8d2a3b, #a94456);
  background-size:300% 300%;
  animation:gradientMove 8s ease infinite;

  box-shadow:0 25px 60px rgba(0,0,0,0.2);
}

/* Animated gradient */
@keyframes gradientMove{
  0%{background-position:0% 50%;}
  50%{background-position:100% 50%;}
  100%{background-position:0% 50%;}
}

/* Soft glow overlay */
.cta-box::before{
  content:"";
  position:absolute;
  width:350px;
  height:350px;
  background:rgba(255,255,255,0.08);
  border-radius:50%;
  filter:blur(60px);
  top:-100px;
  left:-100px;
  animation:float 7s ease-in-out infinite;
}

@keyframes float{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(40px);}
}

.cta-title{
  font-size:42px;
  font-weight:700;
  margin-bottom:20px;
  color:#fff;
}

.cta-text{
  font-size:18px;
  opacity:0.9;
  margin-bottom:45px;
}

/* ===== Premium Button ===== */
.cta-btn{
  background:#fff;
  color:var(--p-color);
  font-weight:600;
  padding:15px 45px;
  border-radius:50px;
  transition:all 0.4s ease;
  position:relative;
  overflow:hidden;
}

.cta-btn:hover{
  background:var(--gold);
  color:#000;
  transform:translateY(-6px);
  box-shadow:0 15px 35px rgba(0,0,0,0.25);
}

/* Responsive */
@media(max-width:768px){
  .cta-title{ font-size:28px; }
  .cta-text{ font-size:16px; }
  .cta-box{ padding:60px 20px; }
}	


/* Section Titles */


.section-desc{
  font-size:18px;
  color: var(--text-dark);
  max-width:800px;
  margin:auto;
  text-align:center;
  opacity:0.9;
  margin-bottom:60px;
}

/* Vision / Mission Blocks */
.split-block {
  padding:80px 0;
}

.split-block img {
  border-radius:12px;
  box-shadow:0 15px 40px rgba(0,0,0,0.1);
}

.split-text h4 {
  color: var(--p-color);
  font-size:28px;
  font-weight:600;
  margin-bottom:15px;
}

.split-text p {
  font-size:16px;
  color: var(--text-dark);
  line-height:1.7;
}

/* Values Cards */
.value-card {
  background:#fff;
  border-radius:12px;
  padding:25px;
  text-align:center;
  box-shadow:0 12px 30px rgba(0,0,0,0.08);
  transition:transform 0.3s ease;
}
.value-card:hover {
  transform:translateY(-8px);
  box-shadow:0 20px 45px rgba(0,0,0,0.15);
}

.value-icon {
  font-size:42px;
  color: var(--accent);
}

.value-title {
  font-size:20px;
  font-weight:600;
  margin-top:15px;
  color: var(--p-color);
}

.value-text {
  font-size:15px;
  color: var(--text-dark);
  margin-top:10px;
  line-height:1.6;
}

@media (max-width:768px) {
  
  .section-title { font-size:28px; }
}



/* Card style */
.whyus-card{
  background:#fff;
  padding:20px 10px;
  text-align:left;
  transition:all 0.4s ease;
  border-left:2px solid var(--accent);
  border-right:2px solid var(--accent);
  border-bottom:2px solid var(--accent);
  backdrop-filter:blur(8px);
}

.whyus-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 45px rgba(0,0,0,0.4);
}

.icon-box i{
  font-size:36px;
  color:#f72c50;
 width:auto;
  margin:5px auto 20px; padding-bottom:10px
}

.card-title{
  font-size:20px;
  font-weight:600;
  margin-bottom:12px;
  color:#a94456 ;
}

.card-text{
  font-size:15px;
  color:#000;
  line-height:1.6;
}
.section-subtext{
  text-align:center;
  font-size:18px;
  opacity:0.9;
  margin-bottom:50px;
}
/* Responsive */
@media(max-width:768px){
  .icon-box i{
    font-size:30px;
    width:60px;
    height:60px;
  }
}

.whyus-section .container{
  position:relative;
  z-index:2;
}
.prospectus-modern {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fc, #eef2f7);
  text-align: center;
}



.section-title h2 {
  font-size: 34px;
  margin-bottom: 15px;
  color: #002147;
  font-weight: 700;
}

.section-title p {
  max-width: 750px;
  margin: auto;
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 50px;
}

.prospectus-card {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.prospectus-card:hover {
  transform: translateY(-5px);
}

.prospectus-image {
  position: relative;
  display: inline-block;
}

.prospectus-image img {
  max-width: 100%;
  width: 650px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #d9232d;
  color: #fff;
  padding: 8px 15px;
  font-size: 13px;
  border-radius: 20px;
}

.prospectus-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  background:var(--p-color);
  color: #fff;
  padding: 12px 26px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary:hover {
  background:var(--ph-color);
}

.btn-outline {
  border: 2px solid var(--p-color);
  color: #002147;
  padding: 10px 26px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-outline:hover {
  background: var(--ph-color);
  color:var(--p-color);
}

/* Responsive */
@media(max-width: 768px){
  .prospectus-image img{
    width: 100%;
  }

  .section-title h2{
    font-size: 26px;
  }
}
.wowbook-page-content {
	padding: 1.5em;
}
.wowbook ul {
	padding-left: 1em;
}
.book-thumb {
	height: auto;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.5)
}

#book1-trigger, #book2-trigger, #book3-trigger {
	cursor: pointer;
}
#book1-trigger:hover, #book2-trigger:hover, #book3-trigger:hover {
	background: #f8f8f8;
}

.wowbook-lightbox > .wowbook-close {
	background: transparent !important;
	border: none !important;
	color: #222 !important;
	font-size: 2.5em;
}
.wowbook-lightbox > .wowbook-close:hover {
	background: #444 !important;
	color: white !important;
	border-radius: 3px;
}


.lightbox-images1 .wowbook-book-container {
	background: #6d6b92; /* Old browsers */
	background: -moz-radial-gradient(center, ellipse cover, #ffffff 0%, #6d6b92 100%); /* FF3.6-15 */
	background: -webkit-radial-gradient(center, ellipse cover, #ffffff 0%,#6d6b92 100%); /* Chrome10-25,Safari5.1-6 */
	background: radial-gradient(ellipse at center, #ffffff 0%,#6d6b92 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.lightbox-images1 > .wowbook-close,
.lightbox-images2 > .wowbook-close {
	color: #ccc !important;
}
.lightbox-images2 .wowbook-book-container {
	background: #1E2831; /* Old browsers */
	background: -moz-radial-gradient(center, ellipse cover, #ffffff 0%, #1E2831 100%); /* FF3.6-15 */
	background: -webkit-radial-gradient(center, ellipse cover, #ffffff 0%,#1E2831 100%); /* Chrome10-25,Safari5.1-6 */
	background: radial-gradient(ellipse at center, #ffffff 0%,#1E2831 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}



.lightbox-pdf  .wowbook-book-container {
	background: #e5e5e5 url(./img/bg-lightbox-pdf.png); /* Old browsers */
	background: #e5e5e5 -moz-radial-gradient(center, ellipse cover, #ffffff 20%, #bbbbbb 100%); /* FF3.6-15 */
	background: #e5e5e5 -webkit-radial-gradient(center, ellipse cover, #ffffff 20%,#bbbbbb 100%); /* Chrome10-25,Safari5.1-6 */
	background: #e5e5e5 radial-gradient(ellipse at center, #ffffff 20%,#bbbbbb 100%); /* W3C, IE10+, FF16+, Chrome26+,Opera12+, Safari7+*/
}

.whyus-section{
  
  background:#efefef;
  padding:100px 0;
  position:relative;
  color:#fff;
}
/* Dark overlay */
.whyus-section::before{
  content:"";
  position:absolute;
  inset:0;
  /*background:rgba(0,0,0,0.5);*/
  z-index:1;
}

.whyus-section .container{
  position:relative;
  z-index:2;
}

.why_section-title{
  text-align:center;
  font-size:36px;
  font-weight:700;
  color:var(--p-color);
  margin-bottom:20px;
}

.why_section-title::after{
  content:"";
  width:80px;
  height:3px;
  background:var(--accent);
  display:block;
  margin:12px auto 0;
}

.why_section-subtext{
  text-align:center;
  font-size:18px;
  opacity:0.9;
  margin-bottom:50px;color:var(--p-color);
}

/* Card style */
.whyus-card{
  background:rgba(255,255,255,0.12);
  padding:30px 20px;
  border-radius:15px;
  text-align:center;
  transition:all 0.4s ease;
  border-top:4px solid var(--accent);
  backdrop-filter:blur(8px);
}

.whyus-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 45px rgba(0,0,0,0.4);
}

.why_icon-box{
  font-size:36px;
  color:var(--accent);
  width:70px;
  height:70px;
  border-radius:50%;
  background:var(--ph-color);
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 18px;
}

.why_card-title{
  font-size:20px;
  font-weight:600;
  margin-bottom:12px;
  color:var(--p-color);;
}

.why_card-text{
  font-size:15px;
  color:#000;
  line-height:1.6;
}

/* Responsive */
@media(max-width:768px){
  .why_icon-box{
    font-size:30px;
    width:60px;
    height:60px;
  }
}

.map-btn{
	margin-top:30px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:var(--p-color);
  color:#fff;
  padding:12px 28px;
  border-radius:50px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s ease;
  box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

.map-btn:hover{
  background:var(--ph-color);
  transform:translateY(-3px);
  box-shadow:0 12px 25px rgba(0,0,0,0.25);
}

/* Wrapper */
.gallery-nav-wrapper{
  background:#f1f1f1;
  padding:15px;
  border-radius:20px;
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

/* UL */
.gallery-nav{
  display:flex;
  flex-wrap:wrap;
  gap:25px;
  list-style:none;
  padding:0;
  margin:0;
  align-items:center;
  height:40px;
}

/* Links */
.gallery-nav li a{
  text-decoration:none;
  font-weight:600;
  color:var(--p-color);
  padding:12px 22px;
  border-radius:12px;
  transition:0.3s ease;
  position:relative;
}

/* Hover */
.gallery-nav li a:hover{
  background:rgba(169,68,86,0.1);
}

/* Active */
.gallery-nav li a.active{
  background:var(--p-color);
  color:#fff;
  box-shadow:0 6px 15px rgba(169,68,86,0.3);
}
/* Card */
.gallery-card{
  position:relative;
  overflow:hidden;
  border-radius:15px;
  cursor:pointer;
  box-shadow:0 10px 25px rgba(0,0,0,0.1);
  transition:0.4s ease;
}

.gallery-card img{
  width:100%;
  height:300px;
  object-fit:cover;
  transition:0.4s ease;
}

/* Hover zoom */
.gallery-card:hover img{
  transform:scale(1.08);
}

/* Overlay */
.gallery-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  opacity:0;
  transition:0.4s ease;
  padding:20px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.gallery-card:hover .gallery-overlay{
  opacity:1;
}

/* Category badge */
.category-badge{
  align-self:flex-end;
  background:var(--p-color);
  color:#fff;
  padding:6px 14px;
  border-radius:20px;
  font-size:13px;
  font-weight:600;
}

/* Bottom content */
.overlay-content{
  color:#fff;
}

.image-title{
  font-size:18px;
  margin-bottom:10px;
}

/* Button */
.enlarge-btn{
  border-radius:30px;
  padding:6px 15px;
}
.modal {
    z-index: 9999999999;
}

/* Card */
.hiring-card{
  background:var(--accent);   /* Soft golden */
  padding:40px 35px;
  border-radius:20px;
  box-shadow:0 15px 40px rgba(0,0,0,0.1);
  transition:0.4s ease;
}

.hiring-card:hover{
  transform:translateY(-6px);
  box-shadow:0 25px 50px rgba(0,0,0,0.2);
}

/* Title */
.job-title{
  font-weight:700;
  margin-bottom:20px;
  color:var(--p-color);
}

/* Job Type Badge */
.job-type{
  display:inline-block;
  background:#f5e6b8;
  color:#a94456;
  padding:8px 20px;
  border-radius:30px;
  font-weight:600;
  margin-bottom:20px;
   align-self: center;
}

/* Description */
.job-desc{
  font-size:16px;
  line-height:1.8;
  color:#222;
  margin-bottom:25px;
  
}

/* Button */
.apply-btn{
  background:var(--p-color);
  color:#fff;
  padding:10px 30px;
  border-radius:30px;
  font-weight:600;
  transition:0.3s;
}

.apply-btn:hover{
  background:var(--ph-color);
}

.placement-card{
  position:relative;
  border-radius:30px;
  padding:30px 25px;
  text-align:center;
  overflow:hidden;
  transition:0.4s ease;

  border:12px solid #f3f3f3;

  background:
    radial-gradient(circle at center, #fff6d5 0%, #f0d7a4 40%, #d9b870 100%);
  
  box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

/* Soft Inner Glow */
.placement-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 50% 30%, rgba(255,255,255,0.6), transparent 10%);
  pointer-events:none;
}

/* Sparkle Overlay */
.placement-card::after{
  content:"";
  position:absolute;
  inset:0;
  background-image:url("https://www.transparenttextures.com/patterns/stardust.png");
  opacity:0.4;
  pointer-events:none;
}

.placement-card:hover{
  transform:translateY(-8px);
  box-shadow:0 30px 60px rgba(0,0,0,0.2);
}

/* College Logo */
.college-logo img{
  max-height:50px;
  margin-bottom:15px;
}

/* Congratulations */
.congrats-text{
  font-weight:700;
  color:#2b2b5e;
  margin-bottom:5px;
}

.sub-text{
  font-size:14px;
  color:#555;
  margin-bottom:20px;
}

/* Student Photo */
.student-photo{
  width:110px;
  height:110px;
  margin:0 auto 15px;
  border-radius:50%;
  border:5px solid #fff;
  overflow:hidden;
  box-shadow:0 10px 20px rgba(0,0,0,0.15);
}

.student-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* Student Name */
.student-name{
  font-weight:600;
  margin-bottom:10px;
}

/* Company Logo */
.company-logo img{
  max-height:25px;
  margin:10px 0;
}

/* Course Badge */
.course-batch{
  display:inline-block;
  background:#2b2b5e;
  color:#fff;
  padding:6px 15px;
  border-radius:20px;
  font-size:13px;
  margin-top:10px;
}

/* Package */
.package-box{
  margin-top:15px;
  background:#2b2b5e;
  color:#fff;
  font-weight:700;
  font-size:20px;
  padding:8px 20px;
  border-radius:25px;
}



.section-title{
  font-weight:700;
  border-left:4px solid #a94456;
  padding-left:10px;
}

.stats-section{
  background: linear-gradient(135deg,#2b2b5e,#1c1c3c);
}

.stat-box i{
  font-size:40px;
  margin-bottom:10px;
}

.stat-box h2{
  font-weight:700;
  font-size:32px;
}

.process-box{
  background:#fff;
  padding:25px;
  border-radius:15px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.process-box i{
  font-size:35px;
  color:#a94456;
  margin-bottom:10px;
}

.recruiter-box{
  background:#f9f9f9;
  padding:20px;
  border-radius:10px;
  font-weight:600;
  transition:0.3s;
}

.recruiter-box:hover{
  background:#a94456;
  color:#fff;
}

.section-title{
  font-weight:700;
  border-left:4px solid #a94456;
  padding-left:10px;
}

.policy-card{
  background:#fff;
  padding:30px;
  border-radius:20px;
  text-align:center;
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
  transition:0.3s;
}

.policy-card:hover{
  transform:translateY(-8px);
}

.policy-card i{
  font-size:40px;
  color:#a94456;
  margin-bottom:15px;
}

.timeline{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
}

.timeline-step{
  width:18%;
  text-align:center;
}

.timeline-step span{
  display:inline-block;
  background:#a94456;
  color:#fff;
  width:50px;
  height:50px;
  line-height:50px;
  border-radius:50%;
  font-weight:bold;
  margin-bottom:10px;
}

.bg_stat {
	background:var(--p-color);
	padding:20px; text-align:center; color:#fffl
}
.bg_stat h2, .bg_stat p {color:#fff}
.bg_stat h2 {font-size:58px}

.visitor-card{
  background:var(--accent);;
  padding:30px;
  border-radius:10px;
  text-align:center;
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
  transition:0.3s;
}

.visitor-card:hover{
  transform:translateY(-8px);
}
.visitor-name {color:#fff;font-size:20px;font-weight:700;color:var(--ph-color)}
.visitor-position p {color:#fff}

.student-feedback{
  background: linear-gradient(135deg,#f9f9f9,#ffffff);
}

/* Section Title */
.feedback-title{
  font-weight:700;
  color:#a94456;
}

.feedback-card{
  position:relative;
  background:#fff;
  border-radius:20px;
 padding:90px 25px 30px;
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
  transition:0.4s ease;
  overflow:visible;   /* VERY IMPORTANT */
  width:100%;
}
.studentimg{
  width:110px;
  height:110px;
  margin:-55px auto 20px;   /* Pulls image upward */
  border-radius:50%;
  background:#fff;
  padding:6px;
  box-shadow:0 8px 20px rgba(0,0,0,0.15);
}
.studentimg img{
  width:100%;
  height:100%;
  border-radius:50%;
  object-fit:cover;
}
.feedback-card:hover{
  transform:translateY(-8px);
  box-shadow:0 25px 50px rgba(0,0,0,0.15);
}

/* Image Circle */
.student-img{
   position:absolute;
  top:0;
  left:50%;
  transform:translate(-50%, -50%);
  width:110px;
  height:110px;
  border-radius:50%;
  background:#fff;
  padding:6px;
  box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

.student-img img{
  width:100%;
  height:100%;
  border-radius:50%;
  object-fit:cover;
}

/* Content */
.feedback-body p{
  font-size:15px;
  line-height:1.7;
  color:#555;
  margin-bottom:20px;
}

.student-info h5{
  margin-bottom:4px;
  font-weight:600;
}

.student-info span{
  font-size:14px;
  color:#a94456;
}
