/* ============================================================
   AAMOON CARE - MAIN STYLESHEET
   Brand Colours: Purple #7B2D8E | Green #8DC63F | Dark Purple #5C2D82
   ============================================================ */

/* --- CSS Reset & Variables --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --purple: #7B2D8E;
  --purple-dark: #5C2D82;
  --purple-light: #9B4DB0;
  --purple-bg: #F8F0FA;
  --green: #8DC63F;
  --green-dark: #6FA030;
  --green-light: #A8D96A;
  --green-bg: #F4FAE8;
  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --light-grey: #F5F5F5;
  --mid-grey: #E0E0E0;
  --text-dark: #2D2D2D;
  --text-body: #4A4A4A;
  --text-light: #717171;
  --font-heading: 'Nunito Sans', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --max-width: 1280px;
  --header-height: 80px;
  --transition: 0.3s ease;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --radius: 8px;
  --radius-lg: 16px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-body);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block;border-radius: 15px;}
a { color: var(--purple); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green-dark); }
ul, ol { list-style: none; }

.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.3;
  font-weight: 700;
}
h1 { font-size: 2.8rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.4rem; margin-bottom: 12px; }
h4 { font-size: 1.15rem; margin-bottom: 10px; }
p { margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-align: center;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: transparent;
  color: var(--purple);
  border-color: var(--purple);
}
.btn-secondary:hover {
  background: var(--purple);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-white {
  background: var(--white);
  color: var(--purple);
  border-color: var(--white);
}
.btn-white:hover {
  background: #842673;
  color: var(--white);
  border-color: var(--green);
  transform: translateY(-2px);
}

/* ============================================================
   HEADER
   ============================================================ */
/*.site-header {*/
/*  position: sticky;*/
/*  top: 0;*/
/*  left: 0;*/
/*  width: 100%;*/
/*  height: var(--header-height);*/
/*  background: var(--white);*/
/*  box-shadow: var(--shadow-sm);*/
/*  z-index: 1000;*/
/*  transition: box-shadow var(--transition);*/
/*}*/
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.header-logo img {
  height: 55px;
  width: auto;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn_hero { display: flex;}


/* Navigation */
.main-nav { display: flex; align-items: center; gap: 15px; }
.main-nav > li { position: relative; }
.main-nav > li > a {
  display: block;
  padding: 8px 16px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.main-nav > li > a:hover,
.main-nav > li > a.active {
  color: var(--purple);
  background: var(--purple-bg);
}

/* Dropdowns */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 100;
}
.main-nav > li:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 0.88rem;
  color: var(--text-body);
  transition: all var(--transition);
}
.dropdown-menu li a:hover {
  background: var(--purple-bg);
  color: var(--purple);
  padding-left: 24px;
}
/* Nested dropdown */
.dropdown-menu .has-sub { position: relative; }
.dropdown-menu .has-sub > .sub-menu {
  position: absolute;
  left: 100%;
  top: 0;
  min-width: 240px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.25s ease;
}
.dropdown-menu .has-sub:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.dropdown-menu .has-sub > a::after {
  content: '\203A';
  float: right;
  font-size: 1.2rem;
}

/* Header CTA */
.header-cta .btn { padding: 10px 22px; font-size: 0.88rem; }

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--purple);
  margin: 5px 0;
  border-radius: 2px;
  transition: all var(--transition);
}
.top-bar {
    color: var(--white);
    font-size: 0.85rem;
    padding: 10px 0;
    background: linear-gradient(135deg, #56b35a 0%, #85b115 100%);
}

.top-bar-right a{color: #fff;}


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--purple-dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 24px 24px 24px;
}
.footer-brand img { padding: 10px; height: 82px; margin-bottom: 16px; background: #fff;}
.footer-brand p { font-size: 0.9rem; line-height: 1.6; margin-bottom: 12px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  color: var(--white);
  font-size: 1rem;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--green); color: var(--white); transform: translateY(-2px); }

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green);
  display: inline-block;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  color: #fff;
  font-size: 0.88rem;
  transition: all var(--transition);
}
.footer-col ul li a:hover { color: var(--green); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: #fff;
  margin: 0;
}
.footer-bottom a { color: var(--green); }
.flag-box {
    background: #fff;
    padding: 17px;
    gap: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mt-custom {
    margin-top: 52px;
}
.grid-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 30px;
}
.flag-box img {
    width: 130px;
    border-radius: 10px;
}
.flag-box h3 {
    color: #53af02;
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 700;
}
.flag-box p {
    color: #000000;
    font-size: 15px;
    margin-bottom: 0px;
}
.cta_info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #efefef;
    padding-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}
.cta_info ul { display: flex;gap: 15px;}
.cta_info a {
    color: #fff;
    font-size: 14px;
    display: inline-flex;
    align-items: anchor-center;
}

/* ============================================================
   HERO SECTIONS
   ============================================================ */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 60%, var(--purple-light) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(141,198,63,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(141,198,63,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.hero .container { position: relative; z-index: 1; }
.hero h1 { color: var(--white); font-size: 3rem; max-width: 700px; }
.hero p { font-size: 1.15rem; max-width: 600px; opacity: 0.9; margin-bottom: 24px; line-height: 1.8; }
.btn_hero .btn.btn-white { margin-right: 12px;}
.hero-home { padding: 60px 0 60px; }
.hero-home h1 { font-size: 49px; }

/* Page heroes (inner pages) */

.hero-inner h1 {
    font-size: 45px;
    margin-bottom: 0px;
    color: #fff;
    text-align: center;
    font-weight: 800 !important;
}

.hero-inner {
    padding: 80px 0 80px;
    background: linear-gradient(135deg, rgba(75,0,130,0.7) 0%, rgba(128,0,128,0.6) 100%, rgba(200,150,255,0.5) 100%),
        url("../images/white-banner-with-triangle-halftone-shapes.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 80px 0; }
.section-alt { background: var(--light-grey); }
.section-purple { background: var(--purple-bg); }
.section-green { background: var(--green-bg); }

.section-header { text-align: center; max-width: 800px; margin: 0 auto 48px; }
.section-header h2 { color: var(--purple-dark); }
.section-label {
  display: inline-block;
  padding: 4px 16px;
  background: var(--green-bg);
  color: var(--green-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

/* ============================================================
   CARDS
   ============================================================ */
.card-grid {
  display: grid;
  gap: 24px;
}
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--mid-grey);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-light);
}
.card-icon {
  /*width: 56px;*/
  /*height: 56px;*/
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: var(--purple);
}

.card-grid h2 { font-size: 26px; display: flex; align-items: center;}
.card-grid-4 p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.card h3 { font-size: 1.2rem; }
.card h3 a { color: var(--text-dark); }
.card h3 a:hover { color: var(--purple); }
.card p { font-size: 0.92rem; color: var(--text-light); }

/* Service cards */
.service-card { text-align: center; padding: 40px 28px; }
.service-card .card-icon { margin: 0 auto 16px; }
.service-card h3 { margin-bottom: 8px; }

.service_box .service-card {
    background: var(--purple-bg);
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    padding: 20px;
}
.service_box{align-items: normal !important; gap: 30px !important;}


/* ============================================================
   IMAGE PLACEHOLDERS
   ============================================================ */
.img-placeholder {
  background: var(--light-grey);
  border: 2px dashed var(--mid-grey);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.88rem;
  font-family: var(--font-heading);
  text-align: center;
  padding: 20px;
  min-height: 200px;
}
.img-placeholder-lg { min-height: 300px; }
.img-placeholder-sm { min-height: 150px; }

/* ============================================================
   CONTENT LAYOUT
   ============================================================ */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.content-grid-reverse { direction: rtl; }
.content-grid-reverse > * { direction: ltr; }

.content-block h2 { color: var(--purple-dark); }
.content-block h3 { color: var(--purple); margin-top: 20px; }
.content-block ul { margin: 12px 0 16px 0; }
.content-block ul li {
  padding: 6px 0 6px 24px;
  position: relative;
  font-size: 0.95rem;
}
.content-block ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
}

.accommodation-sec a{color: #4a4a4a; font-weight: 500;}
.accommodation-sec a:hover{color: #84b507; font-weight: 600;}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--mid-grey);
  border-radius: var(--radius);
  margin-bottom: 12px;
  background: var(--white);
  overflow: hidden;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--purple); }
.faq-question .faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--purple);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 24px 18px;
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================================
   CTA BANNER
   ============================================================ */

.cta-banner {
    background: linear-gradient(135deg, #5cb736 0%, #72ac29 100%);
    padding: 60px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    border-radius: 30px;
}
/*.cta-banner::before {*/
/*  content: '';*/
/*  position: absolute;*/
/*  top: -50%;*/
/*  right: -10%;*/
/*  width: 400px;*/
/*  height: 400px;*/
/*  background: radial-gradient(circle, rgba(141,198,63,0.12) 0%, transparent 70%);*/
/*  border-radius: 50%;*/
/*}*/
.cta-banner h2 { color: var(--white); font-size: 2rem; margin-bottom: 12px; }
.cta-banner p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 24px; }

/* ============================================================
   CONTACT / FORMS
   ============================================================ */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--mid-grey);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-body);
  transition: border-color var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(123,45,142,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ============================================================
   INFO BAR / STATS
   ============================================================ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item h3 {
  font-size: 2.4rem;
  color: var(--purple);
  margin-bottom: 4px;
}
.stat-item p {
  font-size: 0.9rem;
  color: var(--text-light);
  font-family: var(--font-heading);
  font-weight: 600;
}

/* ============================================================
   NDIS BADGE
   ============================================================ */
.ndis-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--green-bg);
  border: 1px solid var(--green);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green-dark);
  font-family: var(--font-heading);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .content-grid { gap: 40px; }
  h1 { font-size: 2.2rem; }
  .hero h1 { font-size: 2.4rem; }
  .hero-home h1 { font-size: 2.6rem; }
  .mt-custom { margin-top: 0px;}
}

@media (max-width: 991px) {
  :root { --header-height: 70px; }
  .service_box .service-card { display: block;}
  .service_box img { margin-bottom: 20px;}
  .mobile-toggle { display: block; }
  
  .header-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: var(--white);
    padding: 20px 24px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform var(--transition);
    box-shadow: var(--shadow-lg);
  }
  .header-nav.open {
    transform: translateX(0);
    z-index: 999;
    top: 110px;
}
  
  .main-nav { flex-direction: column; gap: 0; }
  .main-nav > li > a { padding: 12px 20px; font-size: 1rem; }
  
  .dropdown-menu {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 0 0 0 16px;
    display: none;
  }
  .dropdown-menu.open { display: block; }
  .dropdown-menu .has-sub > .sub-menu {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 0 0 0 16px;
    display: none;
  }
  .dropdown-menu .has-sub > .sub-menu.open { display: block; }
    .flag-box img { width: 100px; }
    .grid-box {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
@media (max-width: 768px) {
  .header-cta { margin-top: 16px; }
  .hero { padding: 120px 0 60px; }
  .hero-home { padding: 60px 0 60px; }
  .hero h1 { font-size: 2rem; }
  .hero-home h1 { font-size: 2.2rem; }
  .hero-inner h1 { font-size: 1.8rem; }
  .content-grid { grid-template-columns: 1fr; gap: 32px; }
  .content-grid-reverse { direction: ltr; }
  .card-grid-2, .card-grid-3, .card-grid-4 { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .mt_mb{margin-top: 25px;}
  .footer-grid { grid-template-columns: 1fr; gap: 0px; }
  .footer-bottom-inner { justify-content: center; text-align: center; }
  .section { padding: 60px 0; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.6rem; }
  .flag-box img { width: 100px;}
  .flag-box { padding: 15px 15px; gap: 15px; }
  /*.hero .content-grid { flex-direction: column-reverse; display: flex;}*/
  .service_box{ grid-template-columns: 1fr 1fr; gap: 15px !important; }
  .mob_view_col_reverse {
    flex-direction: column-reverse;
    display: flex;
}
}
@media (max-width: 600px) {
    .flag-box { padding: 10px 10px;}
    .flag-box h3 {font-size: 14px;}
    .flag-box p {  font-size: 12px; line-height: 16px; }
    .service_box{ grid-template-columns: 1fr;}
}
@media (max-width: 480px) {
    .btn_hero .btn {padding: 10px 20px; font-size: 14px;}
  .stats-bar { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.7rem; }
  .hero p{font-size: 16px;}
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.text-purple { color: var(--purple); }
.text-green { color: var(--green-dark); }
.mb-0 { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.pt-0 { padding-top: 0; }

/*referral*/

#referral .grid-row-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px;
} 
.grid-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
#referral .radio-group {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--mid-grey);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-body);
    transition: border-color var(--transition);
    background: var(--white);
}
#referral .radio-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    margin-bottom: 0px;
    font-weight: 400;
}
#referral .radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    margin-top: 8px;
}
#referral .radio-group input {
    width: auto;
}
#referral .radio-group:focus {
    outline: none;
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(123,45,142,0.1);
}
.middle_sec {
    text-align: center;
    margin: 0px 150px;
}
#careers_page .cta_common, #contact_us .cta_common, #referral-page .cta_common{display: none;}