/********** Template CSS **********/
.lato-thin {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.lato-light {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.lato-regular {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.lato-bold {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.lato-black {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.lato-thin-italic {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.lato-light-italic {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.lato-regular-italic {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.lato-bold-italic {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.lato-black-italic {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: italic;
}
html,
body {
    margin: 0;
    padding: 0;
}

body{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
p {
    font-weight: 300;
    line-height: 1.5em;
}
.back-to-top {
    position: fixed;
    display: none;
    right: 20px;
    bottom: 20px;
    z-index: 99;
}

/*** Button ***/
.btn {
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.sticky-top {
    top: -150px;
    transition: .5s;
    background-color: #fff;
}

.navbar {
    padding: 5px 0;
   
    font-size: 18px;
}

.navbar .navbar-nav .nav-link {
    margin-left: 30px;
    padding: 0;
    outline: none;
    color: var(--bs-dark);
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary)
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .dropdown-menu .dropdown-item:hover,
.navbar .dropdown-menu .dropdown-item.active {
    color: var(--bs-white);
    background: var(--bs-primary);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-left: 0;
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        padding:0px;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Hero Header ***/
.hero-header {
    margin-top: -100px;
    padding-top: 150px;
    background: url(../img/blue-bg.jpg) top center no-repeat;
    background-size: cover;
}

.hero-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.header-carousel {
    position: relative;
    padding: 45px 90px 45px 0;
}

.header-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: calc(50% + 45px);
    height: 100%;
    background: var(--bs-primary);
    z-index: -1;
}

.header-carousel .owl-dots {
    position: absolute;
    top: 50%;
    right: 38px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 5px 0;
    width: 15px;
    height: 15px;
    border: 1px solid #fff;
    transition: .5s;
}

.header-carousel .owl-dot.active {
    height: 30px;
    background: #f20000;
}


/*** About ***/
.about-img {
    position: relative;
    overflow: hidden;
}

.about-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../img/bg-about-img.png) top left no-repeat;
    background-size: contain;
}


/*** Project ***/
.project-item img {
    transition: .5s;
}
  
.project-item:hover img {
    transform: scale(1.2);
}
  
.project-overlay {
    position: absolute;
    padding: 25px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    background: linear-gradient(rgba(255, 255, 255, .1) 50%, var(--bs-dark));
    z-index: 1;
}


/*** Service ***/
.service-item {
    position: relative;
    padding: 20px 15px;
    transition: .5s;
}

.service-item.bg-primary:hover {
    background: var(--bs-light) !important;
}

.service-item.bg-primary p {
    color: var(--bs-light);
    transition: .5s;
}

.service-item.bg-primary:hover p {
    color: var(--bs-secondary);
}

.service-item.bg-light:hover {
    background: var(--bs-primary) !important;
}

.service-item.bg-light p {
    color: var(--bs-secondary);
    transition: .5s;
}

.service-item.bg-light:hover p {
    color: var(--bs-light);
}


.service-item .service-img h3 {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 12px 7px 0;
}
.service-item h4 {
    transition: .5s;
}

/* When card is primary */
.service-item.bg-primary h4 {
    color: var(--bs-white);
    font-size: 1.1em;
}

.service-item.bg-primary:hover h4 {
    color: var(--bs-dark);
}

/* When card is light */
.service-item.bg-light h4 {
    color: var(--bs-dark);
}

.service-item.bg-light:hover h4 {
    color: var(--bs-white);
}

.service-item.bg-primary .service-img h3 {
    background: var(--bs-primary);
    color: var(--bs-white);
    transition: .5s;
}

.service-item.bg-primary:hover .service-img h3 {
    background: var(--bs-light);
    color: var(--bs-dark);
}

.service-item.bg-light .service-img h3 {
    background: var(--bs-light);
    color: var(--bs-dark);
    transition: .5s;
}

.service-item.bg-light:hover .service-img h3 {
    background: var(--bs-primary);
    color: var(--bs-white);
}


/*** Our Team ***/
.team-item img {
    transition: .5s;
}
  
.team-item:hover img {
    transform: scale(1.2);
}
  
.team-overlay {
    position: absolute;
    padding: 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    background: linear-gradient(rgba(255, 255, 255, .1) 50%, var(--bs-dark));
    z-index: 1;
}

.team-overlay small {
    display: inline-block;
    padding: 3px 15px;
    color: var(--bs-white);
    background: var(--bs-primary);
}


/*** Testimonial ***/
.testimonial-img {
    position: relative;
    padding: 35px 0 35px 150px;
}

.testimonial-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: calc(50% + 50px);
    height: 100%;
    background: var(--bs-primary);
    z-index: -1;
}
.testimonial-img img {
    width: 200px !important;          /* matches your left padding nicely */
    height: 200px !important;   
    border-radius: 50%;
    object-fit: cover;
    background: #fff;     /* prevents transparent edge issues */
     box-shadow: 0 6px 15px rgba(0,0,0,.25);
     border: 4px solid #fff;
}
.testimonial-text h5 {
    position: relative;
    padding-left: 45px;
}

.testimonial-text h5::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background: var(--bs-primary);
}

.testimonial-carousel .owl-dots {
    position: absolute;
    height: 17px;
    bottom: 0;
    right: 0;
    left: auto;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin-left: 10px;
    width: 15px;
    height: 15px;
    background: var(--bs-white);
    border: 2px solid #f20000;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: #f20000;
}

@media (max-width: 768px) {
    .testimonial-carousel .owl-dots {
        left: 0;
        left: auto;
    }

    .testimonial-carousel .owl-dot {
        margin-right: 10px;
        margin-left: 0;
    }
}


/*** Newsletter ***/
.newsletter {
    background: url(../img/hero-bg.jpg) bottom right no-repeat;
    background-size: cover;
}

@media (min-width: 992px) {
    .newsletter .container {
        max-width: 100% !important;
    }

    .newsletter .newsletter-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .newsletter .newsletter-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .newsletter .newsletter-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Footer ***/
.footer {
    margin-top: auto;
    margin-bottom: 0;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: rgba(255,255,255,1);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link:hover {
    color: #f20000;
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 1em;
    border-top: 1px solid rgba(0, 0, 0, .2);
}

.footer .copyright a {
    color: rgba(0,0,0,.5);
}

.footer .copyright a:hover {
    color: #000;
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

/*Custom style*/
.bg-blue {background-color: #26305b;}

.navbar-brand img{width:180px;
height:auto;}

.custom-btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #1d5047, #0f2723);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    
}

.custom-btn:hover {
    transform: translateY(-3px);
    color: #fff;
    background: linear-gradient(135deg, #0f2723, #1d5047);
}

.custom-btn:active {
    transform: translateY(0);
    
}
.myborder {
    border: 1px solid;
    border-image: linear-gradient(135deg, #1d5047, #4cbfa8) 0;
    
    flex: 1;                   /* allows full height grow */
    display: flex;
    flex-direction: column;    /* keeps icon + text vertical */
    height: 100%;
}

.myborder i {
    display: block;
    margin: 0 auto 1.5rem auto;
    text-align: center;
}
#news .owl-dots {
    text-align: center;
    margin-top: 15px;
}

#news .owl-dot {
    width: 10px;
    height: 10px;
    margin: 0 6px;
    display: inline-block;
    border-radius: 50%;
    background: #14ac5c;
    transition: all 0.3s ease;
}

#news .owl-dot.active {
    width: 26px;
    border-radius: 20px;
    background: #f20000; /* your theme color */
}

#news .owl-dot:hover {
    background: #000;
}

/*** News ***/
.news-item {
    position: relative;
    padding: 0px 0px;
    transition: .5s;
}

.news-item.bg-primary:hover {
    background: #fff !important;
}

.news-item.bg-primary p {
    color: var(--bs-light);
    transition: .5s;
    line-height: 22px;
    font-size: .9em;
    font-weight: 400;
}

.news-item.bg-primary:hover p {
    color: var(--bs-secondary);
}

.news-item.bg-light:hover {
    background: var(--bs-primary) !important;
}

.news-item.bg-light p {
    color: var(--bs-secondary);
    transition: .5s;
}

.news-item.bg-light:hover p {
    color: var(--bs-light);
}

.news-item .news-img h3 {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 12px 7px 0;
}

.news-item.bg-primary .news-img h3 {
    background: var(--bs-primary);
    color: var(--bs-white);
    transition: .5s;
}

.news-item.bg-primary:hover .news-img h3 {
    background: var(--bs-light);
    color: var(--bs-dark);
}

.news-item.bg-light .news-img h3 {
    background: var(--bs-light);
    color: var(--bs-dark);
    transition: .5s;
}

.news-item.bg-light:hover .news-img h3 {
    background: var(--bs-primary);
    color: var(--bs-white);
}

/* Base title style */
.news-item h3 {
    font-size: 1.15rem;
    line-height: 1.4;
    transition: .5s;
}

/* Link default */
.news-item h3 a {
    color: inherit;
    text-decoration: none;
    transition: .5s;
}

/* PRIMARY background */
.news-item.bg-primary h3,
.news-item.bg-primary h3 a {
    color: var(--bs-light);
}

/* PRIMARY hover */
.news-item.bg-primary:hover h3,
.news-item.bg-primary:hover h3 a {
    color: var(--bs-secondary);
}

/* LIGHT background */
.news-item.bg-light h3,
.news-item.bg-light h3 a {
    color: var(--bs-secondary);
}

/* LIGHT hover */
.news-item.bg-light:hover h3,
.news-item.bg-light:hover h3 a {
    color: var(--bs-light);
}

#news .owl-stage {
    display: flex;
}

#news .owl-item {
    display: flex;
}

#news .item {
    display: flex;
    height: 100%;
}

#news .news-item {
    height: 100%;
    width: 100%;
}

/* Keep images consistent */
#news .news-img img {
    height: 220px;      /* adjust if needed */
    object-fit: cover;
}
@media (max-width: 991.98px) {
    .navbar-collapse.show {
        border-top: 1px solid #ddd;
        margin-top:8px;
    }
}
.bg-green{background-color:#14ac5c;}

.footer h1,
.footer h5 {
    color: #fff;
}
.testimonial-carousel h3{color:#14ac5c;}

.news-bg {
    
    background: url(../img/hero-bg.jpg) top center no-repeat;
    background-size: cover;
}

.text-red {
    color: #f20000 !important
}

.inner-header {
   
    background: url(../img/inner-top.jpg) top center no-repeat;
    background-size: cover;
}

.inner-header .breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}
.inner-header .breadcrumb-item {color:#fff;}
.inner-header .active.breadcrumb-item{color:#f20000;}
.inner-header .breadcrumb-item a{color:#fff;
text-decoration: underline;}

.myservice ul {
  list-style: none;        /* remove default bullets */
  padding: 0;
  margin: 0;
}

.myservice ul li {
  padding: 10px 15px;
  margin-bottom: 10px;
  background: #f5f7fa;
  border-left: 4px solid #14ac5c;
  font-size: .9em;
  color: #333;
    
  line-height: 1.5;
}

.custom-apply-btn {
  border-radius: 0.7rem !important;
}
.custom-apply-btn {
  background-color: #f20000;
  color: #fff;
  border: none;
  padding: 12px 28px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: color 0.35s ease, transform 0.25s ease, box-shadow 0.35s ease;
  z-index: 1;
}

/* Animated overlay */
.custom-apply-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #26305b;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  z-index: -1;
}

.custom-apply-btn:hover::before {
  transform: scaleX(1);
}

.custom-apply-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(38, 48, 91, 0.35);
}

/* Icon animation */
.custom-apply-btn i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  line-height: 1;
  font-size: 1rem;
  transition: transform 0.35s ease;
}

.custom-apply-btn:hover i {
  transform: translateX(6px);
}

.latest-vacancies-header {
  margin-bottom: 2rem;
}

.latest-vacancies-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 12px;
}

.latest-vacancies-link {
  width: fit-content;
  flex-shrink: 0;
}

.latest-vacancy-card {
  box-shadow: 0 14px 32px rgba(38, 48, 91, 0.08);
}

.latest-vacancy-date {
  font-size: 1.05rem;
}

.latest-vacancy-remarks {
  font-weight: 400;
}

.latest-vacancy-remarks-body {
  margin-top: 8px;
  color: #333;
  line-height: 1.6;
}

.latest-vacancy-remarks-body ul,
.latest-vacancy-remarks-body ol {
  padding-left: 20px;
  margin-bottom: 0;
}

.latest-vacancy-remarks-body li {
  margin-bottom: 4px;
}

@media (max-width: 767.98px) {
  .latest-vacancies-title-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .latest-vacancy-apply,
  .latest-vacancies-link {
    width: 100%;
  }
}

/* =========================
   NICEFORM – MODERN UI
   ========================= */

.niceform .contact-form {
  
}

/* LABELS */
.niceform label {
  font-size: 1rem;
  font-weight: 600;
  color: #26305b;
  margin-bottom: 12px;
  display: inline-block;
}

/* INPUTS & TEXTAREA */
.niceform input[type="text"],
.niceform input[type="email"],
.niceform input[type="file"],
.niceform textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid #14ac5c;
  background-color: #fff;
  transition: all 0.25s ease;
}

/* TEXTAREA */
.niceform textarea {
  min-height: 130px;
  resize: vertical;
}

/* PLACEHOLDER */
.niceform input::placeholder,
.niceform textarea::placeholder {
  color: #9aa0b4;
}

/* FOCUS STATE */
.niceform input:focus,
.niceform textarea:focus {
  outline: none;
  border-color: #f20000;
  box-shadow: 0 0 0 1px rgba(242, 0, 0, 0.15);
}

/* FILE INPUT */
.niceform input[type="file"] {
  padding: 10px;
  background: #f8f9fc;
  cursor: pointer;
}

/* HELP TEXT */
.niceform .help-block {
  font-size: 0.9rem;
  color: #ec0000;
  margin-top: 6px;
    font-weight: 600;
}

/* CAPTCHA IMAGE */
.niceform #captchaimg {
  border-radius: 6px;
  border: 1px solid #e0e3eb;
  padding: 6px;
  background: #fff;
}

/* FORM GROUP SPACING */
.niceform .form-group {
  margin-bottom: 1.4rem;
}

/* SUBMIT BUTTON */
.niceform #submit {
  margin-top: 1rem;
  padding: 14px 36px;
  font-size: 1rem;
  border-radius: 10px;
}

/* MOBILE */
@media (max-width: 768px) {
  .niceform label {
    font-size: 0.85rem;
  }

  .niceform #submit {
    width: 100%;
  }
}

/* HIDE REAL FILE INPUT */
.niceform input[type="file"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* CUSTOM FILE WRAPPER */
.niceform .file-upload {
  position: relative;
}

/* CUSTOM FILE UI */
.niceform .file-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px dashed #14ac5c;
  border-radius: 8px;
  padding: 14px 16px;
  cursor: pointer;
  background: #fff;
  transition: all 0.25s ease;
}

.niceform .file-label:hover {
  border-color: #f20000;
  background: #fff5f5;
}

/* FILE NAME TEXT */
.niceform .file-text {
  color: #9aa0b4;
  font-size: 0.9rem;
}

/* BROWSE BUTTON */
.niceform .file-btn {
  background: #26305b;
  color: #fff;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 1rem;
  transition: background 0.25s ease;
}

.niceform .file-label:hover .file-btn {
  background: #f20000;
}

.testimonial-text p {
    position: relative;
    padding: 1.5rem 3rem; /* TOP/BOTTOM + LEFT/RIGHT */
   
}

.testimonial-text p::before {
    content: "\f10d"; /* fa-quote-left */
    font-family: "Font Awesome 5 Free";
    font-weight: 900; /* REQUIRED for solid icons */
    font-size: 2.5rem;
    position: absolute;
    left: 0;
    top: -0.5rem;
    color: #14ac5c;
}

.testimonial-text p::after {
    content: "\f10e"; /* fa-quote-right */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 2.5rem;
    position: absolute;
    right: 0;
    bottom: -0.5rem;
    color: #14ac5c;
}

.insights-empty-state {
  max-width: 720px;
  margin: 2rem auto 0;
  padding: 2.5rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(20, 172, 92, 0.18);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(20, 172, 92, 0.08), rgba(255, 255, 255, 0.98));
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.insights-empty-state p {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #0f172a;
}

/* Arun pagination style */
.pagination {
  gap: 8px;
  flex-wrap: wrap;
}

.pagination .page-item .page-link {
  border: 0;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-weight: 600;
  color: #0f172a;
  background: #ffffff;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
  transition: all 0.2s ease;
}

.pagination .page-item .page-link:hover {
  transform: translateY(-2px);
  color: #ffffff;
  background: linear-gradient(135deg, #0ea5a4, #14b8a6);
  box-shadow: 0 8px 20px rgba(20, 184, 166, 0.35);
}

.pagination .page-item.active .page-link {
  color: #ffffff;
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  box-shadow: 0 10px 24px rgba(15, 118, 110, 0.35);
}

.pagination .page-item.disabled .page-link {
  opacity: 0.45;
  cursor: not-allowed;
  color: #64748b;
  background: #f1f5f9;
  box-shadow: none;
}

.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
  padding: 0 18px;
  font-weight: 700;
}

/* Mobile */
@media (max-width: 576px) {
  .pagination .page-item .page-link {
    min-width: 38px;
    height: 38px;
    border-radius: 10px;
    font-size: 0.9rem;
  }
}
.arunimg {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow:
    inset 0 0 0 3px rgba(255, 255, 255, 0.65), /* inner border */
    inset 0 0 30px rgba(0, 0, 0, 0.18),        /* depth */
    0 12px 28px rgba(0, 0, 0, 0.18);           /* outer lift */
}
