.about-title{
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.about-intro{
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
  opacity: 0.9;
}

.about-list{
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.about-list li{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15.5px;
}

.about-list i{
  font-size: 18px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* Image polish */
.about-image{
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: transform .4s ease;
}

.about-image img{
  transition: transform .6s ease;
}

.about-image:hover img{
  transform: scale(1.05);
}

/* Button refinement */
.read-more{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s ease;
}

.read-more i{
  transition: transform .3s ease;
}

.read-more:hover i{
  transform: translateX(6px);
}
.modern-heading{
  font-size: 36px;
  font-weight: 700;
  color: #111;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.modern-heading::after{
  content: "";
  position: absolute;
  width: 60px;
  height: 4px;
  background: #000;
  bottom: -10px;
  left: 0;
  border-radius: 2px;
}
  .course-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .course-img {
    width: 100%;
    height: 220px; /* fixed height for uniformity */
    object-fit: cover;
    border-radius: 6px;
  }
  .trainer-img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 8px;
  }
  
  .lp-section {
    padding: 100px 60px 120px;
    max-width: 1440px;
    margin: 0 auto;
    background: #f7f4ef;
    font-family:  var(--default-font);
    color: #0e0e0e;
    --lp-gold: #d81731;
    --lp-gold-lt: #d4b97a;
    --lp-sand: #e8e0d0;
    --lp-muted: #6b6456;
    --lp-gap: 3px;
  }

  /* SECTION HEADER */
  .lp-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 80px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--lp-sand);
  }
  .lp-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--lp-gold);
    margin-bottom: 14px;
  }
  .lp-title {
    font-family:  var(--default-font);
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 300;
    line-height: 1.0;
    letter-spacing: -0.01em;
    color: #0e0e0e;
  }
  .lp-title em {
    font-style: italic;
    color: var(--lp-gold);
  }
  .lp-subtitle {
    max-width: 340px;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--lp-muted);
    text-align: right;
  }

  /* PROGRAM BLOCK */
  .lp-block {
    margin-bottom: 64px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .lp-block.lp-visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ROW HEADER */
  .lp-row-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 10px;
  }
  .lp-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 400;
    color: maroon;
    letter-spacing: 0.08em;
  }
  .lp-row-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #0e0e0e;
    line-height: 1.1;
  }
  .lp-tag {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #f7f4ef;
    background: var(--lp-gold);
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
  }
  .lp-desc {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75;
    color: black;
    max-width: 680px;
    margin-bottom: 10px;
  }
  .lp-rule {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, var(--lp-gold) 0%, var(--lp-sand) 40%, transparent 100%);
    margin-bottom: 10px;
  }

  /* IMAGE GRID */
  .lp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--lp-gap);
  }
  .lp-cell {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
  }
  .lp-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.65s ease;
    filter: saturate(0.88) brightness(0.97);
  }
  .lp-cell:hover img {
    transform: scale(1.055);
    filter: saturate(1.05) brightness(1.02);
  }
  .lp-cell::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(184,154,94,0.12) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
  }
  .lp-cell:hover::after { opacity: 1; }
  .lp-cell::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1.5px solid var(--lp-gold-lt);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
    pointer-events: none;
  }
  .lp-cell:hover::before { opacity: 0.6; }
  .lp-img-label {
    position: absolute;
    bottom: 10px;
    left: 12px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.92);
    background: rgba(14,14,14,0.45);
    backdrop-filter: blur(6px);
    padding: 3px 9px;
    border-radius: 2px;
    opacity: 0;
    transform: translateY(5px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    z-index: 3;
  }
  .lp-cell:hover .lp-img-label { opacity: 1; transform: translateY(0); }

  /* FOOTER */
  .lp-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 60px;
    padding-top: 28px;
    border-top: 1px solid var(--lp-sand);
  }
  .lp-footer-note {
    font-size: 12px;
    font-weight: 300;
    color: var(--lp-muted);
    letter-spacing: 0.04em;
  }
  .lp-footer-cta {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--lp-gold);
    text-decoration: none;
    border-bottom: 1px solid var(--lp-gold-lt);
    padding-bottom: 2px;
    transition: color 0.3s, border-color 0.3s;
  }
  .lp-footer-cta:hover { color: #0e0e0e; border-color: #0e0e0e; }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    .lp-section { padding: 60px 24px 80px; }
    .lp-header { flex-direction: column; align-items: flex-start; gap: 16px; }
    .lp-subtitle { text-align: left; }
  }
  @media (max-width: 600px) {
    .lp-grid { gap: 2px; }
    .lp-row-header { grid-template-columns: auto 1fr; }
    .lp-tag { display: none; }
  }
  /* SECTION SPACING */
.student-life{
  padding: 80px 0;
}

/* IMAGE STYLE */
.student-life-image{
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.student-life-image img{
  transition: transform .6s ease;
}

.student-life-image:hover img{
  transform: scale(1.05);
}

/* SMALL BADGE */
.section-badge{
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(0,0,0,0.05);
  margin-bottom: 15px;
}

/* TITLE */
.student-title{
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: -0.4px;
}

/* TEXT */
.student-text{
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
  opacity: 0.9;
}

/* LIST */
.student-list{
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.student-list li{
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15.5px;
}

.student-list i{
  font-size: 18px;
  margin-top: 3px;
}

/* BUTTON */
.student-btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s ease;
}

.student-btn i{
  transition: transform .3s ease;
}

.student-btn:hover i{
  transform: translateX(5px);
}

/* MOBILE */
@media (max-width:768px){

  .student-title{
    font-size:26px;
  }

  .student-life{
    padding:60px 0;
  }

}
 .value-icon{
font-size:32px;
color:#ffffff;
margin-bottom:10px;
display:block;
}
  .strategic-framework{
background:#fafafa;
padding:80px 20px;
font-family: "Segoe UI", sans-serif;
}

.container{
max-width:1100px;
margin:auto;
}

.ribbon{
display:inline-block;
background:#b60000;
color:white;
font-size:13px;
font-weight:700;
letter-spacing:1px;
padding:6px 18px;
border-radius:20px;
margin-bottom:15px;
}

.motto-section{
text-align:center;
margin-bottom:50px;
}

.motto-text{
font-size:40px;
font-family:"Georgia", serif;
color:#111;
margin-top:10px;
font-style:italic;
letter-spacing:0.5px;
}

/* Vision Mission */

.vision-mission{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
margin-bottom:50px;
}

.box{
background:white;
padding:30px;
border-top:4px solid #b60000;
border-radius:6px;
box-shadow:0 8px 25px rgba(0,0,0,0.05);
transition:all .3s ease;
}

.box:hover{
transform:translateY(-4px);
box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

/* Section Titles */

.section-title{
text-align:center;
font-weight:700;
font-size:14px;
letter-spacing:2px;
color:#b60000;
margin:50px auto 25px;
position:relative;
display:inline-block;
padding-bottom:8px;
}

.section-title::after{
content:"";
display:block;
width:40px;
height:3px;
background:#b60000;
margin:8px auto 0;
border-radius:2px;
}

/* Core Values */

.values-grid{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:20px;
margin-top:25px;
}

.value{
background:white;
padding:25px 20px;
text-align:center;
border-radius:10px;
box-shadow:0 8px 25px rgba(0,0,0,0.06);
transition:all .3s ease;
border-bottom:3px solid transparent;
}

.value:hover{
transform:translateY(-6px);
border-bottom:3px solid #b60000;
box-shadow:0 15px 35px rgba(0,0,0,0.1);
}

/* Icon */

.value-icon{
font-size:30px;
color:#b60000;
margin-bottom:12px;
}

/* Title */

.value h4{
color:#222;
font-weight:600;
margin-bottom:6px;
}

/* Text */

.value p{
color:#666;
font-size:14px;
}

/* Philosophy */

.philosophy{
text-align:center;
max-width:850px;
margin:auto;
font-size:18px;
line-height:1.7;
color:#444;
}


/* Pillars */

.pillar{
background:white;
padding:28px;
border-radius:8px;
border-top:4px solid #b60000;
box-shadow:0 8px 20px rgba(0,0,0,0.05);
transition:all .3s ease;
}

.pillar:hover{
transform:translateY(-5px);
box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

/* Responsive */

@media(max-width:900px){

.values-grid{
grid-template-columns:repeat(2,1fr);
}

.pillars-grid{
grid-template-columns:1fr 1fr;
}

.vision-mission{
grid-template-columns:1fr;
}

}
/* Pillars Grid */

.pillars-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
margin-top:30px;
}


/* Pillar Card */

.pillar{
background:#fff;
padding:35px 25px;
border-radius:14px;
text-align:center;
box-shadow:0 15px 40px rgba(0,0,0,0.06);
transition:all .35s ease;
position:relative;
overflow:hidden;
}


/* Hover effect */

.pillar:hover{
transform:translateY(-8px);
box-shadow:0 25px 60px rgba(0,0,0,0.1);
}


/* Icon Circle */

.pillar-icon{
width:60px;
height:60px;
margin:auto;
margin-bottom:18px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
background:linear-gradient(135deg,#b60000,#ff4d4d);
color:white;
font-size:26px;
box-shadow:0 10px 20px rgba(182,0,0,0.25);
}


/* Title */

.pillar h3{
font-size:18px;
font-weight:700;
margin-bottom:10px;
color:#222;
}


/* Text */

.pillar p{
font-size:14.5px;
line-height:1.7;
color:#666;
max-width:260px;
margin:auto;
}
/* Existing tablet responsiveness */
@media(max-width:900px){
  .pillars-grid{
    grid-template-columns:1fr 1fr;
  }
}

/* NEW: Mobile responsiveness */
@media(max-width:600px){
  .pillars-grid{
    grid-template-columns:1fr;
  }

  .pillar{
    padding:25px 20px;
  }

  .pillar h3{
    font-size:16px;
  }

  .pillar p{
    font-size:14px;
  }
}

/* social media styles */


/* ===== SOCIAL SECTION ===== */
.social-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

/* Card */
.social-card {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.09);
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.13);
}

/* Header */
.social-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}

.facebook-header {
  background: linear-gradient(135deg, #1877f2, #0a5dc2);
}

.instagram-header {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

/* Platform Badge */
.platform-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.platform-badge i {
  font-size: 22px;
}

.platform-badge span {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* Follow Button */
.follow-btn {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  text-decoration: none;
  padding: 7px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid rgba(255,255,255,0.5);
  transition: background 0.2s;
  white-space: nowrap;
}

.follow-btn:hover {
  background: rgba(255, 255, 255, 0.35);
  color: #fff;
}

/* Embed Wrapper */
.social-embed-wrapper {
  flex: 1;
  background: #f0f2f5;
  overflow: hidden;
}

.social-embed-wrapper iframe {
  display: block;
  width: 100%;
}

/* Footer */
.social-card-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #fff;
  border-top: 1px solid #f0f0f0;
  font-size: 13px;
  color: #888;
}

.social-card-footer i {
  font-size: 15px;
  color: #aaa;
}