/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

@font-face {
  font-family: 'BebasNeue-Regular';
  src: url(../font/BebasNeue-Regular.ttf);
}

@font-face {
  font-family: 'Manrope-Bold';
  src: url(../font/Manrope-Bold.ttf);
}

@font-face {
  font-family: 'Manrope-ExtraBold';
  src: url(../font/Manrope-ExtraBold.ttf);
}

@font-face {
  font-family: 'Manrope-ExtraLight';
  src: url(../font/Manrope-ExtraLight.ttf);
}

@font-face {
  font-family: 'Manrope-Light';
  src: url(../font/Manrope-Light.ttf);
}

@font-face {
  font-family: 'Manrope-Medium';
  src: url(../font/Manrope-Medium.ttf);
}

@font-face {
  font-family: 'Manrope-Regular';
  src: url(../font/Manrope-Regular.ttf);
}

@font-face {
  font-family: 'Manrope-SemiBold';
  src: url(../font/Manrope-SemiBold.ttf);
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: 'Manrope-Regular';
  font-size: 18px;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1{
  text-transform: uppercase;
  font-family: 'BebasNeue-Regular';
  color: #FFFFFF;
}
h2{
  font-size: 58px;
}

h2,
h4,
h5,
h6 {
  color: #000000;
  font-family: 'Manrope-Bold';
}

h3{
  color: #000000;
  font-family: 'Manrope-SemiBold';
  font-size: 48px;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
.topbar-marquee {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  padding: 9px 0;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  animation: marquee-rtl 10s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-right: 50px; /* spacing between items */
  font-size: 14px;
}

.separator {
  opacity: 0.6;
}

@keyframes marquee-rtl {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause on hover (optional but recommended) */
.topbar-marquee:hover .marquee-track {
  animation-play-state: paused;
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: #FFFFFF;
}

.header .topbar {
  background-color: #231F20;
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
  color: #fff;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--contrast-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--contrast-color);
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: var(--contrast-color);
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--contrast-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .social-links a:hover {
  color: var(--contrast-color);
}

.header .branding {
  background-color: var(--background-color);
  min-height: 60px;
  padding: 10px 0;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 56px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color:#231F20;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #000000;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: #FFFFFF;
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: #FFFFFF;
  background-color: #231F20;
  font-size: 14px;
}


.footer .copyright {
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #322C2E;
}

.footer .copyright p {
  margin-bottom: 0;
}

.location-footer img{
  width: 38px;
  height: 38px;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader div {
  width: 13px;
  height: 13px;
  background-color: var(--accent-color);
  border-radius: 50%;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
  position: absolute;
  left: 50%;
}

#preloader div:nth-child(1) {
  left: calc(50% + 8px);
  animation: animate-preloader-1 0.6s infinite;
}

#preloader div:nth-child(2) {
  left: calc(50% + 8px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(3) {
  left: calc(50% + 32px);
  animation: animate-preloader-2 0.6s infinite;
}

#preloader div:nth-child(4) {
  left: calc(50% + 56px);
  animation: animate-preloader-3 0.6s infinite;
}

@keyframes animate-preloader-1 {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes animate-preloader-3 {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

@keyframes animate-preloader-2 {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(24px, 0);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: #027563;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #FFFFFF;
  line-height: 0;
}

.scroll-top:hover {
  background-color: #027563;
  color: #FFFFFF;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.hero-banner{
  position: absolute;
  top: 15%;
  bottom: 0;
  left: 8%;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-banner h1{
  font-size: 96px;
}
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}



/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 78px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 60px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/* company-overview */

#company-overview hr {
    color: #C1C1C1;
    opacity: 0.5;
    margin-bottom: 0;
}

.vision-mission{
  flex-direction: column;
}

.vision-mission p{
  margin-bottom: 0;
}

.vision{
  border-left: 2px solid #E4AF21;
  padding-left: 25px;
}

.mission{
  border-left: 2px solid #027563;
  padding-left: 25px;
}

.values {
    padding: 25px;
    background-color: #D6FFE9;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.v-image{
  min-width: 300px;
  min-height: 380px;
}

/* jcr-fashion */

.jcr-fashion-main{
  background-color: #D6FFE9;
  padding: 5px;
}

.family-store{
  background-color: #FFFFFF;
  padding: 40px;
}

.one-center-jcr{
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 15px;
  background-color: #FFFFFF;
  border: 1px solid #D0D0D0;
  margin: 15px;
}

.one-center-jcr img{
  max-width: 190px;
  max-height: 88px;
  margin: 0 auto;
}

.one-center-jcr p{
  margin-bottom: 0;
}

/* one-center-journey */

.our-journey-main p{
  color: #333333;
}

.journey-year h4{ 
  padding: 15px;
  background-color: #027563;
  color: #FFFFFF;
}

.journey-text{
  padding: 15px;
}

.future-year h4{
  background-color: #364670;
}

.second-cols{
  flex-direction: column;
}

rectpackr-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 140px;
  gap: 16px;
  padding: 16px;
  box-sizing: border-box;
}


rectpackr-layout > * {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* LEFT TALL IMAGE */
rectpackr-layout > *:nth-child(1) {
  grid-column: 1 / span 1;
  grid-row: span 3;
}

/* TOP MIDDLE */
rectpackr-layout > *:nth-child(2) {
  grid-column: 2 / span 1;
  grid-row: span 2;
}

/* TOP RIGHT – BIG BANNER */
rectpackr-layout > *:nth-child(3) {
  grid-column: 3 / span 2;
  grid-row: span 3;
}

/* SECOND ROW SMALL */
rectpackr-layout > *:nth-child(4) {
  grid-column: 2 / span 1;
  grid-row: span 1;
}

/* SECOND ROW SMALL */
rectpackr-layout > *:nth-child(5) {
  grid-column: 1 / span 1;
  grid-row: span 1;
}

/* SECOND ROW SMALL */
rectpackr-layout > *:nth-child(6) {
  grid-column: 2 / span 1;
  grid-row: span 1;
}

/* THIRD ROW LEFT */
rectpackr-layout > *:nth-child(7) {
  grid-column: 3 / span 1;
  grid-row: span 1;
}

/* THIRD ROW MIDDLE */
rectpackr-layout > *:nth-child(8) {
  grid-column: 4 / span 1;
  grid-row: span 1;
}

/* THIRD ROW RIGHT */
rectpackr-layout > *:nth-child(9) {
  grid-column: 5 / span 1;
  grid-row: span 1;
}

rectpackr-layout a {
  display: block;
  width: 100%;
  height: 100%;
}

rectpackr-layout img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
}



/* product-category */

#product-category{
  background-color: #F5F5F5;
}

.product-category-main{
  background-color: #FFFFFF;
  padding: 15px;
  height: 100%;
  padding-top: 50px;
}
.product-img {
    position: absolute;
    top: -40px;
    right: 0;
    left: 0;
    bottom: 0;
}

.product-img img{
  max-width: 74px;
  max-height: 74px;
}

#newest-journey p{
  color: #333333;
}

.newest-text{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#product-usp{
  background-color: #333333;
  color: #FFFFFF;
}

#product-usp h5{
  color: #FFFFFF;
  margin-bottom: 0;
}

.product-box p{
  margin-bottom: 0;
}

.product-box{
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.strategy{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#opening-strategy{
  background-color: #231F20;
  color: #FFFFFF;
  background-image: url('../img/Pattern.png');
  background-position: 90%;
  background-repeat: no-repeat;
  background-size: contain;
}

.strategy{
  padding-right: 80px;
}

.upcoming-main h4{
  padding-top: 15px;
  border-top: 2px solid #364670;
  margin-top: 20px;
  min-height: 75px;
}

.cdr-list{
  display: flex;
  background-color: #FFFFFF;
  padding: 10px;
  border-radius: 10px;
  margin-top: 15px;
  gap: 10px;
}

.cdr-list p{
  margin-bottom: 0;
  color: #333333;
}

.cdr-list img{
  width: 24px;
  height: 24px;
}

.cdr-main{
  background-color: #E7EEFF;
  border-radius: 15px;
  padding: 30px;
}

#brand-owned{
  background-color: #F5F5F5;
}

.brand-slider div{
  margin: 0 20px;
}

#awards h4{
  font-family: 'Manrope-SemiBold';
}

#awards h5{
  margin-top: 15px;
}

#upcoming-refilling .section-title h4{
  color: #333333;
}

.accordion-item {
    padding-left: 15px;
    border-left: 3px solid #027563;
    margin-bottom: 15px;
}

.accordion-item.active {
  border-left-color: #E4AF21; /* active border color */
}

.accordion-header {
  display: flex;
  align-items: center;
  gap: 14px;
  background: none;
  border: none;
  cursor: pointer;
  width: 100%;
  padding: 0;
  text-align: left;
}

.accordion-content {
  margin-top: 12px;
  display: none;
}

.accordion-item.active .accordion-content {
  display: block;
}



/* intoduction */


#intoduction{
  background-color: #F5F5F5;
}
.carousel-container {
    width: 100%;
    max-width: 1045px;
    height: 350px;
    position: relative;
    perspective: 1000px;
    margin: 0 auto;
}

.carousel-track {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	transform-style: preserve-3d;
	transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card {
	position: absolute;
  width: 100%;
  height: 100%;
	background: #fff;
  padding: 25px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0,0,0,0.15);
	transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	cursor: pointer;
  border-radius: 0;
  border:none;
}

.card img {
	width: 98px;
	height: 98px;
	object-fit: cover;
}

/* Positions */
.card.center {
	z-index: 10;
	transform: scale(1.1);
}

.card.left-1 {
	z-index: 5;
	transform: translateX(-200px) scale(0.9) translateZ(-100px);
	opacity: 0.9;
}

.card.left-2 {
	z-index: 1;
	transform: translateX(-400px) scale(0.8) translateZ(-300px);
	opacity: 0.7;
}

.card.right-1 {
	z-index: 5;
	transform: translateX(200px) scale(0.9) translateZ(-100px);
	opacity: 0.9;
}

.card.right-2 {
	z-index: 1;
	transform: translateX(400px) scale(0.8) translateZ(-300px);
	opacity: 0.7;
}

.card.left-1 img,
.card.left-2 img,
.card.right-1 img,
.card.right-2 img {
	filter: grayscale(100%);
}

.card.hidden {
	opacity: 0;
	pointer-events: none;
}

/* Dots */
.dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 60px;
}

.dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(8,42,123,0.2);
	cursor: pointer;
	transition: 0.3s;
}

.dot.active {
	background: rgb(8,42,123);
	transform: scale(1.2);
}

.info-founder{
  padding-bottom: 30px;
}

/* Responsive */
@media (max-width: 768px) {
	

	.card.left-2 { transform: translateX(-250px) scale(0.8) translateZ(-300px); }
	.card.left-1 { transform: translateX(-120px) scale(0.9) translateZ(-100px); }
	.card.right-1 { transform: translateX(120px) scale(0.9) translateZ(-100px); }
	.card.right-2 { transform: translateX(250px) scale(0.8) translateZ(-300px); }

  .card p{
    font-size: 12px;
  }


}

/* iPad Pro */
@media screen and (max-width: 1199.98px) {
  

  h2 {
    font-size: 40px;
  }

  h3{
    font-size: 30px;
  }

  .cdr-list{
    min-height: 70px;
  }

  .carousel-container {
    max-width: 765px;
    height: 460px;
    perspective: 509px;
  }

    .hero-banner{
    top: 30%;
  }


}

/* iPad Mini */
@media screen and (max-width: 991.98px) {

  .hero h1 {
    font-size: 62px;
  }
  p,
  a {
    font-size: 16px;
  }
  h2 {
    font-size: 30px;
  }
  section {
    padding: 30px 0;
  }

      .carousel-container {
        max-width: 587px;
        height: 430px;
        perspective: 869px;
    }

  rectpackr-layout {
      grid-auto-rows: 100px;
  }

}

/* Mobile */
@media screen and (max-width:767.98px) {

  section {
    padding: 30px  0;
  }
  h2 {
    font-size: 34px;
  }
  .hero h1 {
    font-size: 56px;
  }
  h3 {
    font-size: 28px;
  }
  h5 {
    font-size: 20px;
  }
  p,
  a {
    font-size: 15px;
  }
  .values-image{
    flex-direction: column;
  }
    .carousel-container{
    max-width: 300px;
    height: 480px;
  }

  .family-store,
  .one-center-newest{
    flex-direction: column;
  }
  .strategy {
      padding-right: 50px;
  }
  .vision,
  .mission {
      padding-left: 15px;
  }

  #newest-journey hr{
    margin: 0;
  }

  rectpackr-layout {
      grid-auto-rows: 50px;
  }

  .hero-banner{
    top: -61%;
  }
}