@import url("https://fonts.googleapis.com/css2?family=Goldman:wght@400;700&display=swap");

:root {
  --primary: #1a7aa1;
  --accent: #f5a623;
  --teal: #1aaa8e;
  --light-bg: #f8f9fc;
  --dark: #0f1e36;
  --text: #444f60;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background: #fff;
}
h1,
h2,
h3,
h4 {
  font-family: "Goldman", serif;
}
.pr-color {
  color: #1a7aa1 !important;
}

.pr-bg-color {
  background-color: #1a7aa1 !important;
}
.goldman-regular {
  font-family: "Goldman", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.goldman-bold {
  font-family: "Goldman", sans-serif;
  font-weight: 700;
  font-style: normal;
}

@keyframes jump-shaking {
  0% {
    transform: translateX(0) rotate(0);
  }
  35% {
    transform: translateY(0) rotate(0);
  }
  85% {
    transform: translateY(0) rotate(0);
  }
  89% {
    transform: translateY(-2px) rotate(-17deg);
  }
  93% {
    transform: translateY(-3px) rotate(17deg);
  }
  98% {
    transform: translateY(-4px) rotate(-17deg);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}

.jump-shaking {
  animation-name: jump-shaking;
  animation-duration: 2ms;
}

.gradient-border {
  border-width: 3px;
  background: #1d1f20;
  position: relative;
  border-radius: 20px;
}
.gradient-border:after {
  content: "";
  position: absolute;
  top: calc(-1 * 20px);
  left: calc(-1 * 20px);
  height: calc(100% + 20px * 2);
  width: calc(100% + 20px * 2);
  background: linear-gradient(
    60deg,
    #f79533,
    #f37055,
    #ef4e7b,
    #a166ab,
    #5073b8,
    #1098ad,
    #07b39b,
    #6fba82
  );
  border-radius: calc(2 * 20px);
  z-index: -1;
  animation: animatedgradient 3s ease alternate infinite;
  background-size: 300% 300%;
}

@keyframes animatedgradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* General styling for the icon container */
.sticky-social-icons {
  position: fixed; /* Fixes the position relative to the viewport */
  right: 0;
  top: 150px;
  background-color: #333;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
}

/* Style individual icons */
.sticky-social-icons .fa {
  padding: 15px; /* Adjust size/padding as needed */
  font-size: 20px;
  width: 50px; /* Ensures a clickable area */
  text-align: center;
  text-decoration: none;
  color: white; /* Default icon color */
}

/* Media query to ensure responsiveness on mobile devices */
@media screen and (max-width: 768px) {
  .sticky-social-icons {
    flex-wrap: nowrap; /* Prevents icons from wrapping onto multiple lines */
    justify-content: space-evenly; /* Even spacing on smaller screens */
    /* If you only want them on mobile, you can add a hide-on-desktop class to the HTML and hide it for larger screens */
  }
}

#header {
  background: #1a7aa1;
}

.dropdown-toggle {
  font-size: 2rem;
  font-family: "Montserrat", sans-serif;
  padding: 1rem;
  position: relative;
  cursor: pointer;
  color: var(--white);

  &:after {
    content: "";
    background: #fff;
    position: absolute;
    bottom: 0;
    width: 0;
    left: 50%;
    height: 3px;
    transform: translateX(-50%);
    transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 1s;
  }

  &:hover {
    &:after {
      width: 50%;
      transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 1s;
    }
  }
}

.dropdown-menu li a {
  font-family: "Montserrat", sans-serif;
  position: relative;
  cursor: pointer;
  color: rgb(0, 0, 0);
  z-index: 1;

  &:after {
    content: "";
    background: linear-gradient(
      90deg,
      rgba(48, 140, 176, 1) 0%,
      rgba(48, 140, 176, 0.57) 100%,
      rgba(48, 140, 176, 0.92) 66%
    );
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    clip-path: circle(0% at 50% 50%);
    transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.8s;
    z-index: -1;
  }

  &:hover {
    &:after {
      clip-path: circle(100% at 50% 50%);
      transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 2s;
    }
  }
}

.navbar-brand.logo img {
  width: 125px;
  margin-top: -45px;
  background: #fff;
  border-radius: 20px;
  transition: all 0.3s ease;
}
.scrolled {
  height: 80px !important;
  margin-top: -17px !important;
  width: auto !important;
  border-radius: 0px !important;
}
#about-us .row {
  margin-top: 20px;
  padding-top: 30px;
  padding: 20px;
  padding-top: 30px;
  background-color: #f1efeb;
  border-radius: 25px;
  border: 2px solid #72cbef;
}
.aboutimg {
  position: relative;
}
.aboutimg::after {
  content: "";
  position: absolute;
  top: -11px;
  right: 3px;
  height: 200px;
  width: 200px;
  background-color: #f1efeb;
  border-radius: 0px 24px 0 0;
  z-index: 0;
  border-top: 4px solid #1a7aa1;
  border-right: 4px solid #1a7aa1;
}
.aboutimg::before {
  content: "";
  position: absolute;
  bottom: -11px;
  left: 3px;
  /* height: 5px; */
  height: 200px;
  width: 200px;
  /* background-color: red; */
  /* border-radius: 24px 24px 0 0; */
  background-color: #f1efeb;
  border-radius: 0 0 0 24px;
  z-index: 0;
  border-bottom: 4px solid #1a7aa1;
  border-left: 4px solid #1a7aa1;
}

/* PRINCIPAL */
.principal-section {
  background: #fff;
  padding: 5px 0;
  padding-bottom: 40px;
}
.quote-box {
  background: var(--light-bg);
  border-radius: 20px;
  padding: 40px;
  border-left: 5px solid var(--accent);
  position: relative;
}
.quote-box .fa-quote-left {
  color: var(--accent);
  font-size: 3rem;
  margin-bottom: 14px;
  opacity: 0.7;
}
.principal-img {
  border-radius: 16px;
  width: 100%;
  height: 280px;
  object-fit: cover;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
.principal-name {
  color: var(--primary);
  font-weight: 700;
  font-size: 2.4rem;
  margin-top: 10px;
}
.principal-role {
  color: var(--teal);
  font-size: 1.4rem;
  font-weight: 400;
  font-style: italic;
}

/* CORE VALUES */
.values-section {
  background: var(--light-bg);
  padding: 80px 0;
}
.value-card {
  margin-top: 50px;
  /* background: #fff; */
  border-radius: 18px;
  padding: 34px 28px;
  height: 100%;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
  border-bottom: 4px solid transparent;
  display: flex;
  flex-direction: row;
  gap: 16px;
  filter: brightness(1);
}
@media (max-width: 768px) {
  .value-card {
    flex-direction: column;
    gap: 4px;
  }
}
.value-card:hover {
  transform: translateY(-6px);
  filter: brightness(0.9);
  box-shadow: 0 12px 40px rgba(202, 202, 202, 0.493);
}
.value-card.mission:hover {
  border-color: var(--primary);
}
.value-card.vision:hover {
  border-color: var(--teal);
}
.value-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.icon-blue {
  background: #e8f0fe;
  color: var(--primary);
}
.icon-teal {
  background: #e0f5f1;
  color: var(--teal);
}
.value-card h4 {
  color: rgb(226, 226, 15);
  margin-bottom: 10px;
  font-size: 3rem;
}

/* =============================================
   WE-OFFER SECTION — Animated CSS
   Playful, warm, school-friendly aesthetic
   ============================================= */

/* --- Section Base --- */
.we-offer {
  background: linear-gradient(135deg, #fffbe6 0%, #fff3f8 50%, #eef9ff 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0px;
}

.we-offer .five-cols {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 10px;
  overflow: scroll;
  /* scroll-behavior: smooth; */
  scroll-snap-align: start;
  width: 100%;
  padding-bottom: 20px;
  overflow-y: auto;
}

/* --- Individual Items --- */
.we-offer-item {
  width: 18%;
  background: #ffffff;
  border-radius: 24px;
  padding: 32px 20px 28px;
  box-shadow:
    0 4px 0px #e0e0e0,
    0 8px 24px rgba(0, 0, 0, 0.07);
  transition:
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
  min-width: 200px;
  /* Entrance animation */
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  animation: cardReveal 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Staggered delays for each card */
.we-offer-item:nth-child(1) {
  animation-delay: 0.1s;
}
.we-offer-item:nth-child(2) {
  animation-delay: 0.22s;
}
.we-offer-item:nth-child(3) {
  animation-delay: 0.34s;
}
.we-offer-item:nth-child(4) {
  animation-delay: 0.46s;
}
.we-offer-item:nth-child(5) {
  animation-delay: 0.58s;
}

@keyframes cardReveal {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Colourful top border per card */
.we-offer-item:nth-child(1)::before {
  background: linear-gradient(90deg, #ff6b6b, #ffa94d);
}
.we-offer-item:nth-child(2)::before {
  background: linear-gradient(90deg, #74c0fc, #38d9a9);
}
.we-offer-item:nth-child(3)::before {
  background: linear-gradient(90deg, #f9ca24, #f0932b);
}
.we-offer-item:nth-child(4)::before {
  background: linear-gradient(90deg, #a29bfe, #fd79a8);
}
.we-offer-item:nth-child(5)::before {
  background: linear-gradient(90deg, #55efc4, #00b894);
}

.we-offer-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  border-radius: 24px 24px 0 0;
}

/* Hover lift */
.we-offer-item:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow:
    0 2px 0px #e0e0e0,
    0 20px 40px rgba(0, 0, 0, 0.13);
}

/* --- Image --- */
.we-offer-item img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  border-radius: 20px;
  background: linear-gradient(135deg, #1c6ebf, #e9ecef);
  padding: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);

  /* Entrance spin */
  animation: imgPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: inherit;

  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes imgPop {
  from {
    opacity: 0;
    transform: scale(0) rotate(-20deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

.we-offer-item:hover img {
  transform: rotate(10deg) scale(1.15);
}

/* Coloured icon bg tints on hover */
.we-offer-item:nth-child(1):hover img {
  background: linear-gradient(135deg, #ffe3e3, #ffd8a8);
}
.we-offer-item:nth-child(2):hover img {
  background: linear-gradient(135deg, #d0ebff, #c3fae8);
}
.we-offer-item:nth-child(3):hover img {
  background: linear-gradient(135deg, #fff3bf, #ffe8cc);
}
.we-offer-item:nth-child(4):hover img {
  background: linear-gradient(135deg, #e5dbff, #ffdeeb);
}
.we-offer-item:nth-child(5):hover img {
  background: linear-gradient(135deg, #c3fae8, #b2f2bb);
}

/* --- Headings --- */
.we-offer-item h4.gloria-hallelujah {
  font-size: 2rem;
  line-height: 1.35;
  color: #2d3436;
  margin-top: 0;
  margin-bottom: 10px;

  /* Shimmer effect on load */
  background: linear-gradient(90deg, #2d3436 0%, #636e72 50%, #2d3436 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 3s linear infinite;
  animation-delay: 1.2s;
}

@keyframes shimmerText {
  0% {
    background-position: 200% center;
  }
  100% {
    background-position: -200% center;
  }
}

.we-offer-item:hover h4.gloria-hallelujah {
  animation: none;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
}

/* Per-card heading color on hover */
.we-offer-item:nth-child(1):hover h4 {
  color: #e03131;
}
.we-offer-item:nth-child(2):hover h4 {
  color: #1971c2;
}
.we-offer-item:nth-child(3):hover h4 {
  color: #e67700;
}
.we-offer-item:nth-child(4):hover h4 {
  color: #7048e8;
}
.we-offer-item:nth-child(5):hover h4 {
  color: #087f5b;
}

/* --- Paragraph --- */
.we-offer-item p {
  font-size: 14px;
  color: #636e72;
  line-height: 1.6;
  margin: 0;
  transition: color 0.3s ease;
}

.we-offer-item:hover p {
  color: #2d3436;
}

/* --- Bounce dot indicator --- */
.we-offer-item::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: 16px auto 0;
  opacity: 0;
  transform: scale(0);
  transition:
    opacity 0.3s ease,
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.we-offer-item:nth-child(1)::after {
  background: #ff6b6b;
}
.we-offer-item:nth-child(2)::after {
  background: #74c0fc;
}
.we-offer-item:nth-child(3)::after {
  background: #f9ca24;
}
.we-offer-item:nth-child(4)::after {
  background: #a29bfe;
}
.we-offer-item:nth-child(5)::after {
  background: #55efc4;
}

.we-offer-item:hover::after {
  opacity: 1;
  transform: scale(1);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .we-offer-item {
    padding: 24px 16px 20px;
  }

  .we-offer-item img {
    width: 150px;
    height: 150px;
  }

  .we-offer-item h4.gloria-hallelujah {
    font-size: 2rem;
  }
}

/* =============================================
   COUNT SECTION — Animated CSS
   Bold, celebratory, school-pride aesthetic
   ============================================= */

/* --- Section Base --- */
.section-count {
  background: url("../images/bg/kids.jpg");
  background-origin: initial;
  background-clip: initial;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 100% 0;
  background-position: center;
}
.count {
  position: relative;
  overflow: hidden;
}

/* Animated radial glow spots */
.count::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 50% at 15% 50%,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 50% 60% at 85% 50%,
      rgba(255, 200, 0, 0.07) 0%,
      transparent 70%
    );
  pointer-events: none;
}

/* Floating confetti dots */
.count::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.15) 2px, transparent 2px),
    radial-gradient(circle, rgba(255, 220, 0, 0.12) 2px, transparent 2px);
  background-size:
    60px 60px,
    90px 90px;
  background-position:
    0 0,
    30px 30px;
  animation: driftDots 20s linear infinite;
  pointer-events: none;
}

@keyframes driftDots {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-60px);
  }
}

/* --- Row --- */
.count .row {
  position: relative;
  z-index: 1;
}

/* --- Individual Stat Items --- */
.count > .col-md-3 > div {
  position: relative;
  padding: 30px 20px;

  /* Entrance animation */
  opacity: 0;
  transform: translateY(50px);
  animation: statReveal 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.count .col-md-3:nth-child(1) {
  animation-delay: 0.1s;
}
.count .col-md-3:nth-child(2) {
  animation-delay: 0.25s;
}
.count .col-md-3:nth-child(3) {
  animation-delay: 0.4s;
}
.count .col-md-3:nth-child(4) {
  animation-delay: 0.55s;
}

@keyframes statReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Vertical separator between items (desktop) */
.count .col-md-3:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .count .col-md-3::after {
    display: none;
  }
}

/* --- Icon (hot air balloon) --- */
.count .col-md-3 h1:first-child {
  margin-bottom: 10px;
  font-size: 2.4rem;
  animation: balloonFloat 4s ease-in-out infinite;
}

.count .col-md-3:nth-child(1) h1:first-child {
  animation-delay: 0s;
}
.count .col-md-3:nth-child(2) h1:first-child {
  animation-delay: 1s;
}
.count .col-md-3:nth-child(3) h1:first-child {
  animation-delay: 2s;
}
.count .col-md-3:nth-child(4) h1:first-child {
  animation-delay: 3s;
}

@keyframes balloonFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(-3deg);
  }
  50% {
    transform: translateY(-10px) rotate(3deg);
  }
}

.count .col-md-3 h1:first-child .icon-hotairballoon {
  display: inline-block;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

/* --- Number Display --- */
.count .text-red-3 {
  color: #fff700 !important;
  font-size: 3.2rem !important;
  margin: 0 0 8px;
  line-height: 1;
  text-shadow:
    0 2px 0 rgba(0, 0, 0, 0.2),
    0 0 30px rgba(255, 247, 0, 0.4);
  letter-spacing: -1px;
}

.count .text-red-3 strong {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.count .col-md-3:hover .text-red-3 strong {
  transform: scale(1.15);
}

/* --- Divider Line --- */
.count .divider-line {
  border: none;
  height: 2px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 99px;
  margin: 8px auto;
  width: 50px;
  position: relative;
  overflow: hidden;
}

.count .divider-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  height: 100%;
  width: 100%;
  background: rgba(255, 247, 0, 0.8);
  animation: lineSweep 2.5s ease-in-out infinite;
}

.count .col-md-3:nth-child(2) .divider-line::after {
  animation-delay: 0.6s;
}
.count .col-md-3:nth-child(3) .divider-line::after {
  animation-delay: 1.2s;
}
.count .col-md-3:nth-child(4) .divider-line::after {
  animation-delay: 1.8s;
}

@keyframes lineSweep {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

/* --- Label Heading --- */
.count h3.gloria-hallelujah {
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 1.4rem;
  font-family: "Goldman";
  letter-spacing: 0.03em;
  margin-top: 10px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.count .col-md-3:hover h3.gloria-hallelujah {
  color: #fff700 !important;
  transform: translateY(-2px);
}

/* --- Hover card highlight --- */
.count .col-md-3 div.info {
  border-radius: 16px;
  transition: background 0.35s ease;
  cursor: default;
  background: #1a7aa1d6;
}

.count .col-md-3:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* --- Pulse ring on numbers --- */
.count .text-red-3 {
  position: relative;
}

/* Responsive */
@media (max-width: 576px) {
  .count .text-red-3 {
    font-size: 2.4rem !important;
  }

  .count h3.gloria-hallelujah {
    font-size: 0.9rem;
  }
}

/* CTA */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #0a2447 100%);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: rgba(245, 166, 35, 0.08);
  border-radius: 50%;
}
.cta-section::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 250px;
  height: 250px;
  background: rgba(26, 170, 142, 0.08);
  border-radius: 50%;
}
.cta-section h2 {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 14px;
}
.cta-section p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  max-width: 480px;
  margin: 0 auto 32px;
}
.btn-cta-primary {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 14px 34px;
  font-weight: 700;
  font-size: 14px;
  transition: 0.3s;
}
.btn-cta-primary:hover {
  background: #e0941a;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(245, 166, 35, 0.4);
}
.btn-cta-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 30px;
  padding: 12px 34px;
  font-weight: 600;
  font-size: 14px;
  transition: 0.3s;
}
.btn-cta-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Card Container */
.acadmic-counsler-card {
  max-width: 350px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  border: 1px solid #eee;
}

/* Header Section: Photo & Name */
.name_photo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 15px;
}

.name_photo i.fa-avatar {
  font-size: 40px;
  color: #007bff;
  background: #e7f1ff;
  padding: 12px;
  border-radius: 50%;
}

.name_photo h6 {
  margin: 0;
  font-size: 1.1rem;
  color: #222;
}

.name_photo p {
  margin: 2px 0 0;
  font-size: 0.85rem;
  color: #666;
}

/* Contact Links */
.contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.contact a {
  text-decoration: none;
  color: #444;
  font-size: 0.9rem;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.contact a:hover {
  color: #007bff;
}

.contact i {
  width: 25px; /* Ensures icons align vertically */
  margin-right: 8px;
  color: #007bff;
}

/* Available Hours Section */
.acadmic-counsler-card h6 {
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.acadmic-counsler-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.fa-calander,
.fa-clock {
  color: #28a745;
  margin-right: 4px;
}

/* FACILITIES */
.facilities-section {
  background: var(--light-bg);
  padding: 80px 0;
}
.facility-card {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  height: 200px;
  cursor: pointer;
}
.facility-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
  filter: brightness(0.75);
}
.facility-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.65);
}
.facility-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: #fff;
}
.facility-overlay h5 {
  font-size: 2rem;
  margin-bottom: 4px;
  color: #fff;
}
.facility-overlay p {
  font-size: 14px;
  opacity: 0.85;
  margin: 0;
}

/* Contact page */
/* ============================================
   CONTACT SECTION — R.P. Vidyakulam
   Aesthetic: Editorial warmth, refined & clean
   ============================================ */

@import url("https://fonts.googleapis.com/css2?family=Love+Ya+Like+A+Sister&family=Lora:ital,wght@0,400;0,600;1,400&family=DM+Sans:wght@300;400;500&display=swap");

/* ── Root Variables ── */
:root {
  --orange: #ff7a00;
  --orange-dark: #e56700;
  --orange-soft: rgba(255, 122, 0, 0.08);
  --orange-glow: rgba(255, 122, 0, 0.25);
  --bg: #f4f1ec;
  --card-bg: #ffffff;
  --text-dark: #1a1a1a;
  --text-mid: #555;
  --text-light: #999;
  --border: #e0dbd3;
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.07), 0 1px 4px rgba(0, 0, 0, 0.04);
  --radius: 10px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Section Wrapper ── */
.contact-page {
  padding: 90px 0 100px;
  background: #f4f1ec;
  background-image:
    radial-gradient(
      circle at 10% 20%,
      rgba(255, 122, 0, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(255, 122, 0, 0.04) 0%,
      transparent 50%
    );
  font-family: "DM Sans", sans-serif;
  color: #1a1a1a;
}

/* ── Container ── */
.contact-page .container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Row & Columns ── */
.contact-page .row {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

.contact-page .contact-form {
  /* flex: 0 0 calc(66.666% - 15px);
  max-width: calc(66.666% - 15px); */
}

.contact-page .contact-info {
  background: #ffffff;
  padding: 36px 32px;
  border-radius: 10px;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.07),
    0 1px 4px rgba(0, 0, 0, 0.04);
  border-top: 3px solid orange;
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--text-mid);
}

/* ── Headings ── */
.contact-page h3.love-ya-like-a-sister,
.contact-page h3 {
  font-family: "Love Ya Like A Sister", cursive;
  font-size: 30px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 22px;
  position: relative;
  display: inline-block;
}

.contact-page h3.love-ya-like-a-sister::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin-top: 8px;
}

.contact-page h6 {
  font-family: "Lora", serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  margin-top: 0;
}

/* ── Links ── */
.contact-page a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}

.contact-page a:hover {
  color: var(--orange-dark);
  text-decoration: underline;
}

/* ── Smart Form Card ── */
.smart-forms {
  background: var(--card-bg);
  padding: 42px 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border-top: 3px solid var(--orange);
}

/* ── Form Sections ── */
.smart-forms .section {
  margin-bottom: 20px;
  position: relative;
}

/* ── Label & Field Wrapper ── */
.smart-forms .field {
  display: block;
  position: relative;
}

/* ── Input & Textarea ── */
.gui-input,
.gui-textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 13px 16px 13px 46px;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  font-family: "DM Sans", sans-serif;
  font-size: 14.5px;
  color: var(--text-dark);
  background: #fdfcfb;
  outline: none;
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.gui-input::placeholder,
.gui-textarea::placeholder {
  color: #bbb;
  font-weight: 300;
}

.gui-input:hover,
.gui-textarea:hover {
  border-color: #c8c2b8;
  background: #fff;
}

.gui-input:focus,
.gui-textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-glow);
  background: #fff;
}

/* ── Textarea ── */
.gui-textarea {
  min-height: 130px;
  resize: vertical;
  padding-top: 14px;
  line-height: 1.6;
}

/* ── Field Icons ── */
.field-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #bbb;
  font-size: 15px;
  pointer-events: none;
  transition: color var(--transition);
}

/* Icon stays top for textarea */
.field:has(.gui-textarea) .field-icon {
  top: 15px;
  transform: none;
}

.gui-input:focus ~ .field-icon,
.gui-textarea:focus ~ .field-icon {
  color: var(--orange);
}

/* ── Hint Text ── */
.input-hint {
  display: block;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 6px;
  padding-left: 2px;
  line-height: 1.5;
}

.input-hint strong {
  color: var(--orange);
  font-weight: 500;
}

/* ── Result Message ── */
.result {
  font-size: 14px;
  font-family: "Lora", serif;
  font-style: italic;
  color: var(--text-mid);
  min-height: 20px;
  margin-bottom: 4px;
}

/* ── Form Footer / Buttons ── */
.form-footer {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border: none;
  border-radius: 7px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  letter-spacing: 0.2px;
}

/* Cancel / Reset button */
.button:not(.btn-primary) {
  background: #eee9e2;
  color: var(--text-mid);
}

.button:not(.btn-primary):hover {
  background: #e0dbd3;
  transform: translateY(-1px);
}

/* Submit / Primary button */
.btn-primary,
.button.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 14px rgba(255, 122, 0, 0.35);
}

.btn-primary:hover,
.button.btn-primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 6px 18px rgba(255, 122, 0, 0.45);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(255, 122, 0, 0.3);
}

/* ── Map ── */
.map {
  width: 100%;
  height: 220px;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 12px;
  background: #e8e3db;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 13px;
}

.map p {
  margin: 0;
}

/* iframe inside map */
.map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ── Utility ── */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.bmargin {
  margin-bottom: 30px;
}

/* ── Responsive ── */
@media (max-width: 992px) {
  .contact-page .col-md-8,
  .contact-page .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .contact-page .col-md-4 {
    margin-top: 0;
  }
}

@media (max-width: 600px) {
  .contact-page {
    padding: 60px 0 70px;
  }

  .smart-forms {
    padding: 28px 22px;
  }

  .contact-page .col-md-4 {
    padding: 28px 22px;
  }

  .contact-page h3 {
    font-size: 26px;
  }

  .form-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
    justify-content: center;
  }
}
