@import url('https://fonts.googleapis.com/css2?family=Allerta&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

* {
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  /* Height of your fixed header */
}

@font-face {
  font-family: fontspring-integralcf-medium;
  src: url("../fonts/fontspring-integralcf-medium.woff");
}


:root {
  --primary-color: #0f172a;
  --secondary-color: #3b82f6;
  --black: #020617;
  --white: #ffffff;
  --gray: #64748b;
  --light-gray: #f1f5f9;
  --red-btn: #e11d48;
  --blue-btn: #2563eb;
  --heading: #1A2CA3;
  --accent-blue: #3b82f6;
  --accent-glow: #38bdf8;
  --success-green: #10b981;
  --text-light: #f8fafc;
  --glass-border: rgba(255, 255, 255, 0.15);
  --accent-light: #60a5fa;
  --text-main: #0f172a;
  --text-muted: #475569;
  --glass: rgba(255, 255, 255, 0.1);
}

.text-justify {
  text-align: justify;
}

.cta-sup {
  font-size: 10px;
  margin-left: 5px;
}

#apply {
  scroll-margin-top: 80px;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--white);
  color: var(--text-main);
  font-size: 1.125rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: fontspring-integralcf-medium;
  color: var(--heading);
  padding: 0px 10px;
}

h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
  color: var(--heading);
  font-weight: 700;
}

.heading-font {
  font-weight: 800;
}

.heading--h1 {
  font-size: clamp(27px, 6vw, 90px);
  line-height: 1;
}

.heading--h2 {
  font-family: fontspring-integralcf-medium;
  font-size: clamp(27px, 6vw, 64px);
  line-height: 1.2;
  background: linear-gradient(180deg, #1A2CA3, #2563eb);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fallback {
  font-family: Arial, sans-serif;
  color: var(--heading);
  font-weight: 700;
}

.sub--heading {
  font-size: 33px;
  line-height: 1;
}

.sup--heading {
  font-size: clamp(25px, 4vw, 65px);
  line-height: 1;
  margin-bottom: 30px;
}

.sup--heading sup {
  background: var(--heading);
  color: var(--white);
  padding: 6px 10px;
  font-size: 18px;
  letter-spacing: 0.5px;
  position: relative;
  vertical-align: middle;
  padding-bottom: 9px;
}

.list--check>li:before {
  content: "";
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid var(--red-btn);
  width: 0px;
  height: 0px;
}

.list--check>li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.big--check>li:before {
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid var(--red-btn);
  margin-top: 5px;
}

.big--check>li {
  align-items: flex-start;
  font-size: 20px;
}

.custom--btn {
  padding: 16px 36px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  border-radius: 50px;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.custom--btn:hover {
  background: var(--heading);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.container--custom {
  max-width: 1520px;
  width: 100%;
}

/* header */
.site-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 30px 0;
  background: transparent;
  transition: background 0.3s ease;
  /* Smooth color transition */
}

/* --- SCROLLED STATE (White Background) --- */
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-wrap {
  width: 98%;
  max-width: 1440px;
  margin: auto;
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand-logo {
  width: 100%;
  max-width: 220px;
}

.brand-strip {
  width: 100%;
  max-width: 350px;
}

/* 1. Logos: White initial, Black on scroll */
.logo-black {
  display: none;
}

.scrolled .logo-white {
  display: none;
}

.scrolled .logo-black {
  display: block;
}

/* 2. Logo Strip: Initial rendered, Scrolled removed */
.scrolled .brand-strip {
  display: none;
}

/* 3. Admission Tag: Initial rendered, Scrolled removed */
.admission-tag,
.admission-tag1 {
  display: inline-block;
  border: 1px solid #ffe600;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffd400;
  margin-top: 20px;
  width: fit-content;
}

.admission-tag1 {
  display: none;
  margin: 0 auto;
}

.scrolled .admission-tag {
  display: none;
}

/* 4. Apply Button: Initial removed, Scrolled rendered */
.header-apply-btn {
  display: none;
  background: #005bbc;
  color: #fff;
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  margin-top: 20px;
}

.scrolled .header-apply-btn {
  display: block;
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 5% 80px;
  background: url("../images/header--img.webp") no-repeat center center/cover;
}

/* Dark Overlay for Readability */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(4 8 20 / 60%) 0%, rgb(27 32 43 / 70%) 50%, rgb(6 15 39 / 20%) 100%);
  z-index: 1;
}

.hero__container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  margin-top: 25px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.hero__container1 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero__content {
  animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__title {
  font-size: clamp(28px, 8vw, 58px);
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #EBEBEB;
  font-weight: 800;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 650px;
}

.hero__title span {
  font-family: inherit;
  background: linear-gradient(to right, var(--accent-glow), #2c1fe2);
  color: #e2e2e2;
}

.hero__description {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  line-height: 1.6;
  color: #EBEBEB;
  max-width: 650px;
  margin-bottom: 20px;
}

.hero__description span {
  background: linear-gradient(180deg, #ffbf00 40%, #f88f32 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- FORM CARD --- */
.hero__form {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-card {
  width: 100%;
  max-width: 370px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: slideInRight 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  overflow: hidden;
}

.form-card h3 {
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  text-align: center;
  color: #005bbc;
}

.form-card p {
  font-size: 14px;
  color: #94a3b8;
  text-align: center;
  margin-bottom: 25px;
}

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

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

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

.placement-highlights-section {
  padding: 100px 20px 50px 20px;
  background: #f8fafc;
}

.placement-highlights-container {
  max-width: 1160px;
  margin: 25px auto;
}

.placement-highlights-wrapper {
  width: 100%;
}

.placement-highlight-content {
  width: 100%;
  margin: 20px auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.placement-highlight-title {
  font-size: clamp(24px, 6vw, 38px);
  line-height: 1.3;
  text-transform: uppercase;
  font-weight: 900;
  margin: 0 auto;
  margin-bottom: 40px;

}

/* ===== STATS STRIP ===== */

.placement-highlight-strip {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.placement-highlight-strip1 {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ===== METRIC BLOCK ===== */

.placement-highlight-metric {
  width: 100%;
  padding: 32.5px 15px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1.5px solid #c5c5c5;
  background: #eeecec;
}

.placement-highlight-metric h3 {
  color: var(--red-btn);
  font-size: 36px;
  font-family: inherit;
  font-weight: 800;
  line-height: 1;
  position: relative;
  display: inline-block;
  text-transform: none;
  text-align: center;
}

.metric-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  display: block;
  color: #363636;
  text-transform: uppercase;
  margin-top: 10px;
  text-align: center;
}

.placement-highlight-carousel-col {
  width: 100%;
  max-width: 645px;
  position: relative;
}

.placement-highlight-card {
  position: relative;
  width: 100%;
  max-width: 310px;
  height: 310px;
  border-radius: 30px;
  overflow: hidden;
  background: #eeeeee;
  border: 1.5px solid #c5c5c5;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
  transition: 0.4s ease;
}

.placement-highlight-image-wrap {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 2;
}

.placement-highlight-image {
  width: 100%;
  filter: drop-shadow(0 60px 100px rgba(248, 243, 243, 0.5));
}

.placement-highlight-detail {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(90px);
  border-radius: 0px 0px 20px 20px;
  padding: 10px;
  z-index: 2;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.placement-highlight-name {
  font-size: 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #131313;
  font-weight: 700;
  margin-bottom: 3px;
  padding: 0px;
}

.placement-highlight-role {
  font-size: 12px;
  font-weight: 700;
  color: #0a43ad;
  margin-bottom: 12px;
}

.placement-highlight-company-wrap {
  width: 100%;
  max-width: 75px;
}

.placement-highlight-company-wrap img {
  width: 100%;
}

.industry-section {
  padding: 50px 20px 100px 20px;
  background: #f8f9fb;
  overflow: hidden;
}

.industry-container {
  max-width: 1250px;
  width: 100%;
  margin: 0 auto;
}

.industry-title {
  font-size: clamp(24px, 6vw, 38px);
  line-height: 1.3;
  text-transform: uppercase;
  font-weight: 900;
  margin: 0 auto;
  margin-bottom: 20px;
  text-align: center;
}

.industry-container p {
  width: 100%;
  max-width: 900px;
  color: #444;
  font-size: 18px;
  line-height: 1.6;
  margin: 0 auto;
  margin-bottom: 30px;
  text-align: center;
}

.industry-slider-wrapper,
.industry-slider-wrapper1 {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.industry-slider-wrapper .swiper-wrapper,
.industry-slider-wrapper1 .swiper-wrapper {
  transition-timing-function: linear !important;
}

/* ===== TRACK ROW LAYOUT ===== */

.industry-track-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  overflow: hidden;
}

.industry-track-row1 {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  overflow: hidden;
}

.industry-track-row:last-child {
  margin-bottom: 0;
}

.industry-track-pill,
.industry-track-pill1 {
  background: #1f509a;
  color: #fff;
  padding: 14px 28px;
  border-radius: 12px 0px 0px 12px;
  font-size: clamp(14px, 1.5vw, 20px);
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1.3;
  text-align: center;
}

.industry-track-pill1 {
  border-radius: 0px 12px 12px 0px;
}

/* ===== SWIPER SLIDE LOGO CENTERING ===== */

.industry-slider-wrapper .swiper-slide,
.industry-slider-wrapper1 .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.industry-logo {
  width: auto;
  max-width: 100%;
  max-height: 75px;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.industry-logo:hover {
  transform: scale(1.08);
  filter: grayscale(0%);
}


/* why study */
.why--study {
  width: 100%;
  margin: 0 auto;
  background: url("../images/why-study.png");
  background-size: cover;
  max-height: clamp(550px, 62vw, 600px);
  background-position: center;
  padding-top: 225px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 75px;
  padding-right: 15px;
  padding-left: 15px;
}

.why--study .why--heading {
  width: fit-content;
}

.why--study .why--heading>h2 .why--icon:before {
  content: "";
  width: clamp(200px, 26vw, 370px);
  height: 440px;
  background: url("../images/why-icon.png");
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
}

.why--study .why--heading>h2 .why--icon {
  position: relative;
}

.why--study .why--heading>h2 {
  font-size: clamp(40px, 9vw, 140px);
  line-height: 1;
  margin-bottom: 20px;
}

.why--study .why--heading {
  max-width: 50%;
  width: 100%;
}

.why--study .why--heading>h2 .why--icon {
  position: relative;
  z-index: 2;
  bottom: 10px;
  color: var(--red-btn);
  font-size: clamp(25px, 5vw, 55px);
  line-height: 1;
  padding-bottom: 30px;
  margin-left: -10px;
}

.why--study .why--heading>h3 {
  color: var(--red-btn);
  font-size: clamp(25px, 5vw, 63px);
  line-height: 1;
}

.why--content {
  gap: 30px;
}

.ct-video {
  flex: 1;
}

.ct-video iframe {
  width: 100%;
  max-width: 600px;
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  z-index: 999;
}

/* end why study */
.approval-section {
  padding: 100px 20px 50px 20px;
  background: #f8fafc;
}

.approval-container {
  max-width: 1000px;
  margin: 0 auto;
}

/* ===============================
   TITLE
================================ */
.approval-title {
  font-size: clamp(24px, 6vw, 38px);
  line-height: 1.3;
  text-transform: uppercase;
  font-weight: 900;
  margin: 0 auto;
  margin-bottom: 20px;
  text-align: center;
}

.approval-subtitle {
  width: 100%;
  max-width: 800px;
  color: #444;
  font-size: 18px;
  line-height: 1.6;
  margin: 0 auto;
  margin-bottom: 30px;
  text-align: center;
}

/* ===============================
   GRID
================================ */

.approval-grid {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  border-radius: 4px;
  overflow: hidden;
}

/* ===============================
   CARD
================================ */
.approval-card {
  padding: 20px;
  text-align: center;
  border: 1px solid #1a2a4c;
  /* Collapses borders */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 200px;
  transition: background 0.3s ease;
}

/* Logo */
.approval-card img {
  height: auto;
  max-height: 150px;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 5px;
}

/* ===============================
   TEXT
================================ */
.approval-card h4 {
  font-family: 'Allerta';
  font-size: 13px;
  font-weight: 600;
  color: #1a2a4c;
  line-height: 1.2;
  margin: 0;
  text-transform: uppercase;
}

.industry-slider-wrapper.swiper .swiper-wrapper {
  display: flex;
}

.industry-slider-wrapper.swiper1 .swiper-wrapper {
  display: flex;
}


.course-section {
  padding: 50px 25px 100px 25px;
  background: #f8f9fb;
}

.course-section h2 {
  font-size: clamp(24px, 6vw, 38px);
  max-width: 900px;
  line-height: 1.3;
  text-transform: uppercase;
  font-weight: 800;
  margin: 0 auto;
  margin-bottom: 20px;
  text-align: center;
}

.course-section p {
  width: 100%;
  max-width: 900px;
  color: #444;
  font-size: 18px;
  line-height: 1.6;
  margin: 0 auto;
  margin-bottom: 30px;
  text-align: center;
}

/* Tabs */
.tabs {
  margin: 25px 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.tabs button {
  font-size: 16px;
  padding: 10px 18px;
  border-radius: 20px;
  border: none;
  background: #e5e5e5;
  cursor: pointer;
  transition: 0.3s;
}

.tabs button.active {
  background: #F77F00;
  color: #fff;
}

/* Tab content */
.course-section .tab-content {
  display: none;
}

.course-section .tab-content h3 {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
}

.course-section .tab-content.active {
  display: block;
}

/* Content Box */
.course-section .content-box {
  width: 100%;
  max-width: 1150px;
  min-height: 300px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  padding: 40px 60px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Program Filters */
.program-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  padding-bottom: 10px;
}

.filter-btn {
  padding: 7px 14px;
  border-radius: 30px;
  border: 1px solid #ddd;
  background: #fff;
  color: #666;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  border-color: #2b7cff;
  color: #2b7cff;
}

.filter-btn.active {
  background: #2b7cff;
  color: #fff;
  border-color: #2b7cff;
  box-shadow: 0 4px 10px rgba(43, 124, 255, 0.2);
}

/* Grid & Groups */
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  transition: all 0.4s ease;
}

.program-group {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.4s ease;
}

.program-group.hidden {
  display: none;
  opacity: 0;
  transform: translateY(10px);
}

.program-group h3 {
  font-size: 18px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  margin: 15px 0;
  color: #333;
  border-left: 4px solid #2b7cff;
  padding-left: 12px;
}

.program-group ul {
  list-style: none;
  padding: 0;
}

.program-group ul li {
  margin-bottom: 8px;
  font-size: 14px;
  color: #555;
  position: relative;
  padding-left: 18px;
  line-height: 1.4;
}

.program-group ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #2b7cff;
  font-weight: bold;
}

.industry--associations {
  padding-top: 115px;
  background: url("../images/bg-industry.png");
  width: 100%;
  height: 45vh;
  min-height: 700px;
  margin: 0 auto;
  padding-bottom: 60px;
  padding-left: 15px;
  padding-right: 15px;
}

.heading--row {
  padding-bottom: 75px;
}

.logo--industry .swiper-slide {
  background: var(--white);
  min-height: 160px;
  box-shadow: 0px 1px 14px 0px rgb(0 0 0 / 18%);
}

.logo--industry .swiper-slide img {
  object-fit: contain;
}

.logo--industry .swiper-wrapper {
  padding: 20px 0px;
}

.logo--industry .ia-swiper .pagination--myslide>.btn--swipe {
  position: relative;
  width: 30px;
  height: 30px;
  background: #39414c;
  border-radius: 50px;
  margin: 0;
}

.logo--industry .ia-swiper .pagination--myslide {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 50px;
}

.logo--industry .ia-swiper .pagination--myslide>.btn--swipe:after {
  font-size: 14px;
  color: #fff;
}

.logo--industry .ia-swiper .pagination--myslide>.line--swipe {
  max-width: 160px;
  width: 100%;
  height: 1px;
  background: #000;
  opacity: 0.2;
}

/* end Industry */
.cta-banner img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* infa--university */
.infa--university {
  max-width: 1600px;
  margin: 0 auto;
  padding-top: 80px;
  padding-bottom: 80px;
  padding-left: 15px;
  padding-right: 15px;
}

.infra-collage {
  display: grid;
  gap: 20px;
  padding: 20px;
}

.heading--row .heading--left {
  padding-right: 25px;
  width: 100%;
  background-image: linear-gradient(#ccc 33%, rgba(255, 255, 255, 0) 0%);
  background-position: right;
  background-size: 2px 11px;
  background-repeat: repeat-y;
}

.heading--row .content--right {
  width: 100%;
}

.heading--row {
  padding-bottom: 75px;
}

/* Each collage block */
.grid-slide,
.grid-slide1 {
  display: grid;
  grid-template-rows: 220px 220px;
  gap: 12px;
}

.grid-slide {
  grid-template-columns: 2fr 1fr 1fr;
}

.grid-slide1 {
  grid-template-columns: 1fr 1fr 2fr;
}

/* Images */
.grid-slide img,
.grid-slide1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}


.grid-slide .big,
.grid-slide1 .big {
  grid-row: span 2;
}

/* Make last 2 images bottom row */
.grid-slide img:nth-child(4),
.grid-slide img:nth-child(5) {
  grid-column: span 1;
}

.grid-slide1 img:nth-child(1),
.grid-slide1 img:nth-child(2) {
  grid-column: span 1;
}

/* footer */
.footer--ct {
  width: 100%;
  margin: 0 auto;
 
  padding: 0px 15px;
  display: flex;
  justify-content: center;
  background: linear-gradient(90deg,
      var(--primary-color),
      var(--secondary-color));
  min-height: 150px;
  align-items: center;
}

.footer--copy h3 {
  font-size: clamp(14px, 2vw, 35px);
  font-family: inherit;
}

.footer--copy p {
  text-align: center;
  font-size: 16px;
  margin-top: 10px;
  font-family: inherit;
}

.bottom-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffd400;
  /* banner color */
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
}

.cta-content {
  max-width: 1200px;
  margin: auto;
  padding: 12px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
}

.cta-action {
  display: flex;
  align-items: flex-start;
}

.cta-button {
  background: #005bbc;
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  margin-left: 15px;
  text-decoration: none;
  font-size: 14px;
}

.cta-button:hover {
  background: #333;
}

/* end footer */