<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
:root {
  --white-color:                  #FFFFFF;
  --primary-color:                #C2B280;
  --section-bg-color:             #f9f9f9;
  --dark-color:                   #000000;
  --grey-color:                   #fcfeff;
  --text-secondary-white-color:   rgba(255, 255, 255, 0.98);
  --title-color:                  #565758;
  --p-color:                      #717275;

  --body-font-family:           'Noto Sans JP', sans-serif;

  --h1-font-size:               72px;
  --h2-font-size:               42px;
  --h3-font-size:               36px;
  --h4-font-size:               32px;
  --h5-font-size:               24px;
  --h6-font-size:               22px;
  --p-font-size:                20px;
  --copyright-text-font-size:   14px;
  --custom-link-font-size:      12px;

  --font-weight-light:          300;
  --font-weight-normal:         400;
  --font-weight-bold:           700;
  --font-weight-black:          900;
}

body,
html {
  height: 100%;
}

body {
    background: #e0e0e027;
    font-family: var(--body-font-family);    
    position: relative;
    overflow-x: hidden;
}


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
  line-height: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
}

h1,
h2 {
  font-weight: var(--font-weight-black);
}

h1 {
  font-size: var(--h1-font-size);
  line-height: normal;
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: black;
  font-size: 16px;
  font-weight: var(--font-weight-light);
  letter-spacing: 0.5px;
}

.text-secondary-white-color {
  color: var(--text-secondary-white-color);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  color: var(--p-color);
  text-decoration: none;
}

/*a:hover {
  color: var(--primary-color);
}*/


::selection {
  background: var(--dark-color);
  color: var(--white-color);
}

.custom-underline {
  border-bottom: 2px solid var(--white-color);
  color: var(--white-color);
  padding-bottom: 4px;
}

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  z-index: -100;
}

.custom-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.overlay {
  /*background: linear-gradient(to top, #000, transparent 90%);*/
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/*---------------------------------------
  CUSTOM LINK               
-----------------------------------------*/
.custom-links {
  max-width: 230px;
}

.custom-link {
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-block;
  transition: all .3s cubic-bezier(.645,.045,.355,1);
}

.custom-link::after {
  content: "";
  width: 0;
  height: 2px;
  bottom: 0;
  position: absolute;
  left: auto;
  right: 0;
  z-index: -1;
  transition: width .6s cubic-bezier(.25,.8,.25,1) 0s;
  background: currentColor;
}

.custom-link:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}

.custom-link:hover,
.custom-link:hover::after {
  color: var(--white-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

.topbar {
  z-index: 8; 
}

.topbar-left span {
  font-size: 1rem;
  font-weight: 300;
}

/*---------------------------------------
  NAVIGATION               
-----------------------------------------*/

.navbar {
  z-index: 10; 
  right: 0;
  left: 0;
  /*padding-top: 15px;
  padding-bottom: 15px;*/
}

.navbar-brand {
  /*color: var(--primary-color);*/
  font-size: 18px;
  font-weight: var(--font-weight-bold);
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 13px;
  padding-left: 13px;
}

.navbar-nav {
    margin-left: auto;
}

/*.navbar-nav .nav-link::after {
  content: "\f140";
  font-family: bootstrap-icons;
  display: inline-block;
  margin-left: 10px;
  color: var(--primary-color);
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  -moz-transition: opacity 0.3s, -moz-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  transform: translateY(10px);
}*/

.navbar-nav .nav-link:hover::after {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  transform: translateY(0px);
}

.navbar-nav .nav-link {
  color: black;
  font-size: 17px;
  font-family: 'Poppins', sans-serif;
  position: relative;
  margin-right: 10px;
  font-size: 17px;
  font-weight: 400;
  outline: none;
  transition: .5s;
}

@media (max-width: 768px) { /* Adjust breakpoint as needed */
  .navbar-expand-lg .navbar-nav .nav-link.active {
    display: none;
  }
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-item.active .nav-link::after {
  color: var(--primary-color);
  opacity: 1;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  transform: translateY(0px);
}

.navbar-nav .nav-item.active .nav-link,
.nav-link:focus, 
.nav-link:hover {
  color: var(--dark-color);
}

.navbar-expand-lg .navbar-nav .nav-link.active {
  color: #627d17;
  border-bottom: 2px solid #627d17; 
  padding-bottom: 5px; 
  border-top: 2px solid #627d17; 
  padding-top: 5px; 
}

.btn-primary a{
    color: white;
}



.nav-link:focus {
  color: black;
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--dark-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--dark-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon:before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon:after {
  top: 8px;
}

.hero {
  position: relative;
  overflow: hidden;
  object-fit: cover;
}

#heroCarousel .carousel-item img{
  position: relative;
  /*padding-bottom: 56.25%;  16:9 */
  object-fit: cover;
  width: 100%;
  height: 100%;

}

@media screen and (min-width: 992px) {
  .hero {
      height: 80vh;
  }

  .carousel-item img {
      object-fit: cover;
      width: 100%;
      height: 100%;
  }
}

.heroText {
  position: absolute;
  z-index: 9;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  text-align: center;
}

.gradient-text {
  background: /*linear-gradient(45deg, #5e564f, #627d17)*/ white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media screen and (max-width: 450px) {
  .heroText {
      padding-bottom: 50px;
  }

  .heroText h1 {
      font-size: 30px;
  }
  
  #heroCarousel .carousel-item img{
  position: relative;
  /*padding-bottom: 56.25%;  16:9 */
  object-fit: cover;
  width: 100%;
  height: 100%;

}
}


/*---------------------------------------
  ABOUT &amp; TEAM MEMBERS               
-----------------------------------------*/
.about-image,
.team-image {
  width: 100%;
  height: 100%;
  max-height: 635px;
  min-height: 475px;
  object-fit: cover;
}

@media screen and (max-width: 992px){
#about .primary-btn{
    margin-top: 10px;
}
}

#about p{
    text-align: justify;
}

.team-thumb {
  background: var(--white-color);
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65%;
  padding: 22px 32px 32px 32px;
}
/*
.carousel-control-next, 
.carousel-control-prev {
  top: auto;
  bottom: 2.5rem;
}

.carousel-control-prev {
  right: 4rem;
  left: auto;
}

.carousel-control-next-icon, 
.carousel-control-prev-icon {
  background-color: var(--dark-color);
  background-size: 50% 50%;
  border-radius: 100px;
  width: 3rem;
  height: 3rem;
}
*/
/*---------------------------------------
  PORTFOLIO               
-----------------------------------------*/
.portfolio {
  overflow: hidden;
  padding: 50px 0;
}

.portfolio-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.portfolio-thumb:hover {
  transform: translateY(-5px);
}

.portfolio-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.portfolio-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  transition: transform 0.3s ease-in-out;
}

.portfolio-thumb:hover .portfolio-image {
  transform: scale(1.05);
}

.portfolio-info {
  text-align: center;
  padding: 15px 0;
}

.portfolio-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-top: 10px;
}

@media (max-width: 1200px) {
  .col-md-3 {
    flex: 1 1 45%; /* 2 items per row */
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .col-md-3 {
    flex: 1 1 100%; /* 1 item per row on smaller screens */
  }

  .product-title {
    font-size: 1.1rem;
  }

  .product-description {
    font-size: 13px;
  }

  .carousel-inner img {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .product-title {
    font-size: 1rem;
  }

  .product-description {
    font-size: 12px;
  }

  .carousel-inner img {
    height: 180px;
  }
}


/*---------------------------------------
  NEWS &amp; EVENTS               
-----------------------------------------*/

.news,
.related-news {
  background: white;
}

.news-thumb {
  position: relative;
}

.news-category {
  background: var(--white-color);
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  padding: 4px 12px;
  display: inline-block;
}

.news-text-info {
  margin: 0 20px;
}

.news-title {
  margin-top: 15px;
  margin-bottom: 15px;
}

.news-title-link {
  color: var(--title-color);
  display: inline-block;
}

.news-title-link:hover {
  color: var(--dark-color);
}


.news-image {
  display: block;
  transition: transform 0.6s ease-out;
}

.news-image-hover {
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all .3s cubic-bezier(.645,.045,.355,1);
  padding-bottom: 4px;
  height: 100%;
}

.news-image-hover::after {
  content: "";
  width: 0;
  height: 4px;
  bottom: 0;
  position: absolute;
  left: auto;
  right: 0;
  z-index: -1;
  transition: width .6s cubic-bezier(.25,.8,.25,1) 0s;
  background: #198754;
}

.news-image-hover-warning::after {
  background: #ffc107;
}

.news-image-hover-primary::after {
  background: #0d6efd;
}

.news-image-hover-success::after {
  background: #198754;
}

.news-image-hover:hover::after {
  width: 100%;
  left: 0;
  right: auto;
  z-index: 9;
}

.image-popup:hover 
.news-image-hover:hover .news-image {
  transform: scale(1.02);
}

.news-two-column {
  min-height: 199px;
  margin-bottom: 16px;
}

.news-two-column .news-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-share-link,
.social-share-link + span {
  color: rgba(255, 255, 255, 0.65);
}

/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

/*---------------------------------------
  CONTACT              
-----------------------------------------*/
.contact-info {
  padding: 40px;
}

.contact-form .form-control {
  border-radius: 0;
  font-weight: var(--font-weight-normal);
  padding-top: 12px;
  padding-bottom: 12px;
}

.contact-form button[type='submit'] {
  background: #627d17;
  border: none;
  border-radius: 100px;
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  padding: 16px;
  transition: all 0.6s ease-out;
}

.contact-form button[type='submit']:hover {
  background: var(--primary-color);
}

.form-label {
  color: var(--p-color);
  font-weight: var(--font-weight-bold);
}

.map-iframe {
  display: block;
 
}

/*---------------------------------------
  SITE FOOTER               
-----------------------------------------*/
.site-footer {
  background: var(--dark-color);
  padding-top: 2.5rem;
  padding-bottom: 1rem;
}

.site-footer .p{
  color: #7F8499;
}

.site-footer p{
  color: #7F8499;
}
/*
.site-footer .custom-link {
  color: rgba(255, 255, 255, 0.65);
  font-size: var(--p-font-size);
}

.site-footer .custom-link:hover,
.site-footer .social-icon-link:hover {
  color: var(--white-color);
}

.copyright-text {
  color: rgba(255, 255, 255, 0.45);
  font-size: var(--copyright-text-font-size);
}

/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon li {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  color: rgba(255, 255, 255, 0.45);
  font-size: 1rem;
  display: inline-block;
  vertical-align: top;
  margin-top: 4px;
  margin-bottom: 4px;
  margin-right: 15px;
}

.social-icon-link:hover {
  color: var(--primary-color);
}*/

/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (min-width: 1600px) {
  .news-two-column {
    min-height: 232.5px;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .navbar {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .section-padding {
    /*padding-top: 6rem;*/
    padding-bottom: 6rem;
  }

  .team-thumb {
    left: 0;
    width: auto;
  }

  .news-two-column {
    height: auto !important;
    min-height: inherit;
  }

  .news .col-12 .news-two-column:first-child {
    margin-bottom: 38px;
  }
}

@media screen and (max-width: 767px) {
  .news-detail-title {
    font-size: 36px;
  }
}

@media screen and (max-width: 360px) {
  h1 {
    font-size: 32px;
  }

  .heroText p {
    font-size: 14px;
  }
}

@media screen and (max-width: 359px) {
  .news-detail-title {
    font-size: 22px;
  }
}

.navbar-logo {
  height: 50px;
  width: auto; /* Optional: maintain aspect ratio */
}




.course-right .fa-solid, .course-left .fa-solid {
  color: #627d17;
  font-size: 30px;
  margin-left: 10px;
}

.course-right h4, .course-left h4 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 18px;
}

.course-right p, .course-left p {
  margin-top: 0;
  margin-bottom: 1rem;
}

.single-course {
  margin-bottom: 40px;
  max-width: 100%;
}

.home-about-area .home-about-right {
  padding-right: 20%;
  padding-left: 4%;
}



.home-about-area .home-about-right h1 {
  margin-bottom: 20px;
}

.home-about-area .home-about-right p span {
  font-weight: 500;
  font-size: 14px;
}

.home-about-area .home-about-right p {
  font-size: 15px;
}


.home-about-area .home-about-right .primary-btn {
  color: #fff;
  border: 1px solid #fff;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.home-about-area .home-about-right .primary-btn:hover {
  background: transparent;
  color: #627d17;
  border-color: #627d17;
}

@media (max-width: 1366px) {
  .home-about-area .home-about-right {
    padding-right: 5%;
    padding-left: 4%;
  }
}

@media (max-width: 800px) {
  .home-about-area .home-about-right {
    margin-top: 40px;
  }
}

.p1-gradient-bg, .primary-btn, .home-about-area .home-about-right .primary-btn, .single-unique-product:hover .primary-btn, .faq-left .card-header, .single-footer-widget .click-btn, .service-area .primary-btn:hover, .generic-banner {
  background-color: #627d17;
}

.primary-btn {
  line-height: 36px;
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 25px;
  border: none;
  color: #fff;
  display: inline-block;
  font-weight: 500;
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  text-transform: uppercase;
  position: relative;
}

.primary-btn:focus {
  outline: none;
}

.primary-btn span {
  color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  right: 30px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.primary-btn:hover {
  color: #fff;
}

.primary-btn:hover span {
  color: #fff;
  right: 20px;
}



.primary-btn.white {
  border: 1px solid #fff;
  color: #fff;
}

.primary-btn.white span {
  color: #fff;
}

.primary-btn.white:hover {
  background: #fff;
  color: #627d17;
}

.primary-btn.white:hover span {
  color: #627d17;
}

.service-area .header-text {
  text-align: center;
}

.service-area{
  background-color: white;
}

.service-area .row{
  margin-top: 30px;
}

.service-area .header-text h2 {
  margin-bottom: 20px;
}

.single-service {
  background-color: #C7C7C7;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  min-height: 230px;
}

.single-service:hover {
  box-shadow: 0px 20px 30px 0px rgba(98, 125, 23, 0.2);
  cursor: pointer;
}

.single-service:hover h4 {
  color: #627d17;
}

.single-service h4 {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 18px;
}

.single-service h4 .lnr {
  margin-right: 15px;
}


.portfolio{
  background: var(--section-bg-color);
}

.product-card {
 border: 1px solid #ddd;
  border-radius: 10px;
  margin: 10px;
  text-align: center;
  background-color: #fff;
  width: 100%;
  min-height: 520px;
  position: relative;
}

.product-card:hover {
  box-shadow: 0 0 55px rgba(0, 0, 0, 0.4);
}


.product-title {
  margin-top: 10px;
  font-size: 1.2rem;
  font-weight: bold;
  padding-left: 1rem;
  padding-right: 1rem;
}

.product-description{
  font-size: 14px;
  color: #000000;
  padding-left: 1rem;
  padding-right: 0.75rem;
  font-weight: 400;
}


.carousel-inner img {
  height: 250px;
  object-fit: fill;
  overflow: hidden;
  transition: 0.5s;
  border-radius: 10px 10px 0 0;
}



.modal img {
  width: 100%;
  height: auto;
}


.banner-area {
  background: url(../images/banner1.png) no-repeat center center;
  background-size: cover;
}

@media (max-width: 1199.98px) {
  .banner-area .fullscreen {
    height: 100% !important;
    width: 100%;
  }
}



.banner-content {
  margin-top: -250px;
  text-align: center;
}

.banner-content h1 {
  color: #fff;
  font-size: 72px;
  font-weight: 700;
  line-height: 1em;
  margin-top: 20px;
}

.banner-content h1 span {
  font-weight: 700;
}

@media (max-width: 991.98px) {
  .banner-content h1 {
    font-size: 36px;
  }
}

@media (max-width: 991.98px) {
  .banner-content h1 br {
    display: none;
  }
}

@media (max-width: 1199.98px) {
  .banner-content h1 {
    font-size: 45px;
  }
}

@media (max-width: 414px) {
  .banner-content h1 {
    font-size: 40px;
  }
}

.banner-content h5 {
  font-weight: 400;
  letter-spacing: 3px;
}

@media (max-width: 1280px) {
  .banner-content br {
    display: none;
  }
}

.banner-area {
  height: 100vh; /* Full viewport height */
}

.banner-content {
  margin-top: 50px; /* Test without negative margin */
}

/*** Footer ***/
.site-footer  {
  color: #7F8499;
}

/*.site-footer  .btn.btn-link {
  display: block;
  padding: 0;
  text-align: left;
  color: #7F8499;
  font-weight: normal;
  text-transform: capitalize;
  transition: .3s;
}

.site-footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #7F8499;
  
}*/

.site-footer {
  /*background: var(--dark-color);*/
  background: linear-gradient(rgb(0 0 0 / 80%), rgb(0 0 0 / 80%)), url(../images/carousel-1.jpeg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  padding: 2.5rem 0 1rem;
}

.site-footer p, .site-footer .p {
  color: #7F8499;
  font-size: 0.9rem;
}

.site-footer .footer-links {
  display: flex;
  flex-direction: column;
}

.site-footer .footer_a {
  text-align: left;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: #7F8499;
}

.site-footer .copyright {
  padding: 15px 0;
  border-top: 1px solid rgba(256, 256, 256, .1);
  font-size: 0.9rem;
}

.site-footer .copyright a {
  color: var(--primary);
  font-size: 0.9rem;
}

.site-footer .copyright a:hover {
  color: #FFFFFF;
}


/*** Youtube Video start ***/
.video {
  position: relative;
}

.video .btn-play {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-sizing: content-box;
  display: block;
  width: 33px;
  height: 44px;
  border-radius: 50%;
  transition: 0.5s;
  

}

.video .btn-play:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 115px;
  height: 115px;
  background: var(--bs-primary);
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
  transition: 0.5s;
}

.video .btn-play:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 100px;
  height: 100px;
  background: var(--bs-secondary);
  border-radius: 50%;
  transition: all 300ms;
}

.video .btn-play span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 33px solid var(--bs-white);
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
  margin-left: 5px;
}

@keyframes pulse-border {
  0% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
      opacity: 1;
  }

  100% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
      opacity: 0;
  }
}

#videoModal {
  z-index: 99999;
}

#videoModal .modal-dialog {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0 auto;
}

#videoModal .modal-body {
  position: relative;
  padding: 0px;
}

#videoModal .close {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 0px;
  top: -30px;
  z-index: 999;
  font-size: 30px;
  font-weight: normal;
  color: #ffffff;
  background: #000000;
  opacity: 1;
}
/*** Youtube Video End ***/




.container {
  /*width: 90%;*/
  max-width: 1200px;
  margin: 0 auto;
  /*padding: 20px 0;*/
  overflow-x: hidden;
}

.container, .row {
  overflow: hidden; /* Hide content overflow if unintended */
}

.header {
  background: url(../images/granules.jpg);
  color: #fff;
  text-align: center;
  padding: 50px 0;
  opacity: 90%;
  display: flex;
  object-fit: fill;
}

.header h1 {
  font-size: 3rem;
  margin: 0;
}

.header p {
  font-size: 1.2rem;
  margin: 10px 0 0;
}

.intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 40px 0;
}

.intro .text {
  flex: 1;
}



.features {
  text-align: center;
  background-color: #f1f9f9;
  padding: 40px 0;
}

.features h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.feature-item {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  text-align: center;
}

.feature-item:hover {
  transform: translateY(-10px);
}

.feature-item i {
  font-size: 2rem;
  color: #72c2d9;
  margin-bottom: 10px;
}

.applications {
  padding: 40px 0;
}

.applications h2 {
  text-align: center;
  margin-bottom: 30px;
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.application-item {
  text-align: center;
}

.application-item .image-placeholder {
  height: 200px;
  background: #e1e1e1;
  border-radius: 10px;
  margin-bottom: 10px;
}

.footer {
  background: #34627d;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}

.raw-material-container {
  text-align: center; /* Centers content inside each column */
  margin: 0; /* Removes unnecessary spacing */
}

.raw-material {
  width: 100px; 
  height: 100px; 
  border-radius: 50%; 
  overflow: hidden; 
  border: 2px solid #28a745; 
  object-fit: cover;
  margin-bottom: 5px; /* Reduces space between image and text */
}

.raw-materials .row {
  gap: 10px; /* Adds 10px gap between columns */
}

.raw-materials .row .col-lg-2 {
  padding: 0; /* Removes extra padding to make images closer */
}



/*Product Page*/
.container_product {
  position: relative;
  margin: auto;
  padding: 20px;
  display: flex;
  gap: 20px;
}

.product-images {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.main-image {
  width: 100%;
  max-width: 400px;
  border-radius: 5px;
}
.thumbnail-container {
  display: flex;
  margin-top: 10px;
}
.thumbnail {
  width: 60px;
  height: 60px;
  margin: 5px;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 5px;
}
.thumbnail:hover, .thumbnail.active {
  border-color: #007bff;
}
.product-details {
  flex: 1.5;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 10px;
}
.product-details h2 {
  margin: 0 0 10px 0;
}
.product-details p {
  margin: 0 0 20px 0;
  line-height: 1.6;
}
.options {
  margin-bottom: 20px;
}
.options label {
  font-weight: bold;
  margin-right: 10px;
}
.color-options, .size-options {
  display: flex;
  gap: 10px;

}
.color-box {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid black;
  position: relative;
}
.color-box.active {
  border: 2px solid black;
}
.size-option {
  padding: 5px 10px;
  border: 1px solid #ccc;
  cursor: pointer;
  border-radius: 4px;
}
.size-option.active {
  background: #007bff;
  color: white;
}
.price {
  font-size: 24px;
  color: #d9534f;
  margin-top: 20px;
}

.tooltip {
  position: absolute;
  color: white;
  background-color: black;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  display: none;
  pointer-events: none;
  white-space: nowrap;
  z-index: 9999;
  opacity: 1;
  text-align: center;
  transition: opacity 0.2s ease-in-out, transform 0.1s ease-in-out;
}




.view-button{
  line-height: 30px;
  padding-left: 6px;
  padding-right: 6px;
  border-radius: 25px;
  border: 1px solid #627d17;
  color: #627d17;
  display: inline-block;
  font-weight: 500;
  position: absolute; /* Change position to absolute */
  bottom: 15px; /* Set the button 15px from the bottom */
  left: 50%; /* Center horizontally */
  transform: translateX(-50%); /* Adjust for exact centering */
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
}

.view-button:hover{
  border: 1px solid #627d17;
  background-color: #627d17; 
  color: white;
}

.page-header {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../images/carousel-2.jpeg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.breadcrumb-item a {
  color: white;
  text-decoration: none;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6
}

.nav-tabs .nav-link {
  margin-bottom: -1px;
  background: none;
  border: 1px solid rgba(0,0,0,0);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px
}

.nav-tabs .nav-link:hover,.nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
  isolation: isolate
}

.nav.nav-tabs .nav-link.active {
  border-bottom: 2px solid var(--bs-secondary) !important;
}

.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: rgba(0,0,0,0);
  border-color: rgba(0,0,0,0)
}

.nav-tabs .nav-link.active,.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #ffb524;
  border-color: #dee2e6 #dee2e6 #fff
}

.nav-tabs .nav-link {
  color: black;
}

.nav-tabs .nav-link:focus,.nav-link:hover {
  color: #495057;
}

.tab-content ul{
  list-style-type: none;
}

.tab-content li img {
  margin-right: 10px;
  width: 40px; 
  height: auto; 
}

/* Responsive Styles */
@media (max-width: 768px) {
  .container_product {
    flex-direction: column;
    align-items: center;
  }

  .product-images {
    width: 100%;
    align-items: center;
  }

  .main-image {
    max-width: 100%;
  }

  .thumbnail-container {
    justify-content: center;
    flex-wrap: wrap;
  }

  .thumbnail {
    width: 50px;
    height: 50px;
  }

  .product-details {
    width: 100%;
    text-align: center;
    padding: 15px;
  }

  .color-options,
  .size-options {
    justify-content: center;
    flex-wrap: wrap;
  }

  .color-box {
    width: 25px;
    height: 25px;
  }

  .size-option {
    padding: 5px 8px;
  }

  .price {
    font-size: 20px;
  }

  /* Tabs Section */
  .nav.nav-tabs {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-tabs .nav-link {
    font-size: 14px;
    padding: 8px 12px;
  }

  .tab-content {
    text-align: center;
  }

  .tab-pane ul {
    padding-left: 0;
  }

  .tab-pane ul li {
    list-style: none;
    margin-bottom: 10px;
  }

  .tab-pane ul li img {
    display: block;
    margin: auto;
    max-width: 50px;
  }
}

.status-message {
  text-align: center;
  font-size: 16px;
  margin-top: 10px;
  display: none;
}
      
.success {
  color: green;      
}
      
.error {
  color: red;
}

#privacy li{
  margin-left: 20px;
}
</pre></body></html>