@import url('https://fonts.googleapis.com/css2?family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&display=swap');

* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  scroll-behavior: smooth;

}


p {
  font-size: 18px !important;
  font-weight: 300 ! important;
}


.philosopher-regular {
  font-family: "Philosopher", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.philosopher-bold {
  font-family: "Philosopher", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.philosopher-regular-italic {
  font-family: "Philosopher", sans-serif;
  font-weight: 400;
  font-style: italic;
}



.top-bar {
  color: white;
  text-align: center;
  display: grid;
  grid-template-columns: 40% 60%;
  align-items: center;
  background-color: white;


}

.social-warper {
  text-decoration: none;
  color: var(--background-color);
  background-color: var(--secondary-color);
  font-size: 18px;
  padding-left: 40px;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 5% 100%);

}

.social-warper2 {
  text-decoration: none;
  color: var(--background-color);
  background-color: var(--primary-color);
  font-size: 18px;
  padding-left: 40px;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 5% 100%);

}

.social-warper3 {
  text-decoration: none;
  color: var(--background-color);
  background-color: var(--secondary-color);
  font-size: 18px;
  padding-left: 40px;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 5% 100%);

}

.social-link {
  text-decoration: none;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background-color: #015AA9;
  border-radius: 0px 0px 0px 16px;
}



.hide-logo {
  opacity: 0;
  width: 80px;
}



.abs-logo {
  position: absolute;
  left: 4px;
  top: 2px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.abs-logo img {

  width: 156px;
}

.logo2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.logo2 h2,
.logo2 h3 {
  margin: 0;
  padding: 0px;
  line-height: 1;
}

/* Primary school name */
.logo2 h2 {
  font-size: 39px;
  color: #015AA9;
  /* A professional deep blue */
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Subtitle/Convent School */
.logo2 h3 {
  font-size: 26px;
  color: #4a5568;
  font-weight: 400;
  text-transform: uppercase;

}

.logo2 hr {
  padding: 0px;
  margin: 7px 0px;
}

/* Remove default margins from headers for tighter spacing */
.abs-logo h2,
.abs-logo h3 {
  margin: 0;
  padding: 0px;
  line-height: 1;
}

/* Primary school name */
.abs-logo h2 {
  font-size: 59px;
  color: #015AA9;
  /* A professional deep blue */
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Subtitle/Convent School */
.abs-logo h3 {
  font-size: 40px;
  color: #4a5568;
  font-weight: 400;
  text-transform: uppercase;

}

.abs-logo hr {
  padding: 0px;
  margin: 7px 0px;
}

.top-bar-left ul {
  display: flex;
  justify-content: start;
  align-items: center;
  list-style: none;
  gap: 40px;
  color: #aad3ff;
  margin: 0px;
  padding: 0px;
  font-size: 16px;

}

.top-bar-right {
  background-color: transparent;
  display: flex;
  justify-content: end;
  align-items: center;
  list-style: none;
  gap: 10px;
  margin: 0px;
  padding: 0px;
  font-size: 16px;


}

.top-bar-right a {
  text-decoration: none;
  color: white;


}

.top-bar-right i {

  color: #015AA9;
  font-size: 16px;
  background-color: white;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
}


/* Navbar link */
.nav-link {
  position: relative;


}

/* Hover effect */
.nav-link:hover {
  color: #e63946;
}

/* "New" badge */
.nav-link .new {
  background: #e63946;
  color: #fff;
  font-size: 10px;
  margin-top: -10px;
  padding: 2px 6px;
  border-radius: 12px;
  margin-left: 1px;
  animation: pulse 1.5s infinite;

}


.white-btn {
  display: inline-block;
  padding: 8px 20px;
  background-color: #fff;
  color: #222222;
  /* Text color */
  font-weight: 600;
  border: 2px solid white;
  /* Border color */
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Pulse animation for New badge */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Target section spacing fix (for fixed header) */
#events {
  scroll-margin-top: 100px;
  /* adjust based on header height */
}


.navbar {

  background-color: white !important;
  padding: 10px 0px !important;
}

.phone-navbar {
  background-color: white !important;
  position: fixed !important;
  top: 0px !important;
  width: 100%;
  z-index: 999 !important;
  display: none;
}

.phone-navbar img {
  width: 100px;
}


.main-header,
.second-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.main-header {
  transform: translateY(0);
  opacity: 1;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;

}

.second-header {
  transform: translateY(-100%);
  opacity: 0;
}

.main-header.hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.second-header.visible {
  transform: translateY(0);
  opacity: 1;
}

.main-header {
  transform: translateY(0);
  opacity: 1;
}

.main-header.hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.second-header {
  transform: translateY(-100%);
  opacity: 0;
}

.second-header.visible {
  transform: translateY(0);
  opacity: 1;
}


.header2 {
  box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
  background: white;
  border-radius: 0px 0px 16px 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(9.6px);
  -webkit-backdrop-filter: blur(9.6px);
  padding: 6px 0px !important;
  border: 1px solid rgba(255, 255, 255, 0.3);


}

.navbar-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header2 nav {
  padding: 5px;
}

.logo2 img {
  width: 90px;

}



.nav-links i {
  font-size: 12px;
  color: #62A4D2;
}

.nav-link {
  font-size: 19px !important;
  color: var(--text-color) !important;
  margin-right: 10px !important;

}

.nav-links ul li a {
  text-decoration: none;
  color: var(--text-color);

  transition: color 0.3s ease;
}


.nav-links ul li a:hover {
  color: #007bff;
}


.nav-menu {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
}


.nav-btn .btn-text {
  white-space: nowrap;
}

.nav-btn .btn-icon {
  width: 36px;
  height: 36px;
  background: var(--background-color);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}


.nav-btn:hover .btn-icon {
  transform: translateX(5px);
  background: #e9f4ff;
}


/* Navbar */
.custom-navbar {
  list-style: none;
  padding: 0;
  margin: 0;
  background: #0d1117;
  display: flex;
}


/* .custom-item {
  position: relative;
} */

/* Nav link */
.custom-link {
  color: var(--primary-color);
  text-decoration: none;

  font-size: 15px;
}

/* Arrow */
.custom-link svg {
  transition: transform 0.3s ease;
}

/* Dropdown box */
.custom-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 100vw;
  background: #ffffff;
  border-radius: 3px;
  padding: 12px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px) scale(0.95);
  transition: all 0.35s ease;
}

/* Dropdown links */
.custom-dropdown li a {
  display: block;
  padding: 12px 20px;
  color: #222;
  text-decoration: none;
  font-size: 14px;
}

.custom-link li a svg {
  transition: transform 0.3s ease;
}

.custom-dropdown li a:hover {
  background: #f0f6ff;
  color: #8f009e;
}

/* Align text + icon */
.custom-link {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Chevron default state */
.custom-link svg {
  transition: transform 0.3s ease;
}

/* Rotate chevron when dropdown is active */
.custom-item:hover .custom-link svg {
  transform: rotate(180deg);
}

/* Hover effects */
.custom-item:hover .custom-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.custom-item:hover .arrow {
  transform: rotate(-135deg);
}

.poster {
  margin-top: 150px;
}

.carousel-item img {
  height: 80vh !important;
  object-fit: cover !important;
}


.poster-tag {
  background: transparent;
  margin-top: -66px;
  z-index: 999;
  position: relative;


}

.tag-box-main {
  padding: 40px;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  border-radius: 10px;
}

.tag-box {
  display: flex;
  align-items: center;
  gap: 20px;
}

.tag-box img {
  width: 65px;
}

.tag-box h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #1c2c4c;
}

.tag-box p {
  margin: 4px 0 0;
  color: #999;
  font-size: 14px;
}




.about-university {

  background: url('/image/bg.jpg');
  background-position: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 120px 0;
  color: white;
  margin-top: -96px;
}

.sub-title {
  color: #99cdfb;
  font-weight: 600;
}

.title {
  font-size: 40px;
  font-weight: 700;
  margin: 15px 0;
}

.read-btn {
  color: #3AC172;
  font-size: 26px;
  font-weight: 600;
  text-decoration: none;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.feature-box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.feature-box i {
  font-size: 28px;
  color: #39c172;
}

.ab {

  backdrop-filter: blur(10px);
  border-radius: 5px;
}

.about-des p {
  font-size: 21px !important;
  font-weight: 300 !important
}


.point-box-main {

  margin: auto;
  display: flex;
  background: #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
  border-radius: 10px;

}

/* LEFT IMAGE */

.left {
  width: 40%;
  position: relative;
  border-radius: 10px;

}

.left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px 0px 0px 10px;

}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #4CAF50;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .2);
}

/* RIGHT CONTENT */

.right {
  width: 60%;
  padding: 20px;
  background: white;
  border-radius: 10px;
}

/* TABS */

.tabs {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  border-bottom: 2px solid #eee;
}

.tab-btn {
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 500;
  color: #777;
  padding-bottom: 12px;
  cursor: pointer;
  position: relative;
}

.tab-btn.active {
  color: #1f3f75;
  font-weight: 600;
}

.tab-btn.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 3px;
  background: #1f3f75;
}

/* CONTENT */

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fade .4s ease;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(10px)
  }

  to {
    opacity: 1
  }
}

.vision-section {
  padding: 70px 0px;
  background-color: #D8F0FF;

  color: white;

}

.section-title {
  font-size: 42px;
  color: #015AA9;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: capitalize;
  text-align: center;
  padding: 10px 0px;
}

.section-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  margin: auto;
  background: #015AA9;
  margin-top: 10px;
}



.section-desc {
  color: black;

  font-weight: 300;
  text-align: center;

}



.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.vision-box {
  background: #fff;
  padding: 35px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
  transition: .3s;
}

.vision-box:hover {
  transform: translateY(-6px);
}

.vision-box h3 {
  color: #015AA9;
  font-size: 29px;
  font-family: "Philosopher", sans-serif;
  font-weight: 400;
  font-style: normal;

}


.vision-box p {
  color: #666;
  line-height: 1.7;
}


.tab-content h2 {
  color: #1f3f75;
  margin-bottom: 15px;
  font-family: "Philosopher", sans-serif;
  font-weight: 400;
  font-style: normal;

}

.tab-content p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 15px;
}



.message-section {
  background: white;
  padding: 70px 0;
}

/* principal image */
.photo-block {
  position: relative;
}

.photo-block img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 99;
}

/* message card */
.text-block {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  margin-left: -80px;
  padding-left: 90px;
  position: relative;
}



.text-block p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

/* quote */
.quote-box {
  background: #015AA9;
  color: white;
  padding: 25px;
  border-radius: 10px;
  margin: 30px 0;
  font-style: italic;
}

/* signature */

.signature {
  margin-top: 30px;
  text-align: right;
}

.signature-name {
  font-size: 20px;
  font-weight: 600;
  color: #015AA9;
}

.signature-role {
  color: #777;
}

.kassm {
  padding: 70px 0px;
}

.philosophy-title {
  color: #1f3f75;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
}

.kassm-box {
  border: 2px solid #1f3f75;
  /* Dark blue border */
  border-radius: 20px;
  padding: 30px 40px;
  margin-bottom: 40px;
  position: relative;
  margin-top: 60px;
  /* For heading placement */
}

/* Boxed Section Title - "KASSM APPROACH" */
.kassm-box-header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -15px;
  /* Pull header up onto the border */
  left: 50%;
  transform: translateX(-50%);
  background: white;
  /* Matches container background to 'hide' the border behind */
  padding: 0 15px;
}

/* Horizontal lines within header box */
.kassm-box-header span.line {
  display: inline-block;
  width: 40px;
  height: 2px;
  background-color: #1f3f75;
  margin: 0 10px;
}

.kassm-box-header span.text {
  color: #1f3f75;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Text content inside the boxed section */
.kassm-top-quotes {
  color: #1f3f75;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 30px;
}

.kassm-top-quotes blockquote {
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 10px;
}

.kassm-top-quotes h3 {
  font-weight: 600;
  font-size: 18px;
}

/* Icons Row */
.icons-row {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
  /* Good practice for smaller screens, though image is a straight row */
  margin-bottom: 10px;
  /* Space between icons and lower paragraphs */
}

/* Individual icon card */
.icon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 18%;
  /* Adjust width to fit 5 items with spacing */
  text-align: center;
  margin-bottom: 15px;
}

/* Icon styling */
.icon-card img {
  width: 70px;
  /* Adjust size based on image */
  height: auto;
  margin-bottom: 10px;
}

/* Icon text */
.icon-card p {
  color: #1f3f75;
  font-weight: 600;
  font-size: 19px;
}

/* Footer paragraph - outside the boxed section */
.philosophy-paragraph {
  color: #333;
  /* Dark gray for readability */
  line-height: 1.8;
  font-size: 15px;
  margin-top: 20px;
}




.achievement-section {
  padding: 70px 0;
  background: url("/image/bg.jpg");
  position: relative;
  overflow: hidden;
}

.achievement-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(1, 90, 169, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(216, 240, 255, 0.3) 0%, transparent 50%);
  pointer-events: none;
}

.achievement-box {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 2px solid #D8F0FF;
  border-radius: 20px;
  padding: 20px;
  height: 100%;
  margin: 15px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(1, 90, 169, 0.1);
}



.achievement-box:hover {
  transform: translateY(-15px) scale(1.05);
  border-color: #015AA9;
  box-shadow:
    0 25px 50px rgba(1, 90, 169, 0.25),
    0 0 30px rgba(1, 90, 169, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.achievement-box:hover::before {
  animation: shimmer 1s infinite;
  opacity: 1;
}

.counter {

  font-size: 45px;
  font-weight: 800;

  color: #015AA9;
  margin-bottom: 15px;
  position: relative;
}

.counter {

  font-size: 45px;
  font-weight: 800;

  color: #015AA9;
  margin-bottom: 15px;
  position: relative;
}

.counter::after {
  content: '+';
  font-size: 45px;
  color: #015AA9;
  opacity: 0.8;
}

.percentage {
  font-family: 'Poppins', sans-serif;
  font-size: 45px;
  font-weight: 800;
  color: #015AA9;
  margin-bottom: 15px;
  position: relative;
}

.percentage::after {
  content: '%';
  font-size: 30px;
  color: #015AA9;
  opacity: 0.8;
}

.achievement-box p {

  font-size: 18px !important;

  color: #015AA9;
  margin: 0;
  text-transform: uppercase;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }

  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}


@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.achievement-box {
  animation: fadeInUp 0.8s ease forwards;
}

.achievement-box:nth-child(1) {
  animation-delay: 0.1s;
}

.achievement-box:nth-child(2) {
  animation-delay: 0.2s;
}

.achievement-box:nth-child(3) {
  animation-delay: 0.3s;
}

.achievement-box:nth-child(4) {
  animation-delay: 0.4s;
}

.connect-section {
  background: #D8F0FF;
  color: #015AA9;
  position: relative;
  overflow: hidden;
  padding: 70px 0;
}

.connect-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.connect-data {
  position: relative;
  z-index: 2;
}

.connect-section .head-image {
  margin-top: 10px;
  max-width: 80px;
  opacity: 0.8;
  filter: brightness(1.1);
}

.heading-section {
  text-align: center;
  margin-bottom: 60px;
}




.accordion-flush .accordion-item {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border: 1px solid #D8F0FF;
  border-radius: 16px;
  margin-bottom: 18px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(1, 90, 169, 0.1);
  transition: all 0.3s ease;
}

.accordion-button {
  background: transparent;
  color: #015AA9;
  font-weight: 600;
  padding: 20px 25px;
  border: none;
  box-shadow: none;
  font-size: 1rem;
  line-height: 1.5;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, #D8F0FF, white);
  color: #015AA9;
  font-weight: 700;
  box-shadow: inset 0 -2px 0 #015AA9;
}

.accordion-button::after {
  filter: hue-rotate(220deg) brightness(1.2);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23015AA9'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:hover {
  background: rgba(216, 240, 255, 0.5);
  color: #015AA9;
}

.accordion-body {
  background: white;
  color: #015AA9;
  font-size: 15px;
  line-height: 1.7;
  padding: 25px;
  border-top: 1px solid #D8F0FF;
}





.services-section {
  background-color: #D8F0FF;
  padding: 70px 0;
}

/* ── Card ── */
.service-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  height: 100%;
  display: flex;
  padding: 20px;
  flex-direction: column;
}

/* ── Image ── */
.service-image {
  width: 100%;
  height: 260px;
  overflow: hidden;
  border-radius: 10px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Content ── */
.service-content {
  padding: 24px 4px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-btn {
  background-color: #015AA9;
  padding: 10px 20px;
  border-radius: 5px;
  color: white;
  text-decoration: none;
  width: max-content;

}

.service-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a2e5a;
  /* dark navy */
  margin-bottom: 12px;
}

.service-content p {
  font-size: 0.95rem;
  color: #4a4a4a;
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}

/* ── Arrow Link ── */
.service-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  text-decoration: none;
  transition: transform 0.2s ease;
  width: fit-content;
}

.service-arrow:hover {
  transform: translateX(4px);
}

/* First card arrow — teal */
.teal-arrow {
  color: #2abfbf;
}

/* Other cards arrow — orange/coral */
.orange-arrow {
  color: #e8603c;
}



.gallery-section {
  position: relative;
  padding: 70px 0;
  background: url("/image/bg.jpg");
}


.heading-section3 .heading-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #015AA9;
  color: #fff;
  font-size: 0.85rem;
}

.heading-section3 .head-title {
  font-weight: 700;
  margin-top: 12px;
}

.heading-section3 .head-title span {
  color: #015AA9;
}

.tag-btn {
  margin: 4px;
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.85rem;
  border: 1px solid #ced4da;
}

.tag-btn.active {
  background: #015AA9;
  color: #fff;
  border-color: #015AA9;
}

.gallery-img-events {
  border-radius: 10px;
  height: 300px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-img-events:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}



.why-us-section {
  background-color: #ffffff;
  color: #015AA9;
  padding: 70px 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}




/* Items */
.why-us-item {
  display: flex;
  align-items: center;
  background-color: #D8F0FF;
  border-radius: 14px;
  padding: 12px 14px;
  border: 1px solid #b6daf5;
  margin-bottom: 14px;
}

.why-us-number {
  flex: 0 0 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #015AA9;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.why-us-content h3 {
  font-size: 0.98rem;
  font-weight: 600;
  margin: 0 0 4px;
}

.why-us-content p {
  font-size: 0.85rem;
  margin: 0;
  color: #29435f;
}

.why-us-image {
  margin-left: auto;
  flex: 0 0 30%;
}

.why-us-image img {
  width: 100%;
  height: 100px;
  border-radius: 5px;
  object-fit: cover;
}

/* Hover */
.why-us-item:hover {
  border-color: #015AA9;
  box-shadow: 0 4px 14px rgba(1, 90, 169, 0.16);
}



.school-footer {
  background-color: #015AA9;
  color: #ffffff;
  padding: 60px 0 30px;
  border-radius: 30px 30px 0 0;

}

/* Titles */
.school-footer .footer-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: #ffffff;
}

.footer-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
  color: #D8F0FF;
}

.footer-text {
  font-size: 0.9rem;
  margin-bottom: 8px;
}

/* Social */
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #D8F0FF;
  color: #015AA9;
  font-size: 0.85rem;
  margin-right: 8px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.footer-social a:hover {
  background-color: #ffffff;
  color: #015AA9;
}

/* Links */
.footer-links {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  font-size: 0.9rem;
  color: #D8F0FF;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ffffff;
}

/* Hours box */
.footer-hours-box {
  background-color: #D8F0FF;
  border-radius: 18px;
  padding: 18px 20px;
  color: #015AA9;
}

.footer-hours-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  padding: 5px 0;
  border-bottom: 1px solid rgba(1, 90, 169, 0.1);
}

.footer-hours-row:last-child {
  border-bottom: none;
}

/* CTA */
.footer-cta {
  margin-top: 14px;
  background-color: #015AA9;
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.footer-cta-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #D8F0FF;
  color: #015AA9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(216, 240, 255, 0.4);
  margin-top: 30px;
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.footer-bottom-links a {
  color: #D8F0FF;
  text-decoration: none;
  margin-left: 16px;
}

.footer-bottom-links a:hover {
  color: #ffffff;
}

.mym{
  margin-top: 40px;
}



@media (max-width: 768px) {
  .school-footer {
    border-radius: 24px 24px 0 0;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .achievement-section {
    padding: 40px 0;
  }
  .achievement-box {
    padding: 30px 15px;
    margin: 10px;
    transform: translateY(-10px) scale(1.02) !important;
  }

  .icons-row {
    justify-content: center;
    gap: 15px;
  }

  .icon-card {
    width: 30%;
    /* 3 per row on tablets */
  }

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


  .accordion-button {
    padding: 16px 20px;
    font-size: 0.95rem;
  }

  .accordion-body {
    padding: 20px;
    font-size: 14px;
  }
}


@media(max-width:900px) {


  .text-block {
    margin-left: 0;
    margin-top: 30px;
  }

  .left,
  .right {
    width: 100%;
  }

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

  .icon-card {
    width: 45%;
    /* 2 per row on mobile */
  }

  .why-us-section {
    padding: 40px 0;
  }

}


@media (max-width: 575.98px) {
  .achievement-box{
    height: auto;
    margin-top: 20px;
  }
  .why-us-item {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .why-us-image {
    display: block;
      flex: 0 0 100%;
  }

  .why-us-image img{
    height: 200px;
    margin-top: 20px;
  }
  .mym{
  margin-top: 0px;
}
  .main-header {
    display: none;

  }

  .second-header {
    display: none;

  }

  .phone-navbar {
    display: block;
  }

  .tag-box-main {
    flex-wrap: wrap;
    box-shadow: none;

  }

  .poster-tag {
    margin-top: 10px;
    ;
  }

  .about-university {
    margin-top: 0px;
    padding:40px 0px;
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .about-des{
    margin-top: 20px;
  }
  .message-section{
    padding: 40px 0px;
  }
  .text-block{
    padding-left: 0px;
    box-shadow: none;
    padding: 0px;
  }
  .vision-section{
    padding: 40px 0px;
  }
  .point-box-main{
    flex-wrap: wrap-reverse;
  }
  .tabs{
    flex-wrap: wrap;
  }
  .kassm{
    padding: 40px 0px;
  }
  .services-section{
      padding: 40px 0px;
  }
  .gallery-section{
      padding: 40px 0px !important;
  }
  .carousel-item img {
  height: 60vh !important;
  
}
.poster{
  margin-top: 125px;
}
.title{
  font-size: 30px;
}
.section-title {
  font-size: 33px;
}

.kassm-box-header{
  top: -26px;
  text-align: center;
}
}