:root {
  --primary: #0b4f9f;
  --primary-dark: #082f61;
  --secondary: #e71d2b;
  --accent: #ffd21f;
  --cream: #fffbea;
  --dark: #101828;
  --muted: #667085;
  --border: rgba(16, 24, 40, 0.1);
  --shadow: 0 24px 70px rgba(16, 24, 40, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--dark);
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 210, 31, 0.18),
      transparent 32%
    ),
    radial-gradient(
      circle at top right,
      rgba(11, 79, 159, 0.12),
      transparent 30%
    ),
    #ffffff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

.text-primary-custom {
  color: var(--primary);
}
.text-red {
  color: var(--secondary);
}
.bg-cream {
  background: var(--cream);
}

.section-padding {
  padding: 85px 0;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-title span {
  color: var(--secondary);
}

.section-subtitle {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 820px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(11, 79, 159, 0.08);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.eyebrow i {
  color: var(--secondary);
}

/* Navbar */
.premium-navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 30px rgba(16, 24, 40, 0.05);
  padding: 16px 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary-dark) !important;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--secondary), #ff5a5f);
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 10px 24px rgba(231, 29, 43, 0.25);
}

.brand-mark i {
  font-size: 1.3rem;
}

.brand-text {
  line-height: 1;
}

.brand-text small {
  display: block;
  color: var(--muted);
  font-size: 0.65rem;
  letter-spacing: 1.2px;
  font-weight: 700;
  margin-top: 3px;
}

.navbar-nav .nav-link {
  color: #344054;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 16px !important;
  border-radius: 999px;
  transition: all 0.25s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary);
  background: rgba(11, 79, 159, 0.08);
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  font-size: 1rem;
  background: linear-gradient(135deg, #ff0000, #c70000);
  color: #fff;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-contact:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(231, 29, 43, 0.3);
}

.btn-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--secondary), #ff4d55);
  color: #fff;
  box-shadow: 0 16px 34px rgba(231, 29, 43, 0.24);
  transition: all 0.25s ease;
}

.btn-premium:hover {
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 700;
  background: var(--primary);
  color: #fff;
  border: 1px solid rgba(11, 79, 159, 0.22);

  transition: all 0.25s ease;
}

.btn-outline-premium:hover {
  background: #fff;
  color: var(--primary);
  transform: translateY(-2px);
}

/* Hero */
.hero {
  position: relative;
  padding: 80px 0 70px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255, 251, 234, 0.95) 0%,
    rgba(255, 255, 255, 0.76) 50%,
    rgba(11, 79, 159, 0.08) 100%
  );
  z-index: -2;
}

.hero::after {
  content: "LAW";
  position: absolute;
  right: -40px;
  top: 55px;
  font-size: clamp(7rem, 20vw, 18rem);
  line-height: 1;
  color: rgba(11, 79, 159, 0.045);
  font-weight: 900;
  z-index: -1;
}

.hero-title {
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  font-weight: 900;
  letter-spacing: -4px;
  line-height: 0.95;
  color: var(--primary);
  margin-bottom: 20px;
}

.hero-title span {
  display: block;
  color: #4b5563;
  font-size: clamp(1.7rem, 4.5vw, 3.8rem);
  letter-spacing: 5px;
}

.hero-year {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.hero-year .line {
  width: 100px;
  height: 5px;
  border-radius: 999px;
  background: var(--accent);
}

.hero-year strong {
  color: var(--primary);
  letter-spacing: 10px;
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 900;
}

.hero-copy {
  font-size: 1.05rem;
  color: #475467;
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 28px;
}

/* Existing code remains the same */
.date-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* --- NEW CSS FOR THE VIDEO --- */
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* Modern 16:9 Aspect Ratio */
  height: 0;
  margin-bottom: 24px; /* Space between video and 'Starts' text */
  border-radius: calc(var(--radius) - 10px); /* Matches your card's roundness */
  overflow: hidden;
  z-index: 1; /* Ensures it sits neatly above background gradients */
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* ----------------------------- */

.date-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 210, 31, 0.25),
    transparent 55%
  );
  pointer-events: none;
}

.date-card .starts {
  text-transform: uppercase;
  letter-spacing: 7px;
  font-weight: 800;
  color: #344054;
  font-size: 0.85rem;
  position: relative;
}

.date-card .date {
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 900;
  color: #111827;
  line-height: 0.9;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  margin: 16px 0;
  position: relative;
}

.date-card .date span {
  background: var(--accent);
  padding: 8px 20px;
  border-radius: 16px;
  box-shadow: inset 0 -8px 0 rgba(0, 0, 0, 0.06);
}

.date-card .date small {
  font-size: clamp(1.3rem, 3vw, 2.4rem);
  letter-spacing: 4px;
  margin-bottom: 10px;
}

.mode-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--primary-dark);
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  position: relative;
}

.hero-feature-card {
  height: 100%;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(11, 79, 159, 0.13);
  box-shadow: 0 14px 40px rgba(16, 24, 40, 0.07);
  transition: all 0.25s ease;
}

.hero-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 55px rgba(16, 24, 40, 0.12);
  border-color: rgba(11, 79, 159, 0.28);
}

.icon-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--primary);
  background: #fff;
  border: 2px solid rgba(11, 79, 159, 0.18);
  box-shadow: 0 0 0 6px rgba(255, 210, 31, 0.28);
  margin-bottom: 16px;
  font-size: 1.35rem;
}

.hero-feature-card h5 {
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.hero-feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* Cards */
.premium-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
  height: 100%;
  transition: all 0.25s ease;
  overflow: hidden;
  position: relative;
}

.premium-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 75px rgba(16, 24, 40, 0.15);
}

.premium-card::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 170px;
  height: 170px;
  background: rgba(255, 210, 31, 0.2);
  border-radius: 50%;
}

.premium-card h4,
.premium-card h3 {
  font-weight: 800;
  font-size: 1.4rem;
  position: relative;
  z-index: 1;
}

.premium-card p,
.premium-card ul {
  position: relative;
  z-index: 1;
  color: var(--muted);
  line-height: 1.7;
}

/* Assessment */
.assessment-wrap {
  background:
    linear-gradient(
      135deg,
      rgba(255, 251, 234, 0.98),
      rgba(255, 255, 255, 0.94)
    ),
    radial-gradient(
      circle at bottom right,
      rgba(11, 79, 159, 0.12),
      transparent 40%
    );
  border-radius: 32px;
  padding: 40px;
  border: 1px solid rgba(11, 79, 159, 0.1);
  box-shadow: var(--shadow);
}

.layer-badge {
  background: #fff;
  border: 1px solid rgba(11, 79, 159, 0.13);
  border-radius: 20px;
  padding: 22px;
  height: 100%;
  transition: all 0.25s ease;
}

.layer-badge:hover {
  transform: translateY(-4px);
  border-color: rgba(231, 29, 43, 0.25);
  box-shadow: 0 14px 40px rgba(16, 24, 40, 0.09);
}

.layer-badge i {
  font-size: 1.9rem;
  color: var(--secondary);
  margin-bottom: 12px;
}

.layer-badge h5 {
  font-weight: 800;
  font-size: 1.05rem;
}

.layer-badge p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.test-circle {
  width: min(320px, 100%);
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  border-radius: 50%;
  background: conic-gradient(
    from 15deg,
    var(--primary) 0deg 70deg,
    #20b7d8 70deg 140deg,
    #f1b84b 140deg 210deg,
    #dd7356 210deg 280deg,
    #a93b4d 280deg 360deg
  );
  display: grid;
  place-items: center;
  padding: 28px;
  box-shadow: 0 26px 65px rgba(11, 79, 159, 0.22);
  position: relative;
}

.test-circle::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  border: 7px solid rgba(255, 255, 255, 0.75);
}

.test-circle-inner {
  width: 68%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
  position: relative;
  z-index: 2;
  box-shadow: inset 0 0 0 1px var(--border);
}

.test-circle-inner h3 {
  color: var(--primary-dark);
  font-weight: 900;
  font-size: 1.3rem;
  line-height: 1;
  margin-bottom: 8px;
}

.test-circle-inner p {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
  margin: 0;
  font-weight: 600;
}

/* Handouts */
.handout-card {
  text-align: center;
  padding: 30px 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, #fffdf0, #fff);
  border: 1px solid rgba(255, 210, 31, 0.42);
  height: 100%;
  transition: all 0.25s ease;
}

.handout-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 52px rgba(16, 24, 40, 0.11);
}

.handout-card .icon-circle {
  margin-left: auto;
  margin-right: auto;
}

.handout-card p {
  color: #344054;
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}

/* Faculty */
.faculty-box {
  border: 2px solid rgba(255, 210, 31, 0.95);
  border-radius: 28px;
  padding: 34px;
  background: #fff;
  box-shadow: var(--shadow);
}

.faculty-box h2 {
  font-size: 1.7rem;
}

.faculty-photo {
  width: 165px;
  height: 165px;
  border-radius: 22px;
  background:
    /* linear-gradient(135deg, rgba(11, 79, 159, 0.18), rgba(255, 210, 31, 0.32)), */ url("./images/WhatsApp\ Image\ 2026-06-19\ at\ 2.57.32\ PM.jpeg");
  background-size: cover;
  background-position: center;
  border: 10px solid #fff;
  box-shadow:
    -14px 14px 0 var(--accent),
    0 22px 50px rgba(16, 24, 40, 0.15);
}

/* Mentorship */
.mentor-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 16px 46px rgba(16, 24, 40, 0.07);
  height: 100%;
}

.mentor-icon {
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(231, 29, 43, 0.08);
  color: var(--secondary);
  font-size: 1.5rem;
}

.mentor-item h5 {
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.mentor-item p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

/* ==========================
   Fees Table
========================== */

.fee-table {
  border-radius: 22px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  background: #fff;
}

.fee-table table {
  min-width: 700px;
}

.table-responsive {
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch;
}

.fee-table thead th {
  background: var(--primary-dark);
  color: #fff;
  padding: 18px;
  font-size: 1rem;
  white-space: nowrap;
}

.fee-table tbody td,
.fee-table tbody th {
  padding: 22px 18px;
  vertical-align: middle;
  font-weight: 600;
}
@media (max-width: 768px) {
  .table-responsive {
    border-radius: 16px;
  }

  .fee-table table {
    min-width: 650px;
  }

  .fee-table thead th,
  .fee-table td,
  .fee-table th {
    padding: 14px 12px;
    white-space: nowrap;
  }

  .price {
    font-size: 1rem;
  }

  .btn-enroll {
    font-size: 0.85rem;
    padding: 8px 16px;
  }
}

.fee-table tbody tr:nth-child(even) {
  background: #fffdf0;
}

/* Price */
.price {
  display: block;
  color: var(--primary);
  font-weight: 800;
  font-size: 1.35rem;
  margin-bottom: 14px;
}

/* Enroll Button */
.btn-enroll {
  display: inline-block;
  padding: 10px 26px;
  border-radius: 50px;
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.btn-enroll:hover {
  background: transparent;
  color: var(--primary);
  transform: translateY(-2px);
}

/* Make price + button stack nicely */
.fee-table td {
  min-width: 220px;
}

.fee-table td .price,
.fee-table td .btn-enroll {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.fee-table td .btn-enroll {
  width: fit-content;
}

/* ==========================
   Responsive
========================== */

@media (max-width: 991px) {
  .fee-table thead th,
  .fee-table tbody td,
  .fee-table tbody th {
    padding: 16px 12px;
  }

  .price {
    font-size: 1.2rem;
  }

  .btn-enroll {
    padding: 9px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .fee-table {
    border-radius: 16px;
  }

  .fee-table table {
    min-width: 650px; /* Horizontal scroll on small devices */
  }

  .fee-table thead th,
  .fee-table tbody td,
  .fee-table tbody th {
    padding: 14px 10px;
    font-size: 0.9rem;
  }

  .price {
    font-size: 1.05rem;
    margin-bottom: 10px;
  }

  .btn-enroll {
    width: 100%;
    max-width: 150px;
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .fee-table table {
    min-width: 600px;
  }

  .btn-enroll {
    max-width: 130px;
    font-size: 0.82rem;
    padding: 7px 14px;
  }
}

.concession-box {
  background: #fff;
  border-radius: 26px;
  padding: 28px;
  border: 1px solid rgba(11, 79, 159, 0.12);
  box-shadow: 0 20px 56px rgba(16, 24, 40, 0.09);
}

.concession-title {
  display: inline-flex;
  background: linear-gradient(135deg, var(--cream), #fff);
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 18px;
  border: 1px solid rgba(255, 210, 31, 0.55);
}

/* Enrollment - tightened spacing */
.info-list {
  padding-left: 0;
  list-style: none;
  margin: 0;
}

.info-list li {
  display: flex;
  gap: 11px;
  margin-bottom: 12px;
  color: #475467;
  font-size: 0.95rem;
  line-height: 1.55;
}

.info-list li:last-child {
  margin-bottom: 0;
}

.info-list i {
  color: var(--secondary);
  flex: 0 0 auto;
  margin-top: 2px;
}
.compact-list li {
  white-space: nowrap;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 20px;
  line-height: 1.35;
  font-size: 0.92rem;
}

.compact-list li i {
  font-size: 12px;
  line-height: 1;
  margin-top: 4px;
  flex-shrink: 0;
}

/* Syllabus */
.syllabus-card {
  background: #fff;
  border-radius: 26px;
  padding: 30px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin-bottom: 26px;
}

.syllabus-heading {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--primary-dark);
  color: #fff;
  padding: 11px 18px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.table-syllabus {
  border: 1px solid #d0d5dd;
}

.table-syllabus th {
  background: #fff7bf;
  color: #1d2939;
  font-weight: 800;
  border-color: #d0d5dd;
}

.table-syllabus td {
  background: #fffdf0;
  border-color: #d0d5dd;
  color: #344054;
}

.accordion-button {
  font-weight: 800;
  font-size: 1rem;
  color: white;
  background: #082f61;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background: var(--primary-dark);
  color: #fff;
}

.accordion-item {
  border: 1px solid rgba(16, 24, 40, 0.1);
  border-radius: 16px !important;
  overflow: hidden;
  margin-bottom: 13px;
}

/* Footer */
.footer {
  background: var(--primary-dark);
  color: #fff;
  padding: 45px 0 20px;
}

.footer h5 {
  font-size: 1.1rem;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 0.95rem;
}

.footer-contact i {
  color: var(--accent);
}

.bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 28px;
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 998;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.34);
  transition: all 0.25s ease;
}

.floating-contact:hover {
  color: #fff;
  transform: translateY(-4px) scale(1.04);
}

@media (max-width: 991px) {
  .navbar-collapse {
    padding: 18px 0;
  }
  .navbar-nav {
    gap: 2px;
    margin-bottom: 14px;
  }
  .hero {
    padding-top: 60px;
  }
  .hero-title {
    letter-spacing: -2.5px;
  }
  .hero-title span {
    letter-spacing: 3px;
  }
  .assessment-wrap {
    padding: 26px;
  }
}

@media (max-width: 767px) {
  .section-padding {
    padding: 60px 0;
  }
  .premium-card,
  .syllabus-card,
  .faculty-box,
  .concession-box {
    padding: 22px;
    border-radius: 20px;
  }
  .hero-year .line {
    width: 70px;
  }
  .mentor-item {
    flex-direction: column;
  }
  .faculty-photo {
    width: 140px;
    height: 140px;
  }
  .floating-contact {
    right: 16px;
    bottom: 16px;
    width: 50px;
    height: 50px;
  }
}
/* Footer Base */
footer {
  background-color: #002b5b;
  color: white;
  padding: 20px 0;
}

footer a {
  text-decoration: none;
  transition:
    color 0.3s,
    transform 0.3s;
}

/* Footer Intro */
.footer_intro {
  color: #fff;
  font-size: 13px;
  text-align: left;
}

.footer_intro img {
  width: 200px;
  margin: auto 0 10px;
}

.footer_intro ul {
  list-style: none;
  display: inline-flex;
  gap: 10px;
  padding: 0;
  flex-wrap: wrap;
}

.footer_intro ul li a i {
  color: #fff;
  transition:
    color 0.3s,
    transform 0.3s;
}

.footer_intro ul li a:hover i {
  color: red;
  transform: scale(1.2);
}

/* Titles & Lists */
footer h4.title {
  color: #fff;
  text-transform: uppercase;
  font-size: 18px;
  margin-bottom: 20px;
}

ul.quick {
  list-style: none;
  padding: 0;
  column-count: 2;
}

ul.quick li a {
  color: #a2a2a2;
  /* Default grey */
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
}

ul.quick li a:hover {
  color: #007bff;
  /* Blue on hover */
  text-decoration: underline;
}

/* Contact info */
.adr_same,
.eml,
.phn {
  color: #6c757d;
  /* Grey text */
  margin-bottom: 15px;
  /* padding-left: 25px; */
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.phn i {
  color: #007bff;
}

/* Phone icon blue */
.eml i {
  color: #ffcc00;
}

/* Email icon yellow */
.whatsapp i {
  color: #25d366;
}

/* Google Map Links */
.footer_lower_txt a {
  color: #007bff;
}

.footer_lower_txt a:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* Footer Layout */
.container101 {
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  flex-wrap: wrap;
}

.footer_lower_txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.colorgsfp {
  color: white;
}
/* Bottom Bar */
.bottom_bar {
  padding: 15px 0;
  text-align: center;
  color: #fff;
  border-top: 1px solid #717171;
}
.fa-solid,
.fas {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}
