/*------------------------------------------------------------------
Project:  Softly Design Ops System
Version:  2.0
Last change:  Brand IA Integration
Assigned to:  Softly Team
Primary use:  Corporate Website
-------------------------------------------------------------------*/

/*//////////////////////////////////////////////////////////////////
[ CSS VARIABLES - BRAND COLOR SYSTEM ]*/
:root {
  /* Primary Colors */
  --color-primary: #017152;        /* Deep Soft Green */
  --color-secondary: #FFFFFF;      /* Pure White */
  --color-neutral: #1B1B1B;        /* Graphite Black */
  --color-accent: #FFD950;         /* Signal Yellow */

  /* Gradient Variations */
  --color-primary-light: #019968;
  --color-primary-dark: #015a42;

  /* Opacity Variations */
  --color-primary-10: rgba(1, 113, 82, 0.1);
  --color-primary-20: rgba(1, 113, 82, 0.2);
  --color-primary-50: rgba(1, 113, 82, 0.5);
  --color-accent-10: rgba(255, 217, 80, 0.1);
  --color-accent-50: rgba(255, 217, 80, 0.5);

  /* Text Colors */
  --text-primary: #1B1B1B;
  --text-secondary: #666666;
  --text-light: #999999;
  --text-white: #FFFFFF;

  /* Background Colors */
  --bg-white: #FFFFFF;
  --bg-light: #F8F9FA;
  --bg-dark: #1B1B1B;
  --bg-primary: #017152;

  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 40px;
  --spacing-xl: 60px;
  --spacing-xxl: 80px;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
  --shadow-primary: 0 8px 24px rgba(1, 113, 82, 0.3);
  --shadow-accent: 0 8px 24px rgba(255, 217, 80, 0.3);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/*//////////////////////////////////////////////////////////////////
[ FONT ]*/

/* Google Fonts - Raleway */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700&display=swap');

/* Pretendard - Korean Body Font */
@font-face {
  font-family: 'Pretendard';
  font-weight: 400;
  font-style: normal;
  src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
  font-display: swap;
}

@font-face {
  font-family: 'Pretendard';
  font-weight: 500;
  font-style: normal;
  src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Medium.woff') format('woff');
  font-display: swap;
}

/* SUIT - Korean Title Font */
@font-face {
  font-family: 'SUIT';
  font-weight: 600;
  font-style: normal;
  src: url('https://cdn.jsdelivr.net/gh/sunn-us/SUIT/fonts/variable/woff2/SUIT-Variable.woff2') format('woff2');
  font-display: swap;
}

@font-face {
  font-family: 'SUIT';
  font-weight: 700;
  font-style: normal;
  src: url('https://cdn.jsdelivr.net/gh/sunn-us/SUIT/fonts/variable/woff2/SUIT-Variable.woff2') format('woff2');
  font-display: swap;
}

/* Legacy Fonts (Fallback) */
@font-face {
  font-family: Poppins-Regular;
  src: url('../fonts/Poppins/Poppins-Regular.ttf');
}

@font-face {
  font-family: Poppins-Bold;
  src: url('../fonts/Poppins/Poppins-Bold.ttf');
}

@font-face {
  font-family: Aldrich-Regular;
  src: url('../fonts/Aldrich/Aldrich-Regular.ttf');
}

/* Font Family Variables */
:root {
  --font-body: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-title: 'SUIT', 'Pretendard', sans-serif;
  --font-brand: 'Raleway', 'SUIT', sans-serif;
  --font-legacy: 'Poppins-Regular', sans-serif;
}

/* Base Typography */
body {
  font-family: var(--font-body);
  color: var(--text-primary);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
}



/*//////////////////////////////////////////////////////////////////
[ RS PLUGIN ]*/
/*---------------------------------------------*/
.container {max-width: 1200px;}



/*//////////////////////////////////////////////////////////////////
[ Form ]*/

/*---------------------------------------------*/
.wrap-input100 {
  position: relative;
  width: 100%;
  height: 50px;
  z-index: 1;
}

.input100 {
  display: block;
  width: 100%;
  background: #f5f5f5;
  height: 100%;
  border-radius: 25px;
  padding: 0 20px;
  text-align: center;
}

.focus-input100 {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 35px;
  box-shadow: 0px 0px 0px 0px;
  color: rgba(0,178,111, 0.5);
}

.input100:focus + .focus-input100 {
  -webkit-animation: anim-shadow 0.5s ease-in-out forwards;
  animation: anim-shadow 0.5s ease-in-out forwards;
}

@-webkit-keyframes anim-shadow {
  to {
    box-shadow: 0px 0px 80px 30px;
    opacity: 0;
  }
}

@keyframes anim-shadow {
  to {
    box-shadow: 0px 0px 80px 30px;
    opacity: 0;
  }
}


/*------------------------------------------------------------------
[ Alert validate ]*/

.validate-input {
  position: relative;
}

.alert-validate::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 70%;
  background-color: #fff;
  border: 1px solid #c80000;
  border-radius: 16px;
  padding: 5px 30px 6px 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 12px;
  pointer-events: none;

  font-family: Poppins-Bold;
  color: #c80000;
  font-size: 12px;
  line-height: 1.4;
  text-align: left;

  visibility: hidden;
  opacity: 0;

  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.alert-validate::after {
  content: "\f06a";
  font-family: FontAwesome;
  display: block;
  position: absolute;
  color: #c80000;
  font-size: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 18px;
}

.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}

@media (max-width: 992px) {
  .alert-validate::before {
    visibility: visible;
    opacity: 1;
  }
}

/*//////////////////////////////////////////////////////////////////
[ RS Flip Clock ]*/
.flip-clock-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  max-width: 100%;
  margin: 0;
  margin-bottom: 20px;
}

.flip-clock-wrapper .flip {
  box-shadow: none;
  margin-bottom: 50px;
}

.flip-clock-wrapper ul {
  position: relative;
  float: unset;
  margin: 2px;
  width: 41px;
  height: 54px;
  font-size: 36px;
  font-weight: unset;
  line-height: unset;
  border-radius: 3px;
  background: #0d1629;
}

.flip-clock-wrapper ul li {
  line-height: unset;
}

.flip-clock-wrapper ul li a div {
  outline: none;
}

.flip-clock-wrapper ul li a div div.inn {
  font-family:  Aldrich-Regular;
  color: #fff;
  font-size: 35px;
  font-weight: unset;
  text-align: unset;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 200%;
  text-shadow: 0 0px 0px #000;
  background-color: #0d1629;
  border-radius: 3px;
} 

.flip-clock-wrapper ul li a div .shadow {
  border-radius: 3px;
}

.flip-clock-wrapper ul li a div.up:after {
  display: none;
}

/*---------------------------------------------*/
.flip-clock-divider {
  display: block;
  float: unset;
  position: relative;
  width: 26px;
  height: 54px;
}

.flip-clock-divider span {
  display: none;
}

.flip-clock-divider::before {
  content: ":";
  font-family: Aldrich-Regular;
  color: #fff;
  font-size: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.flip-clock-divider.days::before {
  display: none;
}

.flip-clock-divider::after {
  font-family: Poppins-Regular;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;

  display: block;
  text-align: center;
  width: 90px;
  position: absolute;
  left: 100%;
  top: 100%;
  padding-top: 16px;
}

.flip-clock-divider.days::after {
  content: "days";
}

.flip-clock-divider.hours::after {
  content: "hrs";
}

.flip-clock-divider.minutes::after {
  content: "min";
}

.flip-clock-divider.seconds::after {
  content: "sec";
}

@media (max-width: 1200px) {
  .flip-clock-wrapper {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .flip-clock-wrapper {
    max-width: 240px;
    margin-right: 26px;
  }

  .flip-clock-divider.days {
    width: 26px;
  }

  .flip-clock-divider.minutes::before {
    display: none;
  }
}


/*==================================================================
    TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT TEXT
==================================================================*/

/*==================================================================
[ Color ]*/
.cl0 {color: #fff;}




/*//////////////////////////////////////////////////////////////////
[ S-Text 0 - 15 ]*/
.s1-txt1 {
  font-family: Poppins-Bold;
  font-size: 15px;
  color: #555;
  line-height: 1.2;
}

.s1-txt2 {
  font-family: Poppins-Bold;
  font-size: 15px;
  color: #fff;
  line-height: 1.2;
}

.s1-txt3 {
  font-family: Poppins-Regular;
  font-size: 13px;
  color: #999;
  line-height: 1.5;
}

/*//////////////////////////////////////////////////////////////////
[ M-Text 16 - 25 ]*/




/*//////////////////////////////////////////////////////////////////
[ L-Text >= 26 ]*/
.l1-txt1 {
  font-family: Poppins-Regular;
  font-size: 30px;
  color: #fff;
  line-height: 1.2;
  text-transform: uppercase;
}

.l1-txt2 {
  font-family: Poppins-Bold;
  font-size: 70px;
  color: #fff;
  line-height: 1.1;
  text-transform: uppercase;
}

.l1-txt3 {
  font-family: Poppins-Bold;
  font-size: 30px;
  color: #333;
  line-height: 1.2;
  text-transform: uppercase;
}

/*==================================================================
   SHAPE SHAPE SHAPE SHAPE SHAPE SHAPE SHAPE SHAPE SHAPE SHAPE SHAPE
==================================================================*/
/*//////////////////////////////////////////////////////////////////
[ Size ]*/
.size1 {
  width: 100%;
  min-height: 100vh;
}

.size2 {
  width: 100%;
  height: 50px;
}

.size3 {
  width: 36px;
  height: 36px;
}


/*//////////////////////////////////////////////////////////////////
[ Width ]*/
.wsize1 {
  width: 390px;
  max-width: 100%;
}

/*//////////////////////////////////////////////////////////////////
[ Height ]*/




/*//////////////////////////////////////////////////////////////////
[ Background ]*/
.bg0 {background-color: #fff;}

.bg-img1 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}




/*//////////////////////////////////////////////////////////////////
[ Border ]*/
.bor1 {
  border-radius: 10px;
}




/*==================================================================
   WHERE WHERE WHERE WHERE WHERE WHERE WHERE WHERE WHERE WHERE WHERE  
==================================================================*/




/*==================================================================
 HOW HOW HOW HOW HOW HOW HOW HOW HOW HOW HOW HOW HOW HOW HOW HOW HOW 
==================================================================*/
.placeholder0::-webkit-input-placeholder { color: #999999;}
.placeholder0:-moz-placeholder { color: #999999;}
.placeholder0::-moz-placeholder { color: #999999;}
.placeholder0:-ms-input-placeholder { color: #999999;}

/*---------------------------------------------*/
.overlay1 {
  position: relative;
  z-index: 1;
}
.overlay1::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #30bab6;
  background: -webkit-linear-gradient(top, #009efd, #2af598);
  background: -o-linear-gradient(top, #009efd, #2af598);
  background: -moz-linear-gradient(top, #009efd, #2af598);
  background: linear-gradient(top, #009efd, #2af598);
  opacity: 0.8;
}

/*---------------------------------------------*/
.how-btn1 {
  border-radius: 25px;
  background-color: #00b26f;
  padding-right: 20px;
  padding-left: 20px;
}

.how-btn1:hover {
  background-color: #333333;
}

/*---------------------------------------------*/
.wrappic1 {
  display: block;
  flex-grow: 1;
}

.wrappic1 img {
  max-width: 100%;
}

/*---------------------------------------------*/
.how-social {
  color: #fff;
  font-size: 22px;

  background-color: transparent;
  border: 2px solid #fff;
  border-radius: 2px;
}

.how-social:hover {
  background-color: #00b26f;
  color: #fff;
}

/*//////////////////////////////////////////////////////////////////
[ Pseudo ]*/

/*------------------------------------------------------------------
[ Focus ]*/
.focus-in0:focus::-webkit-input-placeholder { color:transparent; }
.focus-in0:focus:-moz-placeholder { color:transparent; }
.focus-in0:focus::-moz-placeholder { color:transparent; }
.focus-in0:focus:-ms-input-placeholder { color:transparent; }


/*------------------------------------------------------------------
[ Hover ]*/
.hov-cl0:hover {color: #fff;}
.hov-bg0:hover {background-color: #fff;}

/*---------------------------------------------*/







/*==================================================================
  RESPONSIVE RESPONSIVE RESPONSIVE RESPONSIVE RESPONSIVE RESPONSIVE
==================================================================*/
/*//////////////////////////////////////////////////////////////////
[ XXL ]*/
@media (max-width: 1400px) {
  .respon1 {
    padding: 15px;
  }
}

/*//////////////////////////////////////////////////////////////////
[ XL ]*/
@media (max-width: 1200px) {
  .m-0-xl {margin: 0;}
  .m-lr-0-xl {margin-left: 0; margin-right: 0;}
  .m-lr-15-xl {margin-left: 15px; margin-right: 15px;}
  .m-l-0-xl {margin-left: 0;}
  .m-r-0-xl {margin-right: 0;}
  .m-l-15-xl {margin-left: 15px;}
  .m-r-15-xl {margin-right: 15px;}

  .p-0-xl {padding: 0;}
  .p-lr-0-xl {padding-left: 0; padding-right: 0;}
  .p-lr-15-xl {padding-left: 15px; padding-right: 15px;}
  .p-l-0-xl {padding-left: 0;}
  .p-r-0-xl {padding-right: 0;}
  .p-l-15-xl {padding-left: 15px;}
  .p-r-15-xl {padding-right: 15px;}

  .w-full-xl {width: 100%;}

  /*---------------------------------------------*/
  .respon1 {
    flex-direction: column;
    align-items: center;
  }

  /*---------------------------------------------*/
  .respon2 {
    text-align: center;
  }

  /*---------------------------------------------*/
  .respon3 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}


/*//////////////////////////////////////////////////////////////////
[ LG ]*/
@media (max-width: 992px) {
  .m-0-lg {margin: 0;}
  .m-lr-0-lg {margin-left: 0; margin-right: 0;}
  .m-lr-15-lg {margin-left: 15px; margin-right: 15px;}
  .m-l-0-lg {margin-left: 0;}
  .m-r-0-lg {margin-right: 0;}
  .m-l-15-lg {margin-left: 15px;}
  .m-r-15-lg {margin-right: 15px;}

  .p-0-lg {padding: 0;}
  .p-lr-0-lg {padding-left: 0; padding-right: 0;}
  .p-lr-15-lg {padding-left: 15px; padding-right: 15px;}
  .p-l-0-lg {padding-left: 0;}
  .p-r-0-lg{padding-right: 0;}
  .p-l-15-lg {padding-left: 15px;}
  .p-r-15-lg {padding-right: 15px;}

  .w-full-lg {width: 100%;}

  /*---------------------------------------------*/


}


/*//////////////////////////////////////////////////////////////////
[ MD ]*/
@media (max-width: 768px) {
  .m-0-md {margin: 0;}
  .m-lr-0-md {margin-left: 0; margin-right: 0;}
  .m-lr-15-md {margin-left: 15px; margin-right: 15px;}
  .m-l-0-md {margin-left: 0;}
  .m-r-0-md {margin-right: 0;}
  .m-l-15-md {margin-left: 15px;}
  .m-r-15-md {margin-right: 15px;}

  .p-0-md {padding: 0;}
  .p-lr-0-md {padding-left: 0; padding-right: 0;}
  .p-lr-15-md {padding-left: 15px; padding-right: 15px;}
  .p-l-0-md {padding-left: 0;}
  .p-r-0-md{padding-right: 0;}
  .p-l-15-md {padding-left: 15px;}
  .p-r-15-md {padding-right: 15px;}

  .w-full-md {width: 100%;}
  /*---------------------------------------------*/

}


/*//////////////////////////////////////////////////////////////////
[ SM ]*/
@media (max-width: 576px) {
  .m-0-sm {margin: 0;}
  .m-lr-0-sm {margin-left: 0; margin-right: 0;}
  .m-lr-15-sm {margin-left: 15px; margin-right: 15px;}
  .m-l-0-sm {margin-left: 0;}
  .m-r-0-sm {margin-right: 0;}
  .m-l-15-sm {margin-left: 15px;}
  .m-r-15-sm {margin-right: 15px;}

  .p-0-sm {padding: 0;}
  .p-lr-0-sm {padding-left: 0; padding-right: 0;}
  .p-lr-15-sm {padding-left: 15px; padding-right: 15px;}
  .p-l-0-sm {padding-left: 0;}
  .p-r-0-sm{padding-right: 0;}
  .p-l-15-sm {padding-left: 15px;}
  .p-r-15-sm {padding-right: 15px;}

  .w-full-sm {width: 100%;}

  /*---------------------------------------------*/
  .respon4 {
    font-size: 50px;
  }

  /*---------------------------------------------*/
  .respon5 {
    padding-left: 20px;
    padding-right: 14px;
    padding-bottom: 50px;
  }
  
}


/*//////////////////////////////////////////////////////////////////
[ SSM ]*/
@media (max-width: 480px) {
  .m-0-ssm {margin: 0;}
  .m-lr-0-ssm {margin-left: 0; margin-right: 0;}
  .m-lr-15-ssm {margin-left: 15px; margin-right: 15px;}
  .m-l-0-ssm {margin-left: 0;}
  .m-r-0-ssm {margin-right: 0;}
  .m-l-15-ssm {margin-left: 15px;}
  .m-r-15-ssm {margin-right: 15px;}

  .p-0-ssm {padding: 0;}
  .p-lr-0-ssm {padding-left: 0; padding-right: 0;}
  .p-lr-15-ssm {padding-left: 15px; padding-right: 15px;}
  .p-l-0-ssm {padding-left: 0;}
  .p-r-0-ssm{padding-right: 0;}
  .p-l-15-ssm {padding-left: 15px;}
  .p-r-15-ssm {padding-right: 15px;}

  .w-full-ssm {width: 100%;}
  /*---------------------------------------------*/

}

/*//////////////////////////////////////////////////////////////////
[ Main Page Styles ]*/

/* Hero Buttons */
.btn-main {
  font-family: Poppins-Regular;
  font-size: 16px;
  color: #fff;
  line-height: 1.2;
  padding: 15px 40px;
  background-color: #00b26f;
  border-radius: 25px;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 10px 30px 0px rgba(0, 178, 111, 0.5);
}

.btn-main:hover {
  background-color: #00996b;
  color: #fff;
  box-shadow: 0 10px 40px 0px rgba(0, 178, 111, 0.7);
}

.btn-outline {
  font-family: Poppins-Regular;
  font-size: 16px;
  color: #fff;
  line-height: 1.2;
  padding: 15px 40px;
  background-color: transparent;
  border: 2px solid #fff;
  border-radius: 25px;
  text-decoration: none;
  display: inline-block;
}

.btn-outline:hover {
  background-color: #fff;
  color: #333;
  text-decoration: none;
}

.gap-3 {
  gap: 15px;
}

/* Section Styles */
.bg-white {
  background-color: #fff;
}

.bg-light {
  background-color: #f8f9fa;
}

.bg-dark {
  background-color: #2c2c2c;
}

.main-title {
  font-family: Poppins-Bold;
  font-size: 42px;
  color: #333;
  line-height: 1.2;
}

.main-desc {
  font-family: Poppins-Regular;
  font-size: 16px;
  color: #666;
  line-height: 1.8;
}

/* Badge */
.badge-coming {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  border-radius: 50px;
  font-family: Poppins-Regular;
  font-size: 14px;
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

/* Culture Button Large */
.btn-culture-large {
  font-family: Poppins-Bold;
  font-size: 18px;
  color: #fff;
  line-height: 1.2;
  padding: 20px 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 10px 30px 0px rgba(102, 126, 234, 0.5);
}

.btn-culture-large:hover {
  box-shadow: 0 15px 40px 0px rgba(102, 126, 234, 0.7);
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .main-title {
    font-size: 32px;
  }

  .main-desc {
    font-size: 14px;
  }

  .btn-main,
  .btn-outline {
    padding: 12px 30px;
    font-size: 14px;
  }

  .btn-culture-large {
    padding: 15px 35px;
    font-size: 16px;
  }
}
/*//////////////////////////////////////////////////////////////////
[ GLOBAL NAVIGATION ]*/

.navbar-softly {
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
  padding: 0;
  transition: all var(--transition-base);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.navbar-softly.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar-softly .navbar-brand {
  padding: 15px 0;
  font-family: var(--font-brand);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.navbar-softly .navbar-brand:hover {
  opacity: 0.8;
}

.navbar-softly .navbar-nav {
  align-items: center;
}

.navbar-softly .nav-link {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  padding: 8px 16px;
  margin: 0 4px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.navbar-softly .nav-link:hover {
  color: var(--color-primary);
  background-color: var(--color-primary-10);
}

.navbar-softly .nav-link.active {
  color: var(--color-primary);
  font-weight: 600;
}

.btn-cta-primary {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  background-color: var(--color-accent);
  padding: 10px 24px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all var(--transition-fast);
  display: inline-block;
  box-shadow: var(--shadow-accent);
  margin-left: 16px;
}

.btn-cta-primary:hover {
  background-color: #FFC700;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 217, 80, 0.4);
  color: var(--text-primary);
  text-decoration: none;
}

.navbar-toggler {
  border: none;
  padding: 8px;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: 2px solid var(--color-primary);
}

/* Mobile Center Text */
.navbar-center-text {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-brand);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
  line-height: 1;
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.navbar-center-text:hover {
  opacity: 0.7;
  color: var(--color-primary);
  text-decoration: none;
}

@media (max-width: 991px) {
  .navbar-center-text {
    display: block;
  }
}

/* Mobile Navigation */
@media (max-width: 991px) {
  .navbar-softly .navbar-collapse {
    background-color: var(--bg-white);
    padding: 20px;
    margin-top: 10px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
  }

  .navbar-softly .nav-link {
    padding: 12px 16px;
    margin: 4px 0;
  }

  .btn-cta-primary {
    margin-left: 0;
    margin-top: 12px;
    width: 100%;
    text-align: center;
  }
}

/* Add padding to body to account for fixed navbar */
body {
  padding-top: 70px;
}

@media (max-width: 991px) {
  body {
    padding-top: 60px;
  }
}

/*//////////////////////////////////////////////////////////////////
[ ANIMATIONS & GRADIENTS ]*/

/* Fade In Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Gradient Animation */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Pulse Animation */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Float Animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Animation Classes */
.animate-fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in-left {
  animation: fadeInLeft 0.8s ease-out forwards;
}

.animate-fade-in-right {
  animation: fadeInRight 0.8s ease-out forwards;
}

.animate-scale-in {
  animation: scaleIn 0.6s ease-out forwards;
}

.animate-slide-down {
  animation: slideDown 0.6s ease-out forwards;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

/* Delayed Animations */
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }
.animate-delay-6 { animation-delay: 0.6s; }

/* Initial Hidden State */
.animate-on-scroll {
  opacity: 0;
}

/* Gradient Backgrounds */
.gradient-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

.gradient-accent {
  background: linear-gradient(135deg, var(--color-accent) 0%, #FFC700 100%);
}

.gradient-animated {
  background: linear-gradient(270deg, var(--color-primary), var(--color-primary-light), var(--color-primary));
  background-size: 400% 400%;
  animation: gradientShift 10s ease infinite;
}

/* Liquid Glass Background */
.liquid-glass-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, #1a5f4e 0%, #2d8a6f 50%, #1a5f4e 100%);
  z-index: 0;
}

.liquid-blob {
  position: absolute;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  filter: blur(60px);
  opacity: 0.6;
  animation: blob-float 30s ease-in-out infinite;
  will-change: transform;
}

.liquid-blob:nth-child(1) {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, rgba(78, 205, 170, 0.5), rgba(45, 138, 111, 0.5));
  top: -10%;
  left: -10%;
  animation-delay: 0s;
  animation-duration: 28s;
}

.liquid-blob:nth-child(2) {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(138, 255, 217, 0.4), rgba(78, 205, 170, 0.4));
  top: 40%;
  right: -5%;
  animation-delay: -10s;
  animation-duration: 32s;
}

.liquid-blob:nth-child(3) {
  width: 450px;
  height: 450px;
  background: linear-gradient(135deg, rgba(45, 138, 111, 0.5), rgba(26, 95, 78, 0.5));
  bottom: -15%;
  left: 20%;
  animation-delay: -20s;
  animation-duration: 35s;
}

.liquid-blob:nth-child(4) {
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, rgba(255, 235, 128, 0.25), rgba(255, 199, 0, 0.25));
  top: 20%;
  right: 30%;
  animation-delay: -8s;
  animation-duration: 30s;
}

@keyframes blob-float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  }
  25% {
    transform: translate(15px, -20px) rotate(45deg) scale(1.05);
    border-radius: 45% 55% 60% 40% / 50% 45% 55% 50%;
  }
  50% {
    transform: translate(-10px, 10px) rotate(90deg) scale(0.95);
    border-radius: 55% 45% 50% 50% / 60% 50% 45% 55%;
  }
  75% {
    transform: translate(20px, 15px) rotate(135deg) scale(1.02);
    border-radius: 50% 60% 55% 45% / 55% 55% 60% 45%;
  }
}

.glass-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
  backdrop-filter: blur(2px);
  z-index: 1;
  will-change: backdrop-filter;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
}

/* Section with Liquid Glass Background */
.section-liquid-glass {
  position: relative;
  overflow: hidden;
}

.section-liquid-glass .liquid-glass-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, #1a5f4e 0%, #2d8a6f 50%, #1a5f4e 100%);
  z-index: 0;
}

.section-liquid-glass .glass-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
  backdrop-filter: blur(2px);
  z-index: 1;
  will-change: backdrop-filter;
}

.section-liquid-glass .container {
  position: relative;
  z-index: 2;
}

/* Hover Animations */
.hover-lift {
  transition: all var(--transition-base);
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.hover-scale {
  transition: all var(--transition-base);
}

.hover-scale:hover {
  transform: scale(1.05);
}

.hover-glow {
  transition: all var(--transition-base);
}

.hover-glow:hover {
  box-shadow: 0 0 30px rgba(1, 113, 82, 0.5);
}

/* Card Animations */
.card-interactive {
  transition: all var(--transition-base);
  cursor: pointer;
}

.card-interactive:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* Button Animations */
.btn-animated {
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
}

.btn-animated::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-animated:hover::before {
  width: 300px;
  height: 300px;
}

.btn-animated:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/*//////////////////////////////////////////////////////////////////
[ IMPROVED MOBILE NAVIGATION ]*/

/* Better mobile menu */
@media (max-width: 991px) {
  .navbar-softly .navbar-collapse {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    padding: 30px 20px;
    margin: 0;
    border-radius: 0;
    box-shadow: var(--shadow-lg);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    z-index: 999;
  }

  .navbar-softly .navbar-nav {
    width: 100%;
  }

  .navbar-softly .nav-item {
    width: 100%;
    margin-bottom: 8px;
  }

  .navbar-softly .nav-link {
    padding: 14px 20px;
    margin: 0;
    width: 100%;
    border-radius: var(--radius-sm);
    font-size: 16px;
  }

  .btn-cta-primary {
    margin: 16px 0 0 0;
    width: 100%;
    text-align: center;
    padding: 14px 24px;
  }
}

/* Hamburger icon */
.navbar-toggler {
  border: 2px solid var(--color-primary);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23017152' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  width: 24px;
  height: 24px;
}

/* Benefits Card - Adjusted Liquid Glass to avoid text overlap */
.liquid-glass-bg-benefits {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, #1a5f4e 0%, #2d8a6f 50%, #1a5f4e 100%);
  z-index: 0;
  border-radius: inherit;
}

.liquid-glass-bg-benefits .liquid-blob:nth-child(1) {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(78, 205, 170, 0.3), rgba(45, 138, 111, 0.3));
  bottom: -20%;
  left: -15%;
  animation-delay: 0s;
  animation-duration: 28s;
}

.liquid-glass-bg-benefits .liquid-blob:nth-child(2) {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, rgba(138, 255, 217, 0.25), rgba(78, 205, 170, 0.25));
  bottom: 30%;
  right: -10%;
  animation-delay: -10s;
  animation-duration: 32s;
}

.liquid-glass-bg-benefits .liquid-blob:nth-child(3) {
  width: 280px;
  height: 280px;
  background: linear-gradient(135deg, rgba(45, 138, 111, 0.3), rgba(26, 95, 78, 0.3));
  top: -25%;
  left: 50%;
  animation-delay: -20s;
  animation-duration: 35s;
}

.liquid-glass-bg-benefits .liquid-blob:nth-child(4) {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(255, 235, 128, 0.15), rgba(255, 199, 0, 0.15));
  bottom: -10%;
  right: 20%;
  animation-delay: -8s;
  animation-duration: 30s;
}

/* Yellow Liquid Glass Background */
.liquid-glass-bg-yellow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, #FFD950 0%, #FFC700 50%, #FFD950 100%);
  z-index: 0;
}

.liquid-glass-bg-yellow .liquid-blob:nth-child(1) {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, rgba(255, 235, 128, 0.6), rgba(255, 217, 80, 0.6));
  top: -10%;
  left: -10%;
  animation-delay: 0s;
  animation-duration: 28s;
}

.liquid-glass-bg-yellow .liquid-blob:nth-child(2) {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(255, 247, 188, 0.5), rgba(255, 235, 128, 0.5));
  top: 40%;
  right: -5%;
  animation-delay: -10s;
  animation-duration: 32s;
}

.liquid-glass-bg-yellow .liquid-blob:nth-child(3) {
  width: 450px;
  height: 450px;
  background: linear-gradient(135deg, rgba(255, 199, 0, 0.6), rgba(255, 179, 0, 0.6));
  bottom: -15%;
  left: 20%;
  animation-delay: -20s;
  animation-duration: 35s;
}

.liquid-glass-bg-yellow .liquid-blob:nth-child(4) {
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, rgba(255, 240, 165, 0.4), rgba(255, 217, 80, 0.4));
  top: 20%;
  right: 30%;
  animation-delay: -8s;
  animation-duration: 30s;
}

/* Growth Bar Animations */
@keyframes growBar1 {
  from {
    height: 0;
  }
  to {
    height: 15%;
  }
}

@keyframes growBar2 {
  from {
    height: 0;
  }
  to {
    height: 30%;
  }
}

@keyframes growBar3 {
  from {
    height: 0;
  }
  to {
    height: 95%;
  }
}

/* Mobile Optimizations */
@media (max-width: 991px) {
	/* Logo spacing on mobile */
	.navbar-brand {
		margin-left: 16px !important;
	}

	/* Contact page - Keep original text sizes on mobile */
	.section-liquid-glass h1 {
		font-size: 36px !important;
	}

	.section-liquid-glass p {
		font-size: 18px !important;
	}

	/* Index page hero - Keep original text sizes on mobile */
	.hero-title {
		font-size: 40px !important;
	}

	.hero-description {
		font-size: 12px !important;
	}

	/* Grid row spacing on mobile */
	.row {
		row-gap: 24px !important;
	}
	
	.row.g-4 {
		row-gap: 32px !important;
	}
	
	.row.g-5 {
		row-gap: 40px !important;
	}
	
	/* Container padding on mobile */
	.container {
		padding-left: 20px !important;
		padding-right: 20px !important;
	}
	
	/* Section padding on mobile */
	section {
		padding-left: 20px !important;
		padding-right: 20px !important;
	}
	
	/* Reduce heading sizes on mobile */
	h1 {
		font-size: 36px !important;
	}
	
	h2 {
		font-size: 28px !important;
	}
	
	h3 {
		font-size: 22px !important;
	}
	
	/* Card padding on mobile */
	.card, [class*="card-"] {
		padding: 20px !important;
	}
	
	/* Button padding on mobile */
	.btn, [class*="btn-"] {
		padding: 12px 24px !important;
		font-size: 15px !important;
	}
}

@media (max-width: 767px) {
	/* Extra small screens */
	.navbar-brand {
		margin-left: 12px !important;
	}
	
	.container {
		padding-left: 16px !important;
		padding-right: 16px !important;
	}
	
	h1 {
		font-size: 32px !important;
		line-height: 1.2 !important;
	}
	
	h2 {
		font-size: 24px !important;
	}
	
	h3 {
		font-size: 20px !important;
	}
	
	p {
		font-size: 14px !important;
	}
	
	/* Reduce column gaps */
	[class*="col-"] {
		padding-left: 12px !important;
		padding-right: 12px !important;
	}
	
	/* Card spacing */
	.card, [class*="card-"] {
		margin-bottom: 20px !important;
	}
}

/*//////////////////////////////////////////////////////////////////
[ MOBILE PERFORMANCE OPTIMIZATION - LIQUID GLASS ]*/

/* Reduce motion for accessibility and performance */
@media (prefers-reduced-motion: reduce) {
	.liquid-blob {
		animation: none !important;
	}

	.glass-overlay {
		backdrop-filter: none !important;
	}
}

/* Mobile optimization for Liquid Glass - Simplified effects */
@media (max-width: 991px) {
	/* Hero Section - Add top padding to prevent text sticking to top */
	.hero-softly {
		padding-top: 80px !important;
	}

	.hero-softly .row {
		min-height: auto !important;
		padding: 40px 0 !important;
	}

	/* Hero Section - Center align all content on mobile */
	.hero-softly .hero-content {
		text-align: center !important;
	}

	.hero-softly .hero-cta {
		justify-content: center !important;
	}

	/* Hero Section - Reduce title size on mobile */
	.hero-softly .hero-title,
	.hero-softly h1 {
		font-size: 39px !important;
	}

	/* Hero Section - Reduce description size on mobile */
	.hero-softly .hero-description,
	.hero-softly .hero-description p {
		font-size: 13px !important;
	}

	/* People Teaser Section - Center align on mobile */
	#people-teaser {
		text-align: center !important;
	}

	#people-teaser h2,
	#people-teaser p {
		margin-left: auto !important;
		margin-right: auto !important;
	}

	/* Center align the circle icons in People Teaser */
	#people-teaser div[style*="display: flex"] {
		justify-content: center !important;
	}

	/* Careers Teaser Section - Center align on mobile */
	#careers-teaser .container {
		text-align: center !important;
	}

	/* About Page - Center align WHY and WHAT sections on mobile */
	#why .container,
	#what .container {
		text-align: center !important;
	}

	/* Our Brands Section - Increase width on mobile */
	#brands .col-lg-10 {
		max-width: 100% !important;
		padding-left: 12px !important;
		padding-right: 12px !important;
	}

	/* Reduce blur intensity on mobile - much lighter on GPU */
	.liquid-blob {
		filter: blur(30px) !important;
	}

	/* Hide 3rd and 4th blobs on mobile to reduce GPU load */
	.liquid-blob:nth-child(3),
	.liquid-blob:nth-child(4) {
		display: none !important;
	}

	/* Reduce blob sizes on mobile */
	.liquid-blob:nth-child(1) {
		width: 350px !important;
		height: 350px !important;
	}

	.liquid-blob:nth-child(2) {
		width: 300px !important;
		height: 300px !important;
	}

	/* Remove backdrop-filter on mobile - very heavy on performance */
	.glass-overlay {
		backdrop-filter: none !important;
	}

	.section-liquid-glass .glass-overlay {
		backdrop-filter: none !important;
	}

	/* Simplify animation on mobile - remove rotation */
	@keyframes blob-float {
		0%, 100% {
			transform: translate(0, 0) scale(1);
		}
		50% {
			transform: translate(-10px, 10px) scale(1.05);
		}
	}

	/* Benefits card liquid glass - extra optimization */
	.liquid-glass-bg-benefits .liquid-blob {
		filter: blur(20px) !important;
	}

	.liquid-glass-bg-benefits .liquid-blob:nth-child(3),
	.liquid-glass-bg-benefits .liquid-blob:nth-child(4) {
		display: none !important;
	}

	/* Yellow liquid glass - extra optimization */
	.liquid-glass-bg-yellow .liquid-blob {
		filter: blur(20px) !important;
	}

	.liquid-glass-bg-yellow .liquid-blob:nth-child(3),
	.liquid-glass-bg-yellow .liquid-blob:nth-child(4) {
		display: none !important;
	}
}

/* Extra optimization for small mobile devices */
@media (max-width: 576px) {
	/* Hero Section - More padding on small screens */
	.hero-softly {
		padding-top: 60px !important;
	}

	/* Even lighter blur on small screens */
	.liquid-blob {
		filter: blur(20px) !important;
		opacity: 0.5 !important;
	}

	/* Further reduce blob sizes */
	.liquid-blob:nth-child(1) {
		width: 250px !important;
		height: 250px !important;
	}

	.liquid-blob:nth-child(2) {
		width: 200px !important;
		height: 200px !important;
	}

	/* Simpler animation with less movement */
	.liquid-blob {
		animation-duration: 20s !important;
	}
}

/* Mobile Layout Fixes - Galaxy S22+ and similar devices */
@media (max-width: 991px) {
	/* Full width container for images on Culture/People page */
	section:has(img[alt*="People"]) .container,
	section:has(img[alt*="Culture"]) .container {
		max-width: 100% !important;
		padding-left: 0 !important;
		padding-right: 0 !important;
	}

	/* Ensure image sections use full width */
	section:has(img[alt*="People"]) .container > div,
	section:has(img[alt*="Culture"]) .container > div {
		border-radius: 0 !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}

	/* Contact Form - Full width on mobile with no radius */
	.col-lg-6:has(.contact-form-wrapper) {
		padding-left: 0 !important;
		padding-right: 0 !important;
	}

	.contact-form-wrapper {
		border-radius: 0 !important;
		padding: 30px 20px !important;
		width: 100vw !important;
		margin-left: calc(-50vw + 50%) !important;
		margin-right: calc(-50vw + 50%) !important;
	}

	/* Remove bottom padding from contact section on mobile to stick to footer */
	section:has(.contact-form-wrapper) {
		padding-bottom: 0 !important;
	}
}

