* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --home-navy: #040d42;
  --home-navy-light: #101f91;
  --home-blue: #1636a6;
  --home-red: #bb3037;
  --home-red-dark: #9f2028;
  --home-yellow: #ffbd00;
  --home-green: #169c68;
  --home-white: #ffffff;
  --home-light: #f5f7fc;
  --home-border: #e2e6ef;
  --home-text: #303441;
  --home-muted: #6d7380;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, Arial, sans-serif;
  color: var(--home-text);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

.home-container {
  width: min(1480px, 96%);
  margin: 0 auto;
}

/* ================= TOP BAR ================= */

.home-topbar {
  min-height: 78px;
  background: var(--home-navy);
  color: #ffffff;
}

.home-topbar-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.home-contact-group {
  display: flex;
  align-items: center;
  gap: 58px;
}

.home-contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.home-contact-icon {
  width: 52px;
  height: 52px;
  border: 2px solid var(--home-yellow);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--home-yellow);
  font-size: 25px;
}

.home-contact-item strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
}

.home-contact-item small {
  display: block;
  margin-top: 2px;
  font-size: 17px;
  font-weight: 800;
}

.home-top-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.home-top-actions a {
  padding: 11px 15px;
  border: 1px solid var(--home-yellow);
  border-radius: 4px;
  font-size: 14px;
  transition: 0.25s;
}

.home-top-actions a:hover {
  color: var(--home-navy);
  background: var(--home-yellow);
}

/* ================= BRAND HEADER ================= */

.home-brand-header {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #ffffff;
}

/* Remove the normal site-container width restriction only for the banner */
.home-brand-header .home-container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.home-brand-banner {
  width: 100%;
  height: auto;
  margin: 0;
  display: block;
  object-fit: contain;
}

/* Tablet */
@media (max-width: 992px) {
  .home-brand-banner {
    width: 100%;
    height: auto;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .home-brand-banner {
    width: 100%;
    height: auto;
  }
}

/* ================= NAVIGATION ================= */

.home-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  color: #ffffff;
  background: var(--home-red);
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.18);
}

.home-nav-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
}

.home-mobile-brand,
.home-menu-btn {
  display: none;
}

.home-nav-links {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.home-nav-links a {
  position: relative;
  padding: 29px 17px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.home-nav-links a::after {
  content: "";
  position: absolute;
  left: 17px;
  right: 17px;
  bottom: 19px;
  height: 2px;
  background: transparent;
}

.home-nav-links a:hover,
.home-nav-links a.active {
  color: var(--home-yellow);
}

.home-nav-links a:hover::after,
.home-nav-links a.active::after {
  background: var(--home-yellow);
}

/* ================= HERO ================= */

.home-hero {
  position: relative;
  overflow: hidden;
  min-height: 610px;
  display: flex;
  align-items: center;
  color: #ffffff;
  background:
    linear-gradient(
      115deg,
      rgba(5, 15, 68, 0.98),
      rgba(18, 40, 146, 0.93)
    ),
    radial-gradient(
      circle at 70% 30%,
      #2d4be1,
      #101f91 45%,
      #040d42 100%
    );
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(
      135deg,
      transparent 0 48%,
      rgba(255, 255, 255, 0.28) 49%,
      transparent 50%
    );
  background-size: 80px 80px;
}

.home-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 70px;
  padding-top: 75px;
  padding-bottom: 75px;
}

.home-hero-content {
  max-width: 880px;
}

.home-admission-badge {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 4px;
  background: rgba(255, 189, 0, 0.15);
  color: var(--home-yellow);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
}

.home-hero-content h1 {
  max-width: 900px;
  margin: 23px 0 18px;
  font-size: clamp(44px, 5.2vw, 74px);
  line-height: 1.09;
  font-weight: 800;
}

.home-hero-content p {
  max-width: 800px;
  color: #e3e8ff;
  font-size: 18px;
  line-height: 1.75;
}

.home-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 32px;
}

.home-btn {
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  transition: 0.25s;
}

.home-btn:hover {
  transform: translateY(-3px);
}

.home-btn-yellow {
  color: var(--home-navy);
  background: var(--home-yellow);
}

.home-btn-white {
  color: var(--home-navy-light);
  background: #ffffff;
}

.home-btn-outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.62);
  background: transparent;
}

.home-btn-outline:hover {
  color: var(--home-navy);
  background: #ffffff;
}

.home-btn-red {
  color: #ffffff;
  background: var(--home-red);
}

.home-btn-blue {
  color: #ffffff;
  background: var(--home-blue);
}

.home-hero-side {
  display: flex;
  justify-content: flex-end;
}

.home-hero-info-card {
  width: min(430px, 100%);
  padding: 48px 36px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  text-align: center;
  background: rgba(255, 255, 255, 0.96);
  color: var(--home-navy);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.25);
}

.home-hero-emblem {
  width: 100px;
  height: 100px;
  margin: 0 auto 23px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #eef1ff;
  color: var(--home-red);
  font-size: 47px;
}

.home-hero-info-card > span {
  color: var(--home-red);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.home-hero-info-card h2 {
  margin: 6px 0;
  font-size: 43px;
  color: var(--home-blue);
}

.home-hero-info-card p {
  color: #5f6572;
  font-size: 15px;
}

.home-hero-info-card a {
  display: inline-block;
  margin-top: 20px;
  color: var(--home-red);
  font-weight: 800;
}

.home-hero-pattern {
  position: absolute;
  border-radius: 50%;
}

.home-pattern-left {
  left: -125px;
  bottom: -125px;
  width: 350px;
  height: 350px;
  border: 3px solid rgba(133, 102, 255, 0.5);
  box-shadow:
    0 0 0 25px rgba(133, 102, 255, 0.08),
    0 0 0 55px rgba(133, 102, 255, 0.05);
}

.home-pattern-right {
  right: -100px;
  top: -100px;
  width: 300px;
  height: 300px;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.45) 3px,
    transparent 4px
  );
  background-size: 15px 15px;
  opacity: 0.35;
}

/* ================= ANNOUNCEMENT ================= */

.home-announcement {
  background: var(--home-yellow);
  color: var(--home-navy);
}

.home-announcement-inner {
  min-height: 58px;
  display: flex;
  align-items: stretch;
}

.home-announcement-title {
  min-width: 255px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 22px;
  color: #ffffff;
  background: var(--home-red);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.home-announcement-text {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 700;
}

/* ================= QUICK ACCESS ================= */

.home-quick-access {
  position: relative;
  z-index: 4;
  margin-top: -1px;
  padding: 35px 0 55px;
  background: #ffffff;
}

.home-quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.home-quick-card {
  min-height: 132px;
  padding: 26px 22px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: #ffffff;
  box-shadow: 0 15px 34px rgba(20, 30, 70, 0.16);
  transition: 0.25s;
}

.home-quick-card:hover {
  transform: translateY(-6px);
}

.home-card-red {
  background: linear-gradient(135deg, #c13a40, #991d25);
}

.home-card-blue {
  background: linear-gradient(135deg, #1839b1, #091d72);
}

.home-card-yellow {
  background: linear-gradient(135deg, #ffbe00, #e89400);
  color: var(--home-navy);
}

.home-card-green {
  background: linear-gradient(135deg, #19a675, #087d54);
}

.home-quick-icon {
  min-width: 65px;
  height: 65px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.16);
  font-size: 30px;
}

.home-quick-card h3 {
  font-size: 19px;
  margin-bottom: 4px;
}

.home-quick-card p {
  font-size: 13px;
  opacity: 0.9;
}

/* ================= COMMON SECTIONS ================= */

.home-section {
  padding: 95px 0;
}

.home-section-label {
  display: inline-block;
  color: var(--home-red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.home-section-heading {
  max-width: 800px;
  margin: 0 auto 45px;
  text-align: center;
}

.home-section-heading h2 {
  margin: 8px 0 12px;
  color: var(--home-navy);
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.16;
}

.home-section-heading p {
  color: var(--home-muted);
}

/* ================= NEWS AND NOTICE ================= */

.home-news-section {
  padding: 55px 0 95px;
  background: var(--home-light);
}

.home-news-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
}

.home-notice-box,
.home-news-box {
  padding: 32px;
  background: #ffffff;
  box-shadow: 0 15px 45px rgba(25, 35, 75, 0.1);
}

.home-box-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid #eff1f6;
}

.home-box-heading span {
  color: var(--home-red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
}

.home-box-heading h2 {
  margin-top: 3px;
  color: var(--home-navy);
  font-size: 32px;
}

.home-box-heading > a {
  color: var(--home-red);
  font-size: 14px;
  font-weight: 800;
}

.home-notice-list {
  margin-top: 6px;
}

.home-notice-item {
  display: grid;
  grid-template-columns: 75px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid #e8ebf1;
}

.home-notice-item:last-child {
  border-bottom: 0;
}

.home-notice-date {
  height: 75px;
  display: grid;
  place-items: center;
  align-content: center;
  color: #ffffff;
  background: var(--home-blue);
}

.home-notice-date strong {
  font-size: 25px;
  line-height: 1;
}

.home-notice-date span {
  margin-top: 5px;
  font-size: 12px;
  font-weight: 800;
}

.home-notice-item h3 {
  margin-bottom: 6px;
  color: var(--home-navy);
  font-size: 17px;
}

.home-notice-item p {
  color: var(--home-muted);
  font-size: 13px;
}

.home-news-feature {
  padding-top: 25px;
}

.home-news-image {
  min-height: 230px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(
      rgba(8, 24, 105, 0.8),
      rgba(8, 24, 105, 0.8)
    ),
    linear-gradient(135deg, #1a3abe, #081659);
}

.home-news-image div {
  color: #ffffff;
  font-size: 42px;
  font-weight: 800;
}

.home-news-label {
  display: inline-block;
  margin: 18px 0 8px;
  padding: 5px 10px;
  color: #ffffff;
  background: var(--home-red);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.home-news-feature h3 {
  color: var(--home-navy);
  font-size: 23px;
  line-height: 1.3;
}

.home-news-feature p {
  margin: 12px 0;
  color: var(--home-muted);
  font-size: 14px;
}

.home-news-feature a {
  color: var(--home-red);
  font-weight: 800;
}

/* ================= ABOUT ================= */

.home-about {
  background: #ffffff;
}

.home-about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 75px;
  align-items: center;
}

.home-about-visual {
  position: relative;
  min-height: 480px;
}

.home-about-image {
  height: 450px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(
      rgba(7, 24, 95, 0.82),
      rgba(7, 24, 95, 0.82)
    ),
    linear-gradient(135deg, #2949cc, #091556);
  box-shadow: 0 20px 50px rgba(15, 30, 90, 0.2);
}

.home-about-logo-circle {
  width: 240px;
  height: 240px;
  border: 8px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: grid;
  place-items: center;
  align-content: center;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.home-about-logo-circle span {
  font-size: 22px;
}

.home-about-logo-circle strong {
  font-size: 65px;
  line-height: 1;
}

.home-about-logo-circle small {
  margin-top: 7px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 5px;
}

.home-about-experience {
  position: absolute;
  right: -25px;
  bottom: 5px;
  width: 210px;
  min-height: 125px;
  padding: 23px;
  display: grid;
  align-content: center;
  color: var(--home-navy);
  background: var(--home-yellow);
  box-shadow: 0 15px 35px rgba(30, 40, 75, 0.16);
}

.home-about-experience strong {
  font-size: 35px;
  line-height: 1;
}

.home-about-experience span {
  margin-top: 7px;
  font-weight: 700;
}

.home-about-content h2 {
  max-width: 850px;
  margin: 10px 0 20px;
  color: var(--home-navy);
  font-size: clamp(32px, 4vw, 49px);
  line-height: 1.16;
}

.home-about-content p {
  margin-bottom: 15px;
  color: var(--home-muted);
}

.home-about-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px 25px;
  margin: 25px 0 30px;
}

.home-about-points div {
  font-weight: 700;
}

.home-about-points span {
  margin-right: 8px;
  color: var(--home-red);
}

/* ================= COURSES ================= */

.home-courses {
  background: var(--home-light);
}

.home-course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.home-course-card {
  position: relative;
  overflow: hidden;
  padding: 32px 27px;
  border-top: 4px solid var(--home-blue);
  background: #ffffff;
  box-shadow: 0 12px 35px rgba(20, 35, 75, 0.08);
  transition: 0.25s;
}

.home-course-card::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(21, 54, 166, 0.06);
}

.home-course-card:hover {
  transform: translateY(-7px);
  border-top-color: var(--home-red);
  box-shadow: 0 18px 42px rgba(20, 35, 75, 0.14);
}

.home-course-icon {
  width: 68px;
  height: 68px;
  margin-bottom: 19px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #eef1ff;
  font-size: 32px;
}

.home-course-card h3 {
  margin-bottom: 10px;
  color: var(--home-navy);
  font-size: 21px;
}

.home-course-card p {
  min-height: 70px;
  color: var(--home-muted);
  font-size: 14px;
}

.home-course-card a {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin-top: 18px;
  color: var(--home-red);
  font-size: 14px;
  font-weight: 800;
}

.home-courses-button,
.home-gallery-button {
  margin-top: 40px;
  text-align: center;
}

/* ================= CHAIRMAN ================= */

.home-chairman {
  color: #ffffff;
  background:
    linear-gradient(
      110deg,
      rgba(4, 13, 66, 0.99),
      rgba(14, 35, 143, 0.96)
    );
}

.home-chairman-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 70px;
  align-items: center;
}

.home-chairman-photo {
  min-height: 410px;
  display: grid;
  place-items: center;
  border: 10px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.08);
}

.home-chairman-photo div {
  text-align: center;
  color: #cdd5ff;
  font-size: 38px;
  font-weight: 800;
}

.home-chairman-photo span {
  display: block;
  font-size: 20px;
}

.home-chairman-content .home-section-label {
  color: var(--home-yellow);
}

.home-chairman-content h2 {
  margin: 7px 0 22px;
  font-size: clamp(35px, 4vw, 52px);
}

.home-quote {
  padding-left: 22px;
  border-left: 4px solid var(--home-yellow);
  color: #ffffff !important;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.5;
}

.home-chairman-content p {
  margin-bottom: 20px;
  color: #dbe1ff;
}

.home-chairman-content h3 {
  margin-top: 25px;
  color: var(--home-yellow);
  font-size: 21px;
}

.home-chairman-designation {
  color: #dbe1ff;
  font-size: 14px;
}

/* ================= STATISTICS ================= */

.home-statistics {
  padding: 70px 0;
  background: var(--home-yellow);
}

.home-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.home-stat-item {
  padding: 18px;
  border-right: 1px solid rgba(4, 13, 66, 0.2);
  text-align: center;
}

.home-stat-item:last-child {
  border-right: 0;
}

.home-stat-item strong {
  display: block;
  color: var(--home-navy);
  font-size: 45px;
  line-height: 1.2;
}

.home-stat-item span {
  color: var(--home-navy);
  font-weight: 700;
}

/* ================= AFFILIATION ================= */

.home-affiliation {
  padding: 75px 0;
  color: #ffffff;
  background: var(--home-red);
}

.home-affiliation-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
}

.home-affiliation .home-section-label {
  color: var(--home-yellow);
}

.home-affiliation h2 {
  margin: 6px 0 8px;
  font-size: clamp(32px, 4vw, 48px);
}

.home-affiliation p {
  max-width: 800px;
  color: #ffe9eb;
}

.home-affiliation-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

/* ================= DOWNLOADS ================= */

.home-downloads {
  background: #ffffff;
}

.home-download-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.home-download-card {
  min-height: 105px;
  padding: 22px 25px;
  border: 1px solid var(--home-border);
  display: grid;
  grid-template-columns: 60px 1fr 35px;
  align-items: center;
  gap: 17px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(20, 35, 75, 0.06);
  transition: 0.25s;
}

.home-download-card:hover {
  border-color: var(--home-blue);
  transform: translateY(-4px);
}

.home-download-card > span {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #eef1ff;
  font-size: 27px;
}

.home-download-card h3 {
  color: var(--home-navy);
  font-size: 18px;
}

.home-download-card p {
  color: var(--home-muted);
  font-size: 13px;
}

.home-download-card strong {
  color: var(--home-red);
  font-size: 27px;
}

/* ================= GALLERY ================= */

.home-gallery {
  background: var(--home-light);
}

.home-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.home-gallery-item {
  min-height: 250px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background:
    linear-gradient(
      rgba(7, 24, 95, 0.68),
      rgba(7, 24, 95, 0.68)
    ),
    linear-gradient(135deg, #3553d3, #091556);
  font-size: 20px;
  font-weight: 800;
  transition: 0.25s;
}

.home-gallery-item:hover {
  transform: scale(1.02);
}

/* ================= CAREER ================= */

.home-career {
  padding: 65px 0;
  color: #ffffff;
  background: var(--home-blue);
}

.home-career-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.home-career span {
  color: var(--home-yellow);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.3px;
}

.home-career h2 {
  margin: 5px 0 8px;
  font-size: clamp(30px, 4vw, 45px);
}

.home-career p {
  max-width: 800px;
  color: #e2e7ff;
}

/* ================= FOOTER ================= */

.home-footer {
  position: relative;
  overflow: hidden;
  padding-top: 70px;
  color: #ffffff;
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(56, 73, 185, 0.24),
      transparent 24%
    ),
    radial-gradient(
      circle at 85% 75%,
      rgba(64, 82, 190, 0.22),
      transparent 24%
    ),
    var(--home-navy);
}

.home-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.35fr 1.15fr;
  gap: 45px;
  padding-bottom: 55px;
}

.home-footer-column h3 {
  margin-bottom: 7px;
  font-size: 22px;
}

.home-footer-line {
  display: block;
  width: 30px;
  height: 3px;
  margin-bottom: 25px;
  background: var(--home-yellow);
}

.home-footer-contact {
  margin-bottom: 23px;
}

.home-footer-contact strong {
  display: block;
  font-size: 14px;
}

.home-footer-contact small {
  display: block;
  margin-top: 2px;
  font-size: 15px;
  font-weight: 800;
}

.home-footer-column a {
  display: block;
  margin-bottom: 10px;
  color: #f0f2ff;
  font-size: 13px;
}

.home-footer-column a:hover {
  color: var(--home-yellow);
}

.home-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.home-footer-bottom-inner {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #c8d0ef;
  font-size: 13px;
}

.home-footer-bottom-inner div {
  display: flex;
  gap: 20px;
}

/* ================= WHATSAPP ================= */

.home-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1100;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: #16c45a;
  font-size: 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1150px) {
  .home-top-actions {
    display: none;
  }

  .home-contact-group {
    width: 100%;
    justify-content: center;
  }

  .home-nav-links a {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 13px;
  }

  .home-quick-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-course-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .home-brand-banner {
    width: 100%;
    height: auto;
  }

  .home-nav-inner {
    min-height: 60px;
    justify-content: space-between;
  }

  .home-mobile-brand {
    display: block;
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
  }

  .home-menu-btn {
    display: block;
    border: 0;
    background: transparent;
    color: #ffffff;
    font-size: 27px;
    cursor: pointer;
  }

  .home-nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--home-red);
  }

  .home-nav-links.show {
    display: flex;
  }

  .home-nav-links a {
    padding: 14px 4%;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .home-nav-links a::after {
    display: none;
  }

  .home-hero-grid,
  .home-news-grid,
  .home-about-grid,
  .home-chairman-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-side {
    justify-content: flex-start;
  }

  .home-hero-info-card {
    max-width: 460px;
  }

  .home-about-visual {
    max-width: 620px;
  }

  .home-about-experience {
    right: 10px;
  }

  .home-affiliation-inner,
  .home-career-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-stat-item:nth-child(2) {
    border-right: 0;
  }

  .home-stat-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(4, 13, 66, 0.2);
  }

  .home-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .home-container {
    width: 94%;
  }

  .home-topbar {
    min-height: auto;
  }

  .home-topbar-inner {
    min-height: auto;
    padding: 10px 0;
  }

  .home-contact-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .home-contact-item {
    gap: 10px;
  }

  .home-contact-icon {
    width: 35px;
    height: 35px;
    font-size: 17px;
  }

  .home-contact-item strong {
    font-size: 13px;
  }

  .home-contact-item small {
    font-size: 14px;
  }

  .home-brand-header {
    padding: 0;
  }

  .home-brand-banner {
    width: 100%;
    height: auto;
  }

  .home-hero {
    min-height: auto;
  }

  .home-hero-grid {
    padding-top: 55px;
    padding-bottom: 55px;
    gap: 40px;
  }

  .home-hero-content h1 {
    font-size: 38px;
  }

  .home-hero-content p {
    font-size: 16px;
  }

  .home-hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .home-btn {
    width: 100%;
  }

  .home-hero-info-card {
    padding: 35px 20px;
  }

  .home-hero-info-card h2 {
    font-size: 36px;
  }

  .home-announcement-inner {
    flex-direction: column;
  }

  .home-announcement-title {
    min-width: 100%;
    min-height: 48px;
  }

  .home-announcement-text {
    min-height: 48px;
  }

  .home-quick-grid,
  .home-course-grid,
  .home-download-grid,
  .home-gallery-grid,
  .home-footer-grid {
    grid-template-columns: 1fr;
  }

  .home-quick-card {
    min-height: 115px;
  }

  .home-section {
    padding: 70px 0;
  }

  .home-news-section {
    padding: 45px 0 70px;
  }

  .home-notice-box,
  .home-news-box {
    padding: 22px 17px;
  }

  .home-box-heading h2 {
    font-size: 28px;
  }

  .home-notice-item {
    grid-template-columns: 62px 1fr;
    gap: 12px;
  }

  .home-notice-date {
    height: 62px;
  }

  .home-about-visual {
    min-height: 380px;
  }

  .home-about-image {
    height: 350px;
  }

  .home-about-logo-circle {
    width: 190px;
    height: 190px;
  }

  .home-about-logo-circle strong {
    font-size: 50px;
  }

  .home-about-experience {
    width: 170px;
    min-height: 105px;
  }

  .home-about-points {
    grid-template-columns: 1fr;
  }

  .home-chairman-photo {
    min-height: 330px;
  }

  .home-stat-grid {
    grid-template-columns: 1fr;
  }

  .home-stat-item {
    border-right: 0;
    border-bottom: 1px solid rgba(4, 13, 66, 0.2);
  }

  .home-stat-item:last-child {
    border-bottom: 0;
  }

  .home-affiliation-buttons {
    width: 100%;
  }

  .home-footer-bottom-inner {
    flex-direction: column;
    justify-content: center;
    padding: 16px 0;
    text-align: center;
  }

  .home-footer-bottom-inner div {
    justify-content: center;
    flex-wrap: wrap;
  }
}