/* ===== HERO SECTION ===== */

.hero-section {
    padding: 0 0;
    background: #f6f8f7;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* LEFT */

.hero-left {
    flex: 1;
}

.hero-left h1 {
    font-family: 'Faculty Glyphic', serif;
    font-size: 56px;
    font-weight: 400;
    line-height: 1.2;
    color: #2e3f3c;
}

.hero-line {
    width: 100%;
    height: 2px;
    background: #274341;
    margin: 30px 0 300px 0;
}


.hero-left p {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    color: #6C7675;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: #2E6A66;
    padding: 14px 26px;
    text-decoration: none;
    font-family: 'Inter';
}
.btn-primary,
.btn-primary:visited,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    color: #fff;
}

.btn-outline {
	font-size:16px;
    border: 3px solid #2E6A66;
    padding: 14px 26px;
    text-decoration: none;
    color: #2E6A66;
    font-family: 'Inter';
}

/* RIGHT */

.hero-right {
    flex: 1;
    position: relative;
}

.hero-right img {
    width: 100%;
    display: block;
}

.hero-card {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #1c4c45;
    padding: 30px;
    width: 75%;
    color: #fff;
}

.hero-card .date {
    font-size: 14px;
    opacity: 0.8;
    font-family: 'Inter';
}

.hero-card h4 {
    font-family: 'Faculty Glyphic', serif;;
    font-size: 24px;
    margin: 10px 0;
}

.hero-card a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

/* circle + arrow */
.hero-card a::after {
    content: "→";
    width: 34px;
    height: 34px;
    border: 1.5px solid #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1;
    transition: all 0.3s ease;
}

/* hover effect */
.hero-card a:hover::after {
    background: #fff;
    color: #2e5c55; /* or #fff if you want white */
}
.hero-card a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.hero-card a:hover {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}
	
    @media (max-width: 768px) {
		
   .hero-section {
    padding: 20px 0;
    background: #f6f8f7;
}

    /* STACK SECTION */
    .hero-container {
        flex-direction: column;
        gap: 24px;
    }

    /* HEADING FIRST */
    .hero-left {
        order: 1;
        text-align: center;
    }

    .hero-left h1 {
        font-size: 34px;
        line-height: 1.3;
    }

    /* IMAGE SECOND */
    .hero-right {
        order: 2;
        position: relative;
        width: 100%;
    }

    .hero-right img {
        width: 100%;
        border-radius: 14px;
        display: block;
    }

    /* HERO CARD – INSIDE IMAGE (BOTTOM LEFT) */
    .hero-card {
        position: absolute;
        bottom: 12px;
        left: 12px;
        width: calc(100% - 24px);
        padding: 16px;
        border-radius: 12px;
        background: #1c4c45;
    }

    .hero-card h4 {
        font-size: 15px;
        line-height: 1.4;
    }

    /* DESCRIPTION THIRD */
    .hero-left p {
        margin-top: 10px;
        font-size: 15px;
        text-align: center;
    }

    /* BUTTONS FOURTH – 1 ROW */
    .hero-buttons {
        display: flex;
        gap: 12px;
        justify-content: center;
        margin-top: 16px;
    }

    .hero-buttons a {
        flex: 1;
        max-width: 160px;
        padding: 12px 0;
        font-size: 14px;
        text-align: center;
    }

    /* REMOVE DESKTOP SPACING KILLER */
    .hero-line {
        display: none;
    }
}


/* 2nd section */

.welcome-section {
    background: #eef2f1;
    padding: 80px 0;
}

.welcome-container {
    display: flex;
    align-items: center;
    gap: 90px;
}

.welcome-image {
    flex: 1;
}

.welcome-image img {
    width: 100%;
    height: auto;
    display: block;
}

.welcome-content {
    flex: 1;
}

.welcome-content h2 {
    font-family: 'Faculty Glyphic', serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.3;
    color: #2e3f3c;
}

.welcome-line {
    width: 100%;
    height: 2px;
    background: #aebdb9;
    margin: 30px 0 120px;
}

.welcome-content p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #5c6b67;
    margin-bottom: 35px;
}

.btn-outline-green {
    display: inline-block;
    padding: 14px 28px;
    border: 2px solid #1c4c45;
    color: #1c4c45;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: 0.3s ease;
}

.btn-outline-green:hover {
    background: #1c4c45;
    color: #ffffff;
}
@media (max-width: 789px) {

    .welcome-section {
        padding: 70px 0;
    }

    .welcome-container {
        flex-direction: column;
        gap: 40px;
    }

    .welcome-content {
        text-align: center;
    }

    .welcome-content h2 {
        font-size: 26px;
        line-height: 1.4;
    }

    .welcome-line {
        width: 70%;
        margin: 20px auto;
    }

    .welcome-content p {
        font-size: 14px;
        line-height: 1.7;
    }

}

/* 3rd section */

.vision-section {
    background: #fff;
    padding: 80px 0;
}

.vision-heading h2 {
    font-family: 'Faculty Glyphic', serif;
    font-size: 40px;
    font-weight: 400;
    color: #2e3f3c;
    margin-bottom: 60px;
}

.vision-cards {
    display: flex;
    gap: 40px;
}

.vision-card {
    background: #F6F8F8;
    padding: 40px 30px;
    flex: 1;
}

.vision-card img {
    width: 40px;
    margin-bottom: 20px;
}

.vision-card h3 {
    font-family: 'Faculty Glyphic', serif;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #2e3f3c;
}

.vision-card p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #5c6b67;
}
@media (max-width: 789px) {

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

    .vision-heading h2 {
        font-size: 26px;
        margin-bottom: 40px;
        text-align: left;
    }

    .vision-cards {
        flex-direction: column;
        gap: 25px;
    }

    .vision-card {
        padding: 30px 25px;
    }

    .vision-card img {
        width: 35px;
    }

}
/* 4th section */
.achievement-section {
    background: #2f4f49;
    padding: 80px 0;
    color: #ffffff;
}

.achievement-heading {
    text-align: center;
    font-family: 'Faculty Glyphic', serif;
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 80px;
}

.achievement-grid {
    display: flex;
    align-items: center;
    justify-content: center;
}

.achievement-item {
    flex: 1;
    text-align: center;
}

.achievement-item h3 {
    font-family: 'Faculty Glyphic', serif;
    font-size: 80px;
    font-weight: 500;
    margin-bottom: 15px;
}

.achievement-item p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.85;
}

/* Vertical Divider */
.achievement-divider {
    width: 1px;
    height: 120px;
    background: rgba(255,255,255,0.3);
}
@media (max-width: 789px) {

    .achievement-section {
        padding: 80px 0;
    }

    .achievement-heading {
        font-size: 26px;
        margin-bottom: 50px;
    }

    .achievement-grid {
        flex-direction: column;
        gap: 40px;
    }

    .achievement-divider {
        display: none;
    }

    .achievement-item h3 {
        font-size: 42px;
    }

}
/*5th section  */
/* ===================================
   5TH SECTION - PROGRAMS
=================================== */

.program-section {
    background: #f3f4f4;
    padding: 80px 0;
}

/* ===== HEADER ROW ===== */

.program-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.program-title h2 {
    font-family: 'Faculty Glyphic', serif;
    font-size: 40px;
    font-weight: 400;
    color: #2e3f3c;
    line-height: 1.3;
}

.program-description {
    max-width: 450px;
}

.program-description p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #5c6b67;
}

/* ===== GRID ===== */

.program-grid {
    display: flex;
    gap: 25px;
}

.program-card {
    position: relative;
    flex: 1;
    overflow: hidden;
}

/* Image */

.program-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

/* Image zoom hover */

.program-card:hover img {
    transform: scale(1.05);
}

/* ===== OVERLAY ===== */

.program-overlay {
    position: absolute;
    inset: 0;
    padding: 30px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    background: linear-gradient(
        to top,
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.15)
    );

    color: #ffffff;
}

/* Top content */

.program-level {
    font-size: 12px;
    font-family: 'Inter', sans-serif;
    margin-bottom: 8px;
    display: block;
}

.program-overlay h3 {
    font-family: 'Faculty Glyphic', serif;
    font-size: 28px;
    font-weight: 500;
}

/* Button */

.program-btn {
    display: inline-block;
    padding: 10px 20px;
/*     border: 1px solid #ffffff; */
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.program-btn:hover {
    background: #ffffff;
    color: #000000;
}
@media (max-width: 789px) {

    .program-section {
        padding: 70px 0;
    }

    .program-header {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
    }

    .program-title h2 {
        font-size: 26px;
    }

    .program-description {
        max-width: 100%;
    }

    .program-grid {
        flex-direction: column;
        gap: 20px;
    }

    .program-card img {
        height: 300px;
    }

}
/*6th section  */
/* =========================
   CAMPUS SECTION
========================= */

.campus-section {
    padding: 4px 0 80px;
    background: #f5f5f5;
    text-align: center;
}

.campus-heading {
    font-family: 'Faculty Glyphic', serif;
    font-size: 40px;
    margin-bottom: clamp(100px, 22vw, 350px);
    position: relative;
    z-index: 2;
}


/* =========================
   SLIDER WRAPPER
========================= */

.campus-slider-wrapper {
    position: relative;
    width: 100%;
    min-height: 250px;
    margin: 0 auto;
    overflow: visible;
}

/* =========================
   TRACK (DESKTOP RESET)
========================= */

.campus-track {
    position: relative;
    width: 100%;
    height: 100%;
}

/* =========================
   SLIDES (DESKTOP)
========================= */

.campus-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    transition: all 0.6s ease;
}

/* CENTER SLIDE */

.campus-slide.center {
    transform: translate(-50%, -50%);
    z-index: 3;
}

.campus-slide.center img {
    width: 520px;
    height: 520px;
}

.campus-slide.center p {
    font-size: 24px;
    color: #000;
}

/* LEFT SLIDE */

.campus-slide.left {
    transform: translate(-220%, -50%);
    z-index: 2;
}

.campus-slide.left img {
    width: 300px;
    height: 320px;
}

.campus-slide.left p {
    font-size: 24px;
    color: #000;
}

/* RIGHT SLIDE */

.campus-slide.right {
    transform: translate(120%, -50%);
    z-index: 2;
}

.campus-slide.right img {
    width: 300px;
    height: 320px;
}

.campus-slide.right p {
    font-size: 24px;
    color: #000;
}

/* =========================
   ARROWS (DESKTOP)
========================= */

.campus-arrow {
    position: absolute;
    top: 0%;
    transform: translateY(-50%);
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: #d16b2b;
    z-index: 5;
}

.campus-arrow:hover,
.campus-arrow:focus,
.campus-arrow:active {
    background: transparent;
    outline: none;
    box-shadow: none;
    color: #d16b2b;
}

/* Arrow positions */

.campus-prev {
    left: calc(50% - 300px);
}

.campus-next {
    left: calc(50% + 260px);
}

/* =========================
   BUTTON
========================= */

.campus-btn {
    margin-top: 50px;
}

.btn-outline-green1 {
    display: inline-block;
    padding: 14px 28px;
    border: 2px solid #2E6A66;
    color: #2E6A66;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: 0.3s ease;
}

.btn-outline-green1:hover,
.btn-outline-green1:focus,
.btn-outline-green1:active {
    background: transparent;
    outline: none;
    box-shadow: none;
}

/* =========================
   MOBILE SLIDER
========================= */

@media (max-width: 768px) {

    .campus-slider-wrapper {
        overflow: hidden;
        min-height: auto;
    }

    .campus-slider {
        width: 100%;
        overflow: hidden;
    }
	.campus-heading {
        font-size: 30px;
        margin-bottom: 20px;
    }

    /* TRACK */

    .campus-track {
        display: flex;
        transition: transform 0.4s ease;
    }

    /* SLIDES */

    .campus-slide {
        position: relative !important;
        flex: 0 0 100%;
        width: 100%;
        left: 0;
        top: 0;
        transform: none !important;
        text-align: center;
    }

    .campus-slide img {
        width: 100%;
        height: auto;
        display: block;
    }

    /* Disable desktop states */

    .campus-slide.left,
    .campus-slide.center,
    .campus-slide.right {
        transform: none !important;
    }

    /* ARROWS (MOBILE) */

    .campus-arrow {
		top: 40%;
        width: 38px;
        height: 38px;
        font-size: 22px;
        background: rgba(255,255,255,0.9);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
    }

    .campus-prev {
        left: 8px;
        right: auto;
    }

    .campus-next {
        right: 8px;
        left: auto;
    }
}


/* 7th section */

.facilities-section {
    background: #eef2f1;
    padding: 60px 0;
}

.facilities-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.facilities-left h2 {
    font-family: 'Faculty Glyphic', serif;
    font-size: 40px;
}

.facilities-right {
    max-width: 500px;
}
.facilities-right p {
    font-size:18px;
	color:#000000;
}
/* Tabs */

.facilities-tabs {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.tab-btn {
	border-radius: 0;
    padding: 12px 20px;
    border: 1px solid #2e5c55;
    background: transparent;
    cursor: pointer;
    font-size: 13px;
	color:#2E6A66;
}

.tab-btn.active {
	font-size:14px;
    background: #2e5c55;
    color: #fff;
}
.tab-btn:hover,
.tab-btn:focus {
    background: #2E6A66;
    color: #fff !important;
    outline: none;
}
/* Content */

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}
.tab-text {
    max-width: 450px;   /* control readable width */
}
.tab-text h3 {
	 font-family: 'Faculty Glyphic', serif;
    font-size: 28px;
    margin-bottom: 15px;
}
.tab-text p{
	font-size:18px;
}
.tab-inner {
    background: #ffffff;
    padding: 50px;
    display: flex;
    gap: 60px;
    align-items: center;
}


.tab-image img {
    width: 450px;
    height: auto;
}


@media (max-width: 789px) {

    .facilities-header {
        flex-direction: column;
        gap: 20px;
    }

    .tab-inner {
        flex-direction: column;
    }

    .tab-image img {
        width: 100%;
    }

    .facilities-tabs {
        flex-direction: column;
    }

}
/* 8th section */
.life-section {
    padding: 60px 0;
    background: #f5f5f5;
}

.life-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.life-header h2 {
    font-size:40px;
	color:#000000;
}

.life-slider-wrapper {
    overflow: hidden;
}

.life-slider {
    display: flex;
    gap: 30px;
    transition: transform 0.6s ease;
}

/* 👇 Important part */

.life-card {
    flex: 0 0 46%;   /* 2 full cards */
    position: relative;
	
}

/* This creates partial 3rd preview */
/* .life-slider-wrapper {
    padding-right: 8%;
} */

.life-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

/* Overlay */
.life-overlay {
	margin-bottom: 6px;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 80%;
	background: #2e5c55;
	padding: 25px;
	color: #fff;
	font-family: 'Faculty Glyphic', serif;
	font-size: 14px;
}

.life-overlay a {
	color: #fff;
	font-family: 'Faculty Glyphic', serif;
	font-size: 14px;
	text-decoration: none;
}
.life-overlay a:hover{
	color:#fff;
	font-family:'Faculty Glyphic', serif;
	font-size:14px;
}

/* arrow link */
.arrow-link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: #fff;
}

/* circle + arrow */
.arrow-link::after {
	content: "→";
	width: 34px;
	height: 34px;
	border: 1.5px solid #fff;   /* ✅ white border */
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	line-height: 1;
	transition: all 0.3s ease;
}

/* hover */
.arrow-link:hover::after {
	background: #fff;
	color: #2e5c55;
}
.btn-life-green {
	margin-top:30px;
    display: inline-block;
    padding: 14px 28px;
    border: 2px solid #1c4c45;
    color: #2E6A66;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: 0.3s ease;
}

.btn-life-green:hover {
    background: #2E6A66;
    color: #ffffff;
}
.life-arrows button {
    all: unset;
    cursor: pointer;
    font-size: 28px;
    line-height: 1;              /* 🔑 important */
    color: #2E6A66;
    transition: color 0.3s ease;
    display: inline-flex;        /* 🔑 */
    align-items: center;
    justify-content: center;
    white-space: nowrap;         /* 🔑 prevents breaking */
}

.life-arrows button:hover,
.life-arrows button:focus,
.life-arrows button:active {
    background: transparent !important;
    box-shadow: none !important;
    outline: none !important;
    color: #1f4f4c;   /* only color change */
}
@media (max-width: 789px) {

    .life-slider-wrapper {
        padding-right: 0;
    }

    .life-card {
        flex: 0 0 100%;
    }

    .life-card img {
        height: 300px;
    }

}
/* 9th faq */
.cps-faq-section {
  padding: 80px 0;   /* remove 20px */
}
.cps-faq-wrapper {
  background: #3d746d;
  border-radius: 10px;
  padding: 60px;
  width: 1200px;       /* match your global layout width */
  max-width: 90%;      /* responsive same as others */
  margin: 0 auto;      /* center it */
  display: flex;
  gap: 60px;
  color: #fff;
}

.cps-faq-left {
  flex: 1;
}

.cps-faq-left h2 {
	font-family:'Faculty Glyphic', serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.3;
}

.cps-faq-right {
  flex: 2;
}

.cps-faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding: 18px 0;
}

.cps-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
}

.cps-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 18px;
  margin-top: 10px;
  color: #e4f1ee;
}

/* Only one open style */
.cps-faq-item.active .cps-faq-answer {
  max-height: 200px;
}

/* Premium Arrow Icon */
.cps-icon {
  width: 18px;
  height: 18px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

/* Rotate when active */
.cps-faq-item.active .cps-icon {
  transform: rotate(-135deg);
}

/* Responsive */
@media (max-width: 768px) {
  .cps-faq-wrapper {
    flex-direction: column;
    padding: 40px 25px;
  }

  .cps-faq-left h2 {
    font-size: 28px;
  }
}
