/* ============================================================
   GKU LANDING PAGE — style.css
   Zero external dependencies. No Bootstrap.
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --red: #9F2B2C;
  --red-dark: #7D2223;
  --dark: #1F1A17;
  --dark2: #272727;
  --text: #383838;
  --muted: #666666;
  --white: #ffffff;
  --bg: #F6F6F6;
  --border: #E6E6E6;
  --hh: 70px;
  --ease: 0.28s ease;
  --r: 8px;
  --fh: "Jost", sans-serif;
  --fb: "Open Sans", sans-serif;
}

/* ── Reset ──────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--fb);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden !important;
  line-height: 1.6
}



a {
  text-decoration: none;
  color: inherit
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none
}

ul {
  list-style: none
}

/* ── Shared layout ──────────────────────────────────────────── */
.container {
  width: 80%;
  margin: 0 auto;
}

.container-fluid {
  width: 100%;
  padding-inline: 2rem
}

/* ── Typography helpers ─────────────────────────────────────── */

.eyebrow {
  color: #666;
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
}

.eyebrow-light {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  border-left: 3px solid #9F2B2C;
  padding-left: 10px;
  margin-bottom: 14px
}

.sec-title {
  font-family: var(--fh);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.4rem;
  line-height: 1.15
}

.sec-title-lg {
  color: #000;
  font-family: Jost;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 52px;
  margin-bottom: 20px;
}

.placement-sec-desc {
  color: #666;
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  margin-top: 1rem;
}

.text-center {
  text-align: center
}

.mx-auto {
  margin-inline: auto
}

/* ── Reveal animation (replaces AOS) ───────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease
}

.reveal.from-left {
  transform: translateX(-32px)
}

.reveal.from-right {
  transform: translateX(32px)
}

.reveal.visible {
  opacity: 1;
  transform: none
}

/* ══════════════════════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════════════════════ */

.header-inner {
  position: relative;
  height: 111PX;
  width: 100%;

}

/* Logo + NAAC badge area */
.site-header {
  width: 100%;
  background: var(--white);
  height: 111px;
  overflow: visible;
  position: fixed;
  top: 0;
  z-index: 999;
}

.header-logo-area {
  position: relative;
  z-index: 2;
  background: transparent;
  height: 100%;
  width: 55%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 12rem;
}

.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

/* Right panel */
.header-actions {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 56%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 5rem;
  z-index: 1;
}

.header-actions::before {
  content: "";
  position: absolute;
  top: 0;
  left: -0px;
  width: 100%;
  height: 100%;
  background: rgba(159, 43, 44, 1);
  clip-path: shape(from 0px 0%, curve to 240px 100% with 90px 0% / 75px 100%, line to 100% 100%, line to 100% 0%, close);
  z-index: -1;
}

.header-btns {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 2;
  margin-left: 10rem;

}


/* .header-btn-apply {
  border-radius: 10px;
  background: #FFF;
  max-width: 168px;
  max-height: 54px;
  padding: 1rem;
  color: #9F2B2C;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  display: none;

} */

.header-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 10rem;
}

/* Search Form */
.header-btns form {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid #fff;
  box-shadow: 0px 1px 0px 0px #FFFFFF;
  transition: all 0.3s ease;
}



/* Search Icon */
.header-btns form svg {
  width: 18px;
  height: 18px;
  color: #fff;
  flex-shrink: 0;
}

/* Input */
.header-btns form input {
  border: none;
  outline: none;
  background: transparent;

  color: #ffffff;
  font-size: 16px;
  font-weight: 500;

  width: 280px;
}

.header-btns form input::placeholder {
  color: rgba(255, 255, 255, 0.85);
}

/* New Search Results Styles */
.header-search-container {
  position: relative;
  max-width: 280px;
}

.header-search-container form {
  width: 100%;
}

.search-results-dropdown {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  max-height: 300px;
  overflow-y: auto;
  border: 1px solid #eee;
  min-width: 500px;
}

.search-results-dropdown ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.search-results-dropdown li {
  border-bottom: 1px solid #f5f5f5;
}

.search-results-dropdown li:last-child {
  border-bottom: none;
}

.search-results-dropdown a {
  display: block;
  padding: 12px 15px;
  color: #333;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s;
}

.search-results-dropdown a:hover {
  background: #f8f8f8;
  color: #9F2B2C;
}

.search-results-dropdown .no-results {
  padding: 15px;
  font-size: 14px;
  color: #666;
  text-align: center;
}

/* Call Button */
.header-btn-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 14px;
  border: 1px solid #FFFFFF;
  background: transparent;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.header-btn-call:hover {
  background: #9F2B2C;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.header-btn-call svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.header-call-group {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.header-call-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 115px;
  border-radius: 10px 0 10px 10px;
  padding: 0.6rem;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
  z-index: 50;
  background: #9F2B2C;
}

.header-call-group.open .header-call-menu {
  display: flex;
}

.header-call-link {
  display: block;
  width: 100%;
  padding: 4px 10px;
  border-radius: 12px;
  background: #f8f8f8;
  color: #1f1f1f;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.desktop-only {
  display: inline-flex;
}

.mobile-only {
  display: none;
}



.btn-apply:hover {
  background: #f7f7f7;
}



.btn-brand:hover {
  background: rgba(255, 255, 255, .14);
}

.btn-brand svg,
.btn-apply svg {
  display: inline-flex;
  vertical-align: middle;
}

/* ══════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════ */
/* .hero-section {
  position: relative;
  display: flex;
  align-items: center;
  height: calc(100vh - 243px);
  width: 100%;
   background-position: center !important;
       background-size: cover !important;
       background-repeat: no-repeat !important;
} */

.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  height: 700px;
  width: 100%;
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  margin-top: 111px !important;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-container {
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Left */
.hero-left {
  flex: 1;
  max-width: 684px;
  padding-bottom: 2rem
}

.hero-tagline {
  color: #9F2B2C;
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
}

.hero-uni-content {
  display: flex;
  align-items: center;
  padding: 20px 0 0 0;
}

.hero-uni-name {
  color: #000;
  font-family: Jost;
  font-size: 34px;
  font-style: italic;
  font-weight: 500;
  line-height: 138.1%;
  text-transform: capitalize;
}

.plus-badge {
  display: inline-block;
  background: #9F2B2C;
  color: #9F2B2C;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-left: 6px;
  vertical-align: middle;
  font-size: 0;
  margin-left: 1.5rem;
}

.uni-name-line {
  width: 194px;
  height: 2px;
  background: #9F2B2C;
}

.hero-title {
  color: #9F2B2C;
  font-family: Jost;
  font-size: 54px;
  font-style: normal;
  font-weight: 800;
  line-height: 138.1%;
  text-transform: capitalize;
  margin-bottom: 1.2rem
}

.hero-desc {
  color: #000;
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 1.8rem
}

.hero-btns {
  display: flex;
  gap: 1rem
}

.hero-btns .hero-apply-now {
  max-width: 213px;
  max-height: 54px;
  border-radius: 10px;
  background: #9F2B2C;
  color: var(--white);
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
}

.hero-btns .hero-exp-program {
  background: transparent;
  color: #9F2B2C;
  border-radius: 10px;
  border: 1px solid #9F2B2C;
}

.hero-btns .hero-exp-program:hover {
  background: #9F2B2C;
  color: #fff;
  border-radius: 10px;
  border: 1px solid #9F2B2C !important;
}

.hero-btns .hero-exp-program:hover svg,
.hero-btns .hero-exp-program:hover svg path {
  fill: #fff !important;
  stroke: #fff !important;
}


.btn-primary {
  background: #9F2B2C;
  color: var(--white);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .5px;
  padding: 13px 26px;
  border-radius: 50px;
  border: 2px solid #9F2B2C;
  transition: var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 7px
}

.btn-primary:hover {
  background: #9F2B2C;
  border-color: #9F2B2C
}

.btn-outline {
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: .82rem;
  padding: 13px 26px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, .35);
  transition: var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 7px
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, .08)
}

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  margin-top: 2rem;
  gap: 3rem;
}

.hstat {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hstat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border: 2px solid #9F2B2C;
  border-radius: 50%;
  padding: 10px;
}

.hstat-icon-1 {
  padding: 20px;
}

.hstat-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
  padding-top: 1rem;
  padding-left: 8px;
}


.hstat-val {
  color: #9F2B2C;
  font-family: Jost;
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 138%;
  text-transform: capitalize;
}

.hstat-lbl {
  color: #000;
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}



/* Right: girl + form */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  flex-shrink: 0;
  max-width: 321px;
  max-height: 532px;
}


/* Apply form card */
.form-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .22);
  flex-shrink: 0
}

.form-card-head {
  text-align: center;
  padding-top: 1rem;
}

.form-card-head h3 {
  color: #9F2B2C;
  text-align: center;
  font-family: Jost;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 2px
}

.form-card-head p {
  color: #000;
  text-align: center;
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
}

.form-card-head p span {
  color: #9F2B2C;
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
}

.apply-form {
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 3px
}

.field-wrap {
  display: flex;
  align-items: center;
  border-radius: 6px;
  border: 1px solid #AFAFAF;
  overflow: hidden;
  min-width: 0;
}

.field-wrap:focus-within {
  border-color: var(--red);
  background: var(--white)
}

.field-wrap.error {
  border-color: #e74c3c
}

.field-icon {
  padding: 0 9px;
  color: var(--muted);
  flex-shrink: 0;
  display: flex;
  align-items: center
}

.field-icon svg {
  width: 15px;
  height: 15px
}

.lp-input,
.lp-select {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--fb);
  font-size: 14px;
  color: #666666;
  padding: 10px 8px 10px 0;
  margin-right: 10px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.lp-input::placeholder {
  color: #666666 !important;
}

.lp-select {
  cursor: pointer
}

.field-error {
  font-size: .7rem;
  color: #9F2B2C;
  padding-left: 2px;
  min-height: 10px
}

.submit-check {
  display: flex;
  gap: 10px;

}

.submit-check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;

  width: 25px;
  height: 15px;
  border: 1.5px solid #9F2B2C;
  border-radius: 4px;
  background: #fafafa;
  cursor: pointer;
  margin-top: 3px;
}


.submit-check input[type="checkbox"]:checked {
  border-color: #9F2B2C;
  background: white;
  width: 30px;
  height: 20px;
}

.submit-check input[type="checkbox"]:checked::after {
  content: "✓";
  color: #9f2b2c;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.submit-check p {
  color: #000;
  font-family: "Open Sans";
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}



.btn-form-submit {
  max-width: 281px;
  max-height: 39px;
  border-radius: 6px;
  background: #9F2B2C;
  color: #FFF;
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 10px;
  margin-top: 1rem;
}

.btn-form-submit svg {
  margin-left: 6px;
}

.btn-submit:hover {
  background: #9F2B2C;
}

.form-note,
.form-login {
  font-size: .78rem;
  color: #666;
  margin: .8rem 0 0;
  line-height: 1.4;
}

.form-login {
  color: var(--dark);
}

.form-login a {
  color: #9F2B2C;
  text-decoration: none;
  font-weight: 700;
}

.btn-submit:disabled {
  opacity: .7;
  cursor: not-allowed
}

.spinner {
  display: inline-block;
  width: 13px;
  height: 13px;
  border: 2px solid rgba(255, 255, 255, .35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

/* ══════════════════════════════════════════════════════════════
   ACCREDITATION BAR
   ══════════════════════════════════════════════════════════════ */
.accred-bar {
  background: var(--red);
  min-height: 134px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.accred-outer {
  overflow: hidden;
}


.accred-inner {
  display: flex;
  align-items: center;
  width: max-content;
  animation: accred-marquee 6s linear infinite;
  will-change: transform;
}

@keyframes accred-marquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-25%)
  }
}

.accred-bar:hover .accred-inner {
  animation-play-state: paused;
}

.accred-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: .9rem 2.2rem;
  color: var(--white);
  white-space: nowrap;
  max-width: 230px;
  margin: 0 auto;
}

.accred-item img {
  height: 70px;
  width: 70px;
}

.accred-item .ai-icon {
  font-size: 2rem;
  opacity: .8
}

.accred-item span {
  color: #FFF;
  font-family: Jost;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}

.accred-item small {
  opacity: .72
}



/* ══════════════════════════════════════════════════════════════
   PLACEMENT OVERVIEW
   ══════════════════════════════════════════════════════════════ */
.placement-section {
  width: 100%;
}

.placement-container {
  width: 80%;
  margin: 0 auto;
  padding: 5rem 2rem;
  position: relative;
  overflow: visible;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center
}

.placement-img {
  border-radius: var(--r);
  max-width: 560px;
  height: auto;
  position: relative;
  z-index: 1;
}

.placement-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.placement-eyebrow {
  color: #666;
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
}

.eyebrow-rule {
  display: flex;
  align-items: center;
  margin-bottom: 1.4rem;
  margin-top: 1rem;
}

.eyebrow-rule--center {
  justify-content: center
}

.eyebrow-rule--light .eyebrow-dot {
  background: rgba(255, 255, 255, .7)
}

.eyebrow-rule--light .eyebrow-line {
  background: rgba(255, 255, 255, .3)
}

.eyebrow-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0
}

.eyebrow-line {
  width: 186px;
  height: 2px;
  background: #9F2B2C
}


.why-section .eyebrow-rule {
  margin: 10px 0;

}

.why-section .eyebrow-line {
  width: 130px;
}

.text-red {
  color: var(--red)
}

.placement-title {
  color: #9F2B2C;
  font-family: Jost;
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
}

.placement-info-box {
  position: absolute;
  top: 90px;
  right: -125px;
  background: var(--red);
  color: var(--white);
  padding: 1.4rem 1.6rem;
  z-index: 3;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-radius: 30px;
  background: #9F2B2C;
  width: 264px;
  height: 146px;
}

.placement-info-box h4 {
  color: #FFF;
  font-family: Jost;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.placement-info-box p {
  color: #FFF;
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  text-transform: capitalize;
}

/* ══════════════════════════════════════════════════════════════
   STATS BAR
   ══════════════════════════════════════════════════════════════ */


.stats-bar-inner {
  margin-inline: auto;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid #D9D9D9;
  background: #fff;
}

/* LEFT RED BOX */

.stats-tagline {
  border-radius: 30px 0 0 30px;
  background: #9F2B2C;
  padding: 2.5rem 2rem;
  display: flex;
  align-items: center;

  max-width: 447px;
}

.stats-tagline h2 {
  font-family: var(--fh);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

/* RIGHT GRID */

.stats-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
}

.stat-col {
  text-align: center;
  padding: 1.8rem 1rem;
  border-left: 1px solid #D9D9D9;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sbar-num {
  display: block;
  font-family: var(--fh);
  font-size: 36px;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}

.sbar-lbl {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-top: 8px;
}

.sbar-desc {
  display: block;
  font-size: 14px;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.5;
}

/* ══════════════════════════════════════════════════════════════
   RECRUITERS MARQUEE
   ══════════════════════════════════════════════════════════════ */
.recruiters-section {
  padding: 4rem 0;
  background: var(--white);
  overflow: hidden
}

.recruiters-section .sec-title {
  margin-bottom: 2.2rem;
  color: #000;
  text-align: center;
  font-family: Jost;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 52px;
}

.marquee-outer {
  overflow: hidden
}

.marquee-inner {
  display: flex;
  align-items: center;
  animation: marquee 60s linear infinite;
  will-change: transform;
  width: max-content
}

.marquee-inner img {
  height: 106px;
  width: 160px;
  object-fit: cover;
}

.marquee-inner img:hover {
  transform: scale(1.05);
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.marquee-outer:hover .marquee-inner {
  animation-play-state: paused
}

/* ══════════════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════════════ */
.testimonials-section {
  background: var(--red);
  position: relative;
  overflow: visible;
  margin-top: 4rem;
}

/* ── Outer flex row: girl-left + content-right ─────────────── */
.testi-wrap {
  display: flex;
  align-items: stretch;
  min-height: 420px;
  margin: 0 auto;
  max-width: 100%;
}

/* ── Left: girl image ──────────────────────────────────────── */
.testi-left {
  flex: 0 0 36%;
  position: relative
}

.testi-girl-img {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 118%;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  z-index: 10;
  pointer-events: none
}

/* ── Right: heading + carousel ─────────────────────────────── */
.testi-right {
  flex: 1;
  min-width: 0;
  padding: 3.5rem 3rem 3.5rem 0
}

.testi-heading-wrap {
  margin-bottom: 1.8rem
}

.testi-heading {
  font-family: var(--fh);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem
}

.testi-heading-line {
  position: relative;
  width: 240px;
  height: 3px;
  background: #ffffff;
  margin-left: 16px;
}

/* Circle Before Line */
.testi-heading-line::before {
  content: "";

  position: absolute;
  left: -10px;
  top: 50%;

  width: 14px;
  height: 14px;

  border-radius: 50%;
  background: #ffffff;

  transform: translateY(-50%);
}

/* ── Carousel area: [<] [track] [>] ───────────────────────── */
.testi-carousel-area {
  display: flex;
  align-items: center;
}

.carousel-wrap {
  flex: 1;
  min-width: 0;
  overflow: hidden
}

.carousel-track {
  display: flex;
  transition: transform .55s cubic-bezier(.4, 0, .2, 1)
}

.carousel-track.no-transition {
  transition: none !important;
}

.carousel-slide {
  max-width: 100%;
  flex-shrink: 0;
  padding-right: 1rem;
  box-sizing: border-box
}

/* ── Card ──────────────────────────────────────────────────── */
.testi-card {
  max-width: 772px;
  height: 236px;
  display: flex;
  border-radius: 10px;
  background: #FFF;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 20px;
}

.testi-avatar-col {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem
}



.testi-avatar img {
  width: 156px;
  height: 156px;
  border-radius: 10px;
}

.testi-name {
  color: #9F2B2C;
  font-family: Jost;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
}

.testi-body {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center
}

.testi-body p {

  color: #000;
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  text-align: justify;

}

/* ── Nav buttons ───────────────────────────────────────────── */
.carousel-btn {
  background: #FFF;
}

.carousel-btn.prev {
  width: 40px;
  height: 40px;
  border-radius: 10px 0 0 10px;
  cursor: pointer;
}

.carousel-btn.next {
  width: 40px;
  height: 40px;
  border-radius: 0 10px 10px 0;
  cursor: pointer;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, .3)
}

.carousel-btn svg {
  width: 16px;
  height: 16px
}

/* ── Dots ──────────────────────────────────────────────────── */
/* .carousel-dots {
  display: flex;
  gap: 8px;
  margin-top: 1.2rem
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35);
  border: none;
  cursor: pointer;
  transition: var(--ease)
}

.carousel-dot.active {
  background: var(--white);
  width: 22px;
  border-radius: 4px
} */

/* ══════════════════════════════════════════════════════════════
   WHY CHOOSE GKU
   ══════════════════════════════════════════════════════════════ */
.why-section {
  padding: 5rem 0 0 0;
  background: var(--bg)
}

.why-two-col {
  display: flex;
  margin-top: 1rem;
  align-items: center;
}

.why-heading {
  color: var(--red);
}

.why-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin: 1rem 0 1.5rem
}

.why-mini-stats {
  display: flex;
  gap: 4.5rem;
  margin: 1.4rem 0 1.8rem;
  flex-wrap: wrap
}

.wstat-item {
  display: flex;
  align-items: center;
  gap: .7rem
}

.wstat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--red);
  flex-shrink: 0;
  padding: 15px;
}


.wstat-icon img {
  width: 30px;
  height: 30px;
  object-fit: cover;

}

.wstat-content {
  display: flex;
  flex-direction: column
}

.wstat-num {
  display: block;
  font-family: var(--fh);
  font-size: 30px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1
}

.wstat-lbl {
  display: block;
  font-size: .72rem;
  color: var(--muted);
  margin-top: 3px
}

.why-campus-img {
  width: 100%;

  overflow: hidden;
  border-radius: 20px;
}


.why-campus-img img {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  object-fit: cover
}

/* Right column — vertical timeline */
.why-points-wrap {
  position: relative;
  padding-left: 50px;
  width: 50%;

}

.why-points-wrap::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 46px;
  bottom: 38px;
  border-left: 2px dotted #d0d0d0;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.why-point {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.8rem;
  border: 1px solid var(--border);
  cursor: pointer;
  border-radius: 8px;
  background: var(--white)
}

.why-point::before {
  content: '';
  position: absolute;
  left: -55px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #ccc;
  background: var(--white);
  z-index: 1
}

.why-point--active {
  background: var(--red);
  border-color: var(--red)
}

.why-point--active::before {
  border-color: var(--red);
  background: var(--red)
}

.why-point--active::after {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);


  width: 16px;
  height: 16px;
  background: #9f2b2c;
  clip-path: polygon(0 50%,
      65% 0,
      65% 30%,
      100% 30%,
      100% 70%,
      65% 70%,
      65% 100%);
}

.wp-text {
  flex: 1
}

.wp-text h4 {
  font-size: .97rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px
}

.wp-text p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0
}

.why-point--active .wp-text h4 {
  color: var(--white)
}

.why-point--active .wp-text p {
  color: rgba(255, 255, 255, .85)
}

.wp-num {
  font-family: var(--fh);
  font-size: 2.5rem;
  font-weight: 800;
  color: #e5bebe;
  padding-left: 20px;
  flex-shrink: 0;
  line-height: 1
}

.why-point--active .wp-num {
  color: var(--white);
}

.why-left-content {
  position: relative;
  min-height: 680px;
  width: 50%;
}

.why-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
}

.why-panel.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

/* ══════════════════════════════════════════════════════════════
   CAMPUS LIFE
   ══════════════════════════════════════════════════════════════ */
.campus-section {
  padding: 5rem 0;
  background: var(--white)
}

.campus-section .eyebrow-line {
  width: 100px;
  height: 2px;
  background: #9F2B2C;
}

.campus-two-col {

  grid-template-columns: 3fr 2fr
}

/* .campus-side-img {
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .1);
  position: sticky;
  top: 100px
} */

.campus-section .sec-desc {
  max-width: 653px;
  font-family: Open Sans;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #666666;

}

.campus-side-img img {
  width: 100%;
  height: 100%;
}

.campus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem
}

.campus-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.2rem 1rem;
  position: relative;
  overflow: hidden;
  transition: var(--ease)
}

.campus-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--red);
  transition: width var(--ease)
}

.campus-card:hover {
  box-shadow: 0 8px 28px rgba(160, 43, 45, .08);
  transform: translateY(-2px)
}

.campus-card:hover::after {
  width: 100%
}

.campus-icon {
  width: 60px;
  height: 60px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white)
}


.campus-card-text {
  flex: 1
}

.campus-card h5 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .3rem
}

.campus-card p {
  font-size: .82rem;
  color: #000;
  line-height: 1.6;
  margin: 0
}

/* ══════════════════════════════════════════════════════════════
   RESEARCH
   ══════════════════════════════════════════════════════════════ */
.research-section {
  width: 100%;
  background: var(--red);
  padding: 2rem 0rem;
  position: relative;
}

.research-container {
  width: 80%;
  margin: 0 auto;
}

.research-section .eyebrow-light {
  color: #FFF;
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 0px;
  padding-left: 0px;

}

.research-content {
  display: flex;
}

.research-section .eyebrow-rule .eyebrow-dot {
  background: #fff;
}

.research-section .eyebrow-rule .eyebrow-line {
  background: #ffff;
  width: 104px;
  height: 2px;

}

.research-two-col {
  align-items: center;
  grid-template-columns: 3fr 2fr;
  gap: 4rem
}

.research-left {
  position: relative;
  z-index: 1
}

.research-right {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center
}

.research-heading {
  color: #FFF;
  font-family: Jost;
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.research-desc {
  color: #FFF;
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 300 !important;
  line-height: 30px;
  margin-top: 1rem;
  max-width: 700px;
}

.research-stats {
  display: flex;
  align-items: center;
  gap: 0
}

.rstat {
  text-align: center;
  padding: 0 2rem
}

.rstat-num {
  color: #FFF;
  text-align: center;
  font-family: Jost;
  font-size: 58px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.rstat-lbl {
  display: block;
  color: #FFF;
  text-align: center;
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  white-space: nowrap;
}

.rstat-sep {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, .3)
}

/* ══════════════════════════════════════════════════════════════
   ADVANTAGES
   ══════════════════════════════════════════════════════════════ */
.advantages-section {
  padding: 5rem 0 0 0;
  background: var(--white)
}

.advantages-section .eyebrow-rule--center {
  margin: 10px 0;
}

.advantages-section .eyebrow-line {
  width: 110px;

}

.advantages-section .sec-title-lg {
  margin-bottom: 10px;

}

.advantages-section .sec-desc {
  font-family: Open Sans;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
  color: #000000;
  max-width: 852px;
}

.adv-header {
  margin-bottom: 3rem
}

.adv-title {
  font-family: Jost;
  font-size: 36px;
  font-weight: 600;
  line-height: 52px;
}

.adv-two-col {
  align-items: flex-start
}

.adv-accordion {
  margin-top: 0
}

.adv-item {
  border-bottom: 1px solid var(--border)
}

.adv-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  text-align: left;
  color: var(--dark);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: color var(--ease)
}

.adv-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(159, 43, 44, .12);
  color: rgba(159, 43, 44, .45);
  font-family: var(--fh);
  font-size: .85rem;
  font-weight: 800;
  flex-shrink: 0;
  transition: background var(--ease), color var(--ease)
}

.adv-btn.active .adv-num {
  background: var(--red);
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
}

.adv-label {
  flex: 1;
  font-size: 26px;
}

.adv-icon {
  flex-shrink: 0;
  color: var(--muted);
  transition: transform var(--ease);
  display: flex;
  align-items: center
}

.adv-btn.active .adv-icon {
  transform: rotate(180deg);
  color: var(--red)
}

.adv-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease
}

.adv-panel.open {
  max-height: 200px
}

.adv-body {
  padding: 0.2rem 0 1.2rem 4.6rem;
  color: #000;
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;

}

.adv-img-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.adv-img-sec,
.adv-img-main {
  width: 100%;
  object-fit: cover;
  border-radius: var(--r);
}

.adv-img-sec {
  height: 225px;
}

.adv-img-main {
  grid-column: 1 / -1;
  height: 254px;
}

/* ══════════════════════════════════════════════════════════════
   GALLERY
   ══════════════════════════════════════════════════════════════ */
.gallery-hero {
  overflow: hidden;
}

.gallery-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.gallery-thumbs {
  display: flex;
  height: 200px
}

.gallery-thumb {
  flex: 1;
  overflow: hidden
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.72);
  transition: filter var(--ease), transform var(--ease)
}

.gallery-thumb img:hover {
  filter: brightness(1);
  transform: scale(1.04)
}

/* ══════════════════════════════════════════════════════════════
   CTA
   ══════════════════════════════════════════════════════════════ */
.cta-section {
  padding: 4rem 0rem;
  width: 80%;
  margin: 0 auto;
}

.cta-card {
  position: relative;
  border-radius: 14px;
}

.cta-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 96%;
  object-fit: fill;
  object-position: right center;
  border-radius: 14px;
}


.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.5rem 1.88rem;

}

.cta-text {
  display: flex;
  flex-direction: column;
  gap: .3rem
}

.cta-row {
  display: flex;
  align-items: center;
  gap: .7rem
}

.cta-main-text {
  font-family: var(--fh);
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  font-weight: 700;
  color: var(--white);
  white-space: nowrap
}

.cta-dot-inline {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--white);
  flex-shrink: 0
}

.cta-line-inline {
  position: relative;
  width: 100px;
  height: 2px;
  background: var(--white);
  flex-shrink: 0;
}

/* Common Circle */
.cta-line-inline::before,
.cta-line-inline::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--white);
  transform: translateY(-50%);
}

/* Only Right Circle */
.line-right::before {
  display: none;
}

.line-right::after {
  right: -5px;
}

/* Only Left Circle */
.line-left::after {
  display: none;
}

.line-left::before {
  left: -5px;
}

.btn-cta {
  background: var(--white);
  color: var(--red);
  font-weight: 700;
  font-size: .95rem;
  padding: 14px 36px;
  border-radius: 8px;
  border: 2px solid var(--white);
  transition: var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  flex-shrink: 0
}

.btn-cta:hover {
  background: var(--red);
  border: none;
  color: var(--white);
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--white);
  padding: 3rem 2rem 1.5rem
}

.footer-inner {
  margin-inline: auto;
  text-align: center
}

.footer-logo {
  height: 120px;
  width: auto;
  margin-inline: auto;
  margin-bottom: 1.2rem;
  object-fit: contain;
  display: block
}

.footer-tagline {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 1.4rem;
  max-width: 560px;
  margin-inline: auto
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.8rem;
  flex-wrap: wrap
}

.footer-links a {
  color: #000;
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  text-transform: capitalize;
}

.footer-links a:hover {
  color: var(--red)
}

.fl-sep {
  width: 6px;
  height: 6px;
  aspect-ratio: 1/1;
  background: #000;
  border-radius: 50%;
}

.footer-socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 1.8rem;
  flex-wrap: wrap
}

.footer-socials a svg,
.footer-socials a svg path {
  transition: all 0.25s ease;
}

.footer-socials a:hover svg path {
  fill: var(--red) !important;
  stroke: var(--red) !important;
}

.footer-socials a:hover {
  border-color: #fff;
  background: #0000;
  color: #fff;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: #000;
  margin-bottom: 1.2rem
}

.footer-copy {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.7
}

/* ══════════════════════════════════════════════════════════════
   TOAST
   ══════════════════════════════════════════════════════════════ */
.gku-toast {
  position: fixed;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%) translateY(70px);
  z-index: 9999;
  background: var(--dark2);
  color: var(--white);
  padding: .9rem 1.5rem;
  border-radius: 7px;
  font-size: .88rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .25);
  cursor: pointer;
  opacity: 0;
  transition: transform .38s cubic-bezier(.34, 1.56, .64, 1), opacity .38s ease;
  max-width: calc(100vw - 2rem)
}

.gku-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0)
}

.gku-toast.success {
  border-left: 4px solid #22c55e
}

.gku-toast.success svg {
  color: #22c55e
}

.gku-toast.error {
  border-left: 4px solid #ef4444
}

.gku-toast.error svg {
  color: #ef4444
}

.gku-toast svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0
}

.mobile-sticky-btns {
  display: none;
}


/* shake */
@keyframes shake {

  0%,
  100% {
    transform: translateX(0)
  }

  20% {
    transform: translateX(-6px)
  }

  40% {
    transform: translateX(6px)
  }

  60% {
    transform: translateX(-4px)
  }

  80% {
    transform: translateX(4px)
  }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */





@media(max-width:900px) {
  .accred-sep {
    display: none
  }

  .accred-item {
    flex: 1 1 30%;
    padding: .8rem
  }



  .stat-col {
    flex: 1 1 45%;
    border-left: none;
    border-top: 1px solid var(--border)
  }



  .cta-row {
    justify-content: center
  }

  .cta-line-inline {
    width: 50px
  }

  .rstat {
    padding: 0 2rem
  }

}



@media(max-width:680px) {
  :root {
    --hh: 60px
  }

  .btn-brand {
    display: none
  }


  .hero-title {
    font-size: 2.8rem
  }

  /* .hero-right {
    flex-direction: column;
    align-items: center;
    width: 100%
  } */

  .form-card {
    width: 100%;
    /* max-width: 340px */
  }

  .hero-girl-img {
    height: 240px
  }



  .hstat-sep {
    display: none
  }


  .campus-grid {
    grid-template-columns: 1fr
  }

  .testi-wrap {
    flex-direction: column;
    align-items: stretch
  }



  .testi-right {
    padding: 2.5rem 1.5rem
  }

  .carousel-slide {
    max-width: 100% !important;
    margin: 0 auto;
  }

  .testi-card {

    text-align: center;

  }

  .testi-avatar-col {
    align-items: center
  }

  .why-mini-stats {
    justify-content: center
  }

  .why-points-wrap {
    padding-left: 35px
  }

  .why-points-wrap::before {
    left: 3px
  }

  .why-point::before {
    left: -22px
  }

  .campus-two-col {
    grid-template-columns: 1fr
  }


  .research-two-col {
    grid-template-columns: 1fr;
    gap: 2.5rem
  }



  .rstat-sep {
    display: none
  }

  .adv-two-col {
    grid-template-columns: 1fr
  }

  .gallery-thumbs {
    height: 140px
  }

  .search-results-dropdown {
    left: -100px;
    min-width: 300px;
  }
}

@media (max-width:575px) {
  .logo-img {
    height: 32px !important;
  }

  .header-search-container {
    width: 138px !important;

  }

  .search-results-dropdown {
    left: -125px;
    min-width: 265px;
  }


}

@media (max-width:480px) {



  .logo-img {
    height: 24px !important;
  }

  .hero-left {
    padding: 0px 10px !important;
  }

  .cta-inner {

    padding: 3.5rem 2rem;
  }

  .cta-text {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    left: 18px;
    top: 14px;
  }

  .btn-cta {

    justify-content: center;
    display: flex;
    position: absolute;
    right: 10px;
    bottom: 13px;
  }

  .header-search-container {
    width: 95px !important;

  }



  .accred-inner {
    gap: 5px !important;
  }

  .accred-item img {
    height: 40px;
    width: 40px;
  }

  .accred-item span {

    font-size: 8px;

    line-height: 100%;
  }

  .marquee-inner img {
    height: 50px;
    width: 70px;
    object-fit: cover;
  }

  .header-btns form {
    max-width: 140px !important;

  }


}

@media (max-width:360px) {
  .logo-img {
    height: 20px !important;
  }

}