/* ================= RESET ================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none !important;
}

html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

:root {
  --brand-main: #0b3c49;
  --brand-deep: #2b2f61;
  --brand-soft: #4a4f9e;

  --surface-base: #ffffff;
  --surface-light: #f7f8fd;
  --surface-muted: #f2f3fa;

  --highlight-accent: #e6b94c;

  --content-primary: #1e1f2b;
  --content-secondary: #6b6e8a;
  --content-inverse: #ffffff;

  --line-subtle: #d8daeb;
}

.text-logo {
  display: flex;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-link img {
  width: 50px;
  filter: brightness(0) invert(1);
}

.logo-title {
  display: block;
  line-height: 1.1;
}

.logo-title {
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: #fff;
}

.header-bg {
  background-color: #0b3c49;
}

.logo-title small {
  font-size: 11px;
  font-weight: 700;
  vertical-align: top;
}

.nav-top {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 5px;
  padding: 8px 0;
  font-size: 13px;
}

.nav-top a {
  color: #fff;
}

.nav-top i {
  font-size: 15px;
}

.fa-facebook {
  color: #4267b2;
}
.fa-instagram {
  background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.fa-linkedin-in {
  color: #00a0dc;
}

/* ================= NAV LINKS ================= */
.navbar {
  padding: 5px 0;
}

.navbar-nav {
  gap: 6px;
}

.navbar-nav .nav-link {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
}

.nav-link:hover {
  color: #fff !important;
}

.dropdown-menu {
  background: #0b3c49 !important;
  border: 1px solid #0b3c49;
}

.dropdown-item {
  color: #fff !important;
  font-size: 14px;
}

.dropdown-item:hover {
  background: #0b3c49 !important;
  color: var(--surface-base) !important;
}

.dropdown-toggle::after {
  border-top: 0.4em solid currentColor;
  border-right: 0.4em solid transparent;
  border-left: 0.4em solid transparent;
  margin-left: 6px;
}

.dropend > .dropdown-toggle::after {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
}

/* ================= DESKTOP HOVER ================= */
@media (min-width: 992px) {
  .dropdown:hover > .dropdown-menu {
    display: block;
    border: none;
    background-color: var(--surface-light);
    border-radius: 0px;
  }

  .dropdown-menu .dropend:hover > .dropdown-menu {
    display: block;
    position: absolute;
    top: 0;
    left: 100%;
  }
}

/* ================= OFFCANVAS (MOBILE) ================= */

@media (max-width: 991px) {
  .navbar-nav {
    gap: 0;
  }

  .nav-link {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }

  .dropdown-menu {
    box-shadow: none;
  }

  .dropdown-menu .dropdown-menu {
    margin-left: 12px;
    border-left: 3px solid var(--brand);
  }
}

/* ------------------------------------- */
/* -------------Banner----------------- */
/* ----------------------------------- */
.home-banner {
  width: 100%;
  position: relative;
}

.home-banner-single {
  background: url(../images/home/school-building-banner.webp) no-repeat;
  position: relative;
  height: 90vh;
  background-size: cover;
  background-position: 100% 45%;
}

/* ------------------------------ */

.home-banner-single {
  position: relative;
  width: 100%;
  height: 95vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-banner-content {
  margin-bottom: 40px;
  overflow: hidden;
}

.banner-title {
  font-size: 54px;
  line-height: 1.15;
  font-weight: 400;
  margin-bottom: 22px;
  letter-spacing: -0.8px;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlideUp 1s ease forwards;
}

.banner-title span {
  background: linear-gradient(90deg, #ff6347, #ff6347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.banner-subtitle {
  font-size: 19px;
  font-weight: 500;
  color: #2c6f7c;
  line-height: 1.6;
  opacity: 0;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transform: translateY(25px);
  animation: fadeSlideUp 1s ease 0.3s forwards;
}

/* Keyframes */
@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ------------------------------ */

.cta-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border-right: 2px solid #fff;
  transition: background 0.3s ease;
}

.cta-item:last-child {
  border-right: none;
}

.name-instiution {
  font-size: 14px;
}

.cta-bar {
  display: flex;
  background: #ff6347;
  border-radius: 50px;
  overflow: hidden;
  max-width: 1300px;
  width: calc(100% - 40px);
  margin: 0 auto;

  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  will-change: transform;
  z-index: 5;
}

.cta-bar.cta-fixed {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, -10px);
  z-index: 999;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.header-fixed {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1030;
  background: #0b3c49;
}

/* --------------------------------------------------- */
/* ---------------institutions----------------------- */
/* ------------------------------------------------- */

.carousel-btns {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.carousel-btns a {
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 6px;
}

.btn-primary {
  background: #0b3c49;
  color: #fff;
}

.btn-secondary {
  border: 2px solid #0b3c49;
  color: #0b3c49;
}

/* ===============================
   INSTITUTE SLIDER – BASE
================================ */

.trust-about {
  padding: 60px 0px 30px 0px;
}

.mar {
  padding: 12px 28px;
  color: #ffff;
  background: #0b3c49;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.trust-about .institute-title-area p {
  max-width: 1000px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

.institute-title-area {
  text-align: center;
  margin-bottom: 40px;
}

.institute-title-area h3 {
  font-size: 32px;
  font-weight: 700;
  color: #1f2a44;
  margin-bottom: 12px;
  position: relative;
}

.institute-title-area h3::after {
  content: "";
  width: 60px;
  height: 3px;
  background-color: #ffd401;
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

.institute-title-area p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

.Institute-slider {
  padding: 80px 0;
  background: url(../images/home/banner-institutions.jpg);
  background-size: cover;
  background-position: center center;
}

.Institute-slider .about-img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
}

.Institute-slider .carosal-text-rs {
  padding-left: 40px;
}

@media (max-width: 767px) {
  .Institute-slider .carosal-text-rs {
    padding-left: 0;
    margin-top: 25px;
    text-align: center;
  }
}

.Institute-slider .carosal-text-rs h3 {
  font-size: 28px;
  font-weight: 700;
  color: #1f2a44;
  margin-bottom: 12px;
  position: relative;
}

.Institute-slider .carosal-text-rs p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 26px;
  max-width: 520px;
}

@media (max-width: 767px) {
  .Institute-slider .carosal-text-rs p {
    max-width: 100%;
  }
}

.Institute-slider .carousel-btns {
  display: flex;
  gap: 16px;
}

.Institute-slider .carousel-btns a {
  padding: 8px 26px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.Institute-slider .carousel-btns .btn-primary {
  background: #0b3c49;
  color: #fff;
}

.Institute-slider .carousel-btns .btn-primary:hover {
  transform: translateY(-2px);
  background: #2c2f66;
}

.Institute-slider .carousel-btns .btn-secondary {
  border: 2px solid #0b3c49;
  color: #0b3c49;
  background: transparent;
}

.Institute-slider .carousel-btns .btn-secondary:hover {
  background: #0b3c49;
  color: #fff;
}

.Institute-slider .carousel-indicators {
  position: absolute;
  bottom: -50px;
}

.Institute-slider .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #c7c9e6;
  opacity: 1;
}

.Institute-slider .carousel-indicators .active {
  background-color: #0b3c49;
}

.Institute-slider .carousel-item {
  padding: 20px 0;
}

.gallery-social-responsibility {
  padding-top: 120px;
  padding-bottom: 80px;
}

.gallery-social-responsibility .institute-title-area p {
  max-width: 900px;
}

.gallery-btn {
  display: inline-block;
  padding: 12px 28px;
  color: #ffff;
  background: #0b3c49;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

/* -------------------------------- */
/* ----------About-trust---------- */
/* ------------------------------ */

.all-colleges h3 {
  font-weight: bold;
  color: #fff;
}

.all-colleges p {
  color: #fff;
  font-size: 18px;
}

.all-colleges {
  background: url(../images/home/college-banner.webp) no-repeat;
  background-position: 100% 25%;
  background-size: cover;
  background-attachment: fixed;
  padding: 90px 0;
  margin-top: 90px;
}

.knowmore-bg {
  display: inline-block;
  padding: 12px 28px;
  color: #ffff;
  background: #0b3c49;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.vission-mission {
  padding: 70px 0;
  background-color: #fff8dc;
}

.vission-mission .vm {
  align-items: stretch;
}

.vission-mission .about-company {
  background: #ffffff;
  padding: 35px 30px;
  height: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.vission-mission .about-company:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
}

.vission-mission .icon-title {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: space-between;
  margin-bottom: 18px;
}

.vission-mission .icon-title h5 {
  font-size: 22px;
  font-weight: 700;
  color: #0b3c49;
  margin: 0;
}

.vission-mission .icon-title img {
  width: 45px;
  height: auto;
}

.vission-mission .about-company p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

@media (max-width: 576px) {
  .vission-mission .icon-title {
    gap: 12px;
  }

  .vission-mission .icon-title img {
    width: 38px;
  }

  .vission-mission .about-company p {
    font-size: 15px;
  }
}

/* ===============================
   PRESIDENT MESSAGE SECTION
================================ */

.president-message-section {
  padding: 120px 0px 80px 0px;
  background-color: #f9f9fb;
}

.president-image-wrapper {
  position: relative;
  text-align: center;
}

.president-image {
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.president-image-caption {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #0b3c49;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-align: center;
  width: max-content;
}

.president-image-caption h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.president-image-caption p {
  margin: 0;
  font-size: 13px;
  opacity: 0.9;
}

.president-title {
  font-size: 32px;
  font-weight: 700;
  color: #1f2a44;
  margin-bottom: 12px;
  position: relative;
}

.president-divider {
  display: block;
  width: 70px;
  height: 4px;
  background-color: #ffd401;
  margin-bottom: 20px;
  border-radius: 3px;
}

.president-content-box p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 16px;
}

.president-signature {
  margin-top: 25px;
  font-size: 15px;
  color: #222;
  line-height: 1.6;
}

.president-signature strong {
  font-size: 16px;
  color: #0b3c49;
}

/* -------------------------------------- */
/* --------------Footer----------------- */
/* ------------------------------------ */

/* FOOTER */
.college-footer {
  background: #3a3a3a;
  padding: 60px 0 20px;
  color: var(--neutral-light);
  font-size: 14px;
}

.college-footer .footer-col {
  margin-bottom: 30px;
}

.footer-title {
  font-size: 15px;
  font-weight: 600;
  color: #ffd401;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #d1d1d1;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* FOOTER BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
  margin-top: 20px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: #bdbdbd;
}

.footer-bottom a {
  color: #d1d1d1;
}

.footer-address p {
  margin-bottom: 12px;
  line-height: 1.6;
  color: #d1d1d1;
  font-size: 14px;
}

.footer-address a {
  color: #d1d1d1;
  text-decoration: none;
}

.footer-col p {
  color: #fff;
}

.footer-col a {
  color: #fff;
}

.spacer-dark {
  background-color: #3a3a3a;
  padding-top: 80px;
}

/* ------------------------------ */
/* ---------Nss----------------- */
/* ---------------------------- */
.vol {
  padding: 40px 0px 80px 0px;
  background: url(../images/home/vol-banner.jpg);
  background-size: cover;
  background-position: 100% 90%;
}

.int-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* Content */
.int-content h3 {
  font-size: 32px;
  font-weight: 700;
  color: #1f2a44;
  margin-bottom: 12px;
  position: relative;
}

.int-content h3::after {
  content: "";
  width: 60px;
  height: 3px;
  background-color: #ffd401; /* Accent Color */
  position: absolute;
  left: 0;
  bottom: -10px;
}

.int-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-top: 20px;
}

/* Stats Section */
.int-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.stat-box h4 {
  font-size: 36px;
  font-weight: 700;
  color: #ffd401;
  margin-bottom: 5px;
}

.stat-box span {
  font-size: 14px;
  color: #0b3c49;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-logo img {
  max-width: 160px;
  height: auto;
}

/* Responsive */
@media (max-width: 991px) {
  .int-content {
    text-align: center;
  }

  .int-content h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .int-stats {
    justify-content: center;
  }
}

/* ----------------------------------- */
/* ---------Counter------------------ */
/* --------------------------------- */

.counter-container {
  display: flex;
  gap: 40px;
  padding: 0px 0px 0px 0px;
}

.counter-box {
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.counter-box.visible {
  opacity: 1;
  transform: translateY(0);
}

.counter-image {
  width: 30px;
  height: 30px;
  object-fit: contain;
  margin-bottom: 5px;
}

.counter {
  font-size: 25px;
  font-weight: bold;
  color: #444;
  margin-bottom: 2px;
}

.counter-title {
  font-size: 12px;
  color: #444;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .counter-box {
    width: 150px;
  }

  .counter {
    font-size: 32px;
  }

  .counter-image {
    width: 50px;
    height: 50px;
  }
}

/* ===============================
------------ABOUT US PAGE------------
================================== */

.trust-arunodya {
  padding: 160px 0px 80px 0px;
  background: #f9fbfd;
}

.trust-arunodya h2 {
  font-size: 34px;
  font-weight: 600;
  color: #0b3c49;
  margin-bottom: 20px;
}

.trust-arunodya h3 {
  font-size: 24px;
  font-weight: 600;
  color: #2b2f61;
  margin-bottom: 15px;
}

.trust-arunodya h4 {
  font-size: 20px;
  font-weight: 600;
  color: #e6b94c;
  margin-bottom: 12px;
}

.trust-arunodya p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

.all-links-trust ul {
  list-style: none;
  padding: 0;
}

.all-links-trust ul li {
  margin-bottom: 12px;
}

.all-links-trust ul li a {
  text-decoration: none;
  font-size: 16px;
  text-transform: uppercase;
  color: #4a4f9e;
  font-weight: 500;
  transition: 0.3s ease;
}

.all-links-trust ul li a:hover {
  color: #e6b94c;
  padding-left: 5px;
}

.trust-image img {
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.vision-box,
.mission-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.mission-box ul {
  padding-left: 18px;
}

.mission-box ul li {
  margin-bottom: 8px;
  font-size: 15px;
  color: #444;
}

@media (max-width: 768px) {
  .trust-arunodya {
    padding: 50px 0;
  }

  .trust-arunodya h2 {
    font-size: 26px;
  }

  .trust-arunodya h3 {
    font-size: 20px;
  }
}

#vm {
  scroll-margin-top: 180px;
}

.values-objectives-section {
  margin-top: 80px;
}

.values-objectives-content h3 {
  font-size: 28px;
  font-weight: 600;
  color: #0b3c49;
  margin-bottom: 20px;
}

.values-objectives-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.values-objectives-content ul {
  list-style: none;
}

.values-objectives-content ul li {
  position: relative;
  padding-left: 5px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #444;
  list-style-type: circle;
}

.values-objectives-image img {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.values-objectives-image img:hover {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .values-objectives-section {
    margin-top: 50px;
  }

  .values-objectives-content h3 {
    font-size: 22px;
  }
}

.logo-rotate-wrap {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-text {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotateCircle 20s linear infinite;
}

.circle-text text {
  font-size: 13px;
  letter-spacing: 3px;
  font-weight: 600;
  text-transform: uppercase;
  fill: #15177c;
}

.logo-center {
  width: 300px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.logo-center img {
  width: 55%;
  height: auto;
}

@keyframes rotateCircle {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.circle-text-logo {
  padding: 50px 0;
  background-color: #f9f9fb;
}

/* ----------------------------- */
/* -------News-media----------- */
/* --------------------------- */

.nm-title {
  font-size: 34px;
  font-weight: 600;
  color: #0b3c49;
  margin-bottom: 40px;
  text-align: center;
}

.media-news-trust {
  padding: 120px 0px 80px 0px;
  background: #ffffff;
}

.bg-light-news {
  background: #f8f9fa;
}

.content-news h3 {
  font-size: 26px;
  font-weight: 600;
  color: #0b3c49;
  margin-bottom: 15px;
}

.content-news p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
}

.media-news-trust img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.nm-one {
  margin-bottom: 40px;
}

/* ===============================
   Arunodaya Trust - Volunteering
================================= */

.main-banners {
  background: #f8fafc;
  padding: 14f0px 0px 80px 0px;
}

.csr-content h2 {
  font-size: 42px;
  letter-spacing: 1px;
  color: #0b3c49;
}

.csr-content h6 {
  font-size: 14px;
  font-weight: 500;
  color: #e6b94c;
  margin-bottom: 6px;
}

.csr-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-top: 15px;
}

.main-banners img {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.main-banners .row:last-child p {
  text-align: center;
  font-size: 17px;
  font-weight: 500;
  color: #2b2f61;
  line-height: 1.8;
}

/* ===============================
   Arunodaya Trust Blog Section
================================= */

.at-blog-section {
  padding: 120px 0px 80px 0px;
  background: #f9fbfd;
}

.at-blog-container {
  max-width: 1200px;
  margin: auto;
}

.at-blog-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0b3c49;
  margin-bottom: 10px;
}

.at-blog-header p {
  font-size: 16px;
  color: #555;
  margin-bottom: 50px;
}

.at-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.at-blog-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.at-blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.at-blog-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.at-blog-content {
  padding: 25px;
}

.at-blog-content h4 {
  font-size: 20px;
  font-weight: 600;
  color: #2b2f61;
  margin-bottom: 15px;
}

.at-blog-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  flex-grow: 1;
}

.at-blog-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 22px;
  background: #e6b94c;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s ease;
}

.at-blog-btn:hover {
  background: #0b3c49;
}

.g-title-at {
  font-size: 34px;
  font-weight: 600;
  color: #0b3c49;
  margin-bottom: 40px;
  text-align: center;
}

.blogs-banner {
  padding: 120px 0px 80px 0px;
  background: #f8f9fa;
}

.blog-top-title {
  color: #0b3c49;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.blog-main-title {
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 25px;
}

.blog-intro {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  text-align: center;
  margin-bottom: 30px;
}

.blog-subtitle {
  font-size: 24px;
  color: #0b3c49;
  margin-top: 30px;
}

.blogs-banner p {
  color: #555;
  line-height: 1.9;
  font-size: 16px;
}

.blog-image {
  width: 100%;
  border-radius: 12px;
  margin: 30px 0;
  object-fit: cover;
}

.blog-conclusion {
  font-size: 28px;
  color: #0b3c49;
  margin-top: 40px;
}

.blog-navigation {
  border-top: 1px solid #ddd;
  padding-top: 20px;
}

.blog-navigation a {
  text-decoration: none;
  color: #0b3c49;
  font-weight: 600;
  transition: 0.3s ease;
}

.blog-navigation a:hover {
  color: #35bec4;
}

/* ---------------------------- */
/* ------contcatus-page------- */
/* -------------------------- */

.at-contact-section {
  padding: 120px 0px 80px 0px;
  background: #f4f7f9;
}

/* Heading */
.at-contact-heading h2 {
  font-size: 34px;
  font-weight: 600;
  color: #1f2d3d;
}

.at-contact-heading p {
  color: #6c757d;
}

/* Contact Box */
.at-contact-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  height: 100%;
}

.at-contact-box h4 {
  margin-bottom: 20px;
  color: #0b3c49;
  font-weight: 600;
}

.at-contact-box a {
  color: #0b3c49;
  text-decoration: none;
}

.at-contact-box a:hover {
  color: #0d6efd;
}

/* Apply Button */
.at-apply-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 22px;
  background: #0b3c49;
  color: #ffffff !important;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s ease;
}

.at-apply-btn:hover {
  background: #062a34;
}

/* Institutions */
.at-institution-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.at-institution-card:hover {
  transform: translateY(-6px);
}

.at-institution-card h5 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #1f2d3d;
}

/* Map */
.at-map-wrapper iframe {
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* --------------------------------- */
/* ----------Group-management------ */
/* ------------------------------- */

.management-section {
  padding: 120px 0px 80px 0px;
  background: var(--surface-light);
}

.management-section .management-heading h2 {
  font-size: 34px;
  font-weight: 700;
  color: var(--brand-deep);
}

.management-section .management-heading p {
  font-size: 18px;
  color: var(--content-secondary);
  margin-top: 6px;
}

.management-section .management-card {
  background: var(--surface-base);
  padding: 25px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(43, 47, 97, 0.08);
  transition: 0.3s ease;
  height: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  border: 1px solid var(--line-subtle);
}

.management-section .management-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 22px rgba(11, 60, 73, 0.15);
}

.management-section .management-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;

  display: flex;
  justify-content: center;
  align-items: center;

  margin-bottom: 18px;

  border: 4px solid var(--highlight-accent);
}

.management-section .management-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.management-section .management-card h5 {
  font-size: 17px;
  font-weight: 600;
  color: var(--brand-main);
  margin-bottom: 4px;
}

.management-section .management-card span {
  font-size: 14px;
  color: var(--content-secondary);
}

/* Hide on desktop */
.cta-bar-mobile {
  display: none;
}

@media (max-width: 768px) {
  .cta-bar-mobile {
    display: flex;
    gap: 5px;
    overflow-x: auto;
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    padding: 12px;
    background: #ffffff;
    /* border-radius: 18px; */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    z-index: 9999;
    scrollbar-width: none;
  }
  .cta-bar-mobile::-webkit-scrollbar {
    display: none;
  }

  .cta-item-mobile {
    min-width: 160px;
    background: #ff6347;
    border-radius: 14px;
    padding: 12px;
    text-decoration: none;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
  }

  .name-instiution {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.4;
  }

  .cta-item-mobile i {
    font-size: 14px;
    flex-shrink: 0;
  }

  body {
    padding-bottom: 100px;
  }
}
