/* Fonts */
:root {
  --default-font: "Poppins", sans-serif;
  --heading-font: "Poppins", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --primary-color: #89592A; /* Jaggery brown */
  --secondary-color: #FFB347; /* Turmeric yellow */
  --tertiary-color: #A3C586; /* Corriander green */
  --forth-color: #D4AF37; /* Saffron gold */

  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #666666; /* Default color used for the majority of the text content across the entire website */
  --heading-color: var(--primary-color); /* Color for headings, subheadings and title throughout the website */
  --accent-color: var(--primary-color); /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: var(--secondary-color); /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #666666; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: var(--secondary-color); /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: var(--primary-color);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

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,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* Button
------------------------------*/




.btn-primary {
  background-color: var(--primary-color);
  color: var(--contrast-color);
  border: var(--primary-color);
  font-weight: 600;
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--contrast-color);
  border: var(--secondary-color);
  font-weight: 600;
}

.btn-tertiary {
  background-color: color-mix(in srgb, var(--tertiary-color), #ffffff 60%);
  color: var(--accent-color);
  border: var(--tertiary-color);
  font-weight: 600;
}

.btn-primary:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--primary-color), transparent 20%);
  border: var(--primary-color);
}

.btn-secondary:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--secondary-color), transparent 20%);
  border: var(--secondary-color);
}

.btn-tertiary:hover {
  color: var(--accent-color);
  background: color-mix(in srgb, var(--tertiary-color), transparent 20%);
  border: var(--tertiary-color);
}

/* .journey-btn .btn:active {
  background: #6D4821;
} */

/* Focus-visible State */
.btn-primary:focus-visible, .btn-secondary:focus-visible, .btn-tertiary:focus-visible , .contact .btn-success:focus-visible {
  outline: none !important;
  box-shadow: 0 0 8px color-mix(in srgb, var(--primary-color), transparent 50%) !important;
}

/* Active State */
.btn-primary:active , .btn-secondary:active , .btn-tertiary:active , .contact .btn-success:active {
  background: color-mix(in srgb, var(--primary-color), transparent 30%) !important;
  border: var(--primary-color) !important;
}

/* Typography Color
------------------------------*/

.text-primary {
  color: var(--primary-color) !important;
}

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

/* Background Color
------------------------------*/
.bg-primary {
  background-color: var(--primary-color) !important;
}

.bg-secondary {
  background-color: var(--secondary-color) !important;
}

.bg-tertiary {
  background-color: var(--tertiary-color) !important;
}

.bg-forth {
  background-color: var(--forth-color) !important;
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: var(--background-color);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
  display: none;
}

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

.header .cta-btn,
.header .cta-btn:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 50px;
  transition: 0.3s;
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .logo h1 {
    font-size: 24px;
  }

  .header .cta-btn {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 20px;
  }

  .header .navmenu {
    order: 3;
  }
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: var(--primary-color)
}

.scrolled .header .logo img {
  display: block;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@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>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

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

  .navmenu a,
  .navmenu a:focus {
    color: color-mix(in srgb, var(--nav-color), transparent 30%);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

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

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -27px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

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

  .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;
  }
}

/* Mobile Navigation */
@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);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .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);
    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: #fff;
    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: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

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

/*----------------------------------------------------------
# Global Footer
------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
  position: relative;
}

/* .footer h3 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
} */

/* .footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 30px 0;
} */

.footer .footer-middle p {
  color: var(--nav-color);
}

.footer .social-links {
  margin: 30px 0 30px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer .social-links img {
  height: 33px;
  width: 33px;
}

@media (max-width :780px) {
.footer .footer-header{
  padding-left: 35px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /* align-items: center;
  text-align: center !important; */
}

.footer .social-links { 
  display: flex;
  flex-wrap: wrap;
align-items: center;
justify-content: center;
}

.footer .footer-address {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
}
}




/* .footer .social-links a {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  line-height: 1;
  margin: 0 4px;
  border-radius: 50%;
  text-align: center;
  width: 30px;
  height: 30px;
  transition: 0.3s;
} */

/* .footer .social-links a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  text-decoration: none;
} */

.footer .copyright {
  padding-top: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}



.footer .footer-address {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 15px;
}

.footer .footer-address .address-content i {
font-size: medium;
}

  .footer .footer-address .address-content {
    display: flex;
    gap: 15px;
    text-align: left;
    }


@media (max-width: 568px) { /* Tablets & Mobile */
  .footer-middle {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .footer-middle a p {
    font-size: 14px; /* Slightly smaller font for small screens */
    /* padding: 8px 0; */
  }

  .footer .footer-header{
    padding-left: 35px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center !important;
  }

}

.footer .footer-address p a {
  color: #FFFFFF;
}



/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

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

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

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

@media (max-width: 1199px) {

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

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title{
  padding-bottom: 25px;
  position: relative;
}

.section-title h2 {
  font-size: 38px;
  font-weight: 500;
  margin-bottom: 10px;
  padding-bottom: 10px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
}

.section-title.no-border h2:after {
  display: none;
}

.section-title p {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 0;
  color: var(--default-color);
  /* color: color-mix(in srgb, var(--default-color) 90%, white 50%); */
}

.section-content p  {
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}

.section-highlights{
  text-align: center;
  max-width: 50rem;
}

.section-highlights h2{
  color: var(--forth-color);
  font-weight: 700;
  font-size: 28px;
  line-height: 40px;
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 32px;
    font-weight: 500;
  }

  .section-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero .container img {
  width: 250px;
  margin: 30px;
}

.hero h2 {
  margin: 0;
  font-size: 46px;
  font-weight: 700;
}

.hero p {
  color: var(--contrast-color);
  font-size: 18px;
  max-width: 45rem;
}

.hero p.subheading {
  font-size: 32px;
  margin: 20px;
}

@media (max-width: 768px) {
  .hero .container img {
    width: 230px;
    margin: 25px;
  }
  
  .hero h2 {
    font-size: 32px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-top: 20px;
  }

  .hero p.subheading {
    font-size: 24px;
    line-height: 30px;
  }
}

/*--------------------------------------------------------------
# Journey Section
--------------------------------------------------------------*/
.journey .journey-image , .about-journey .about-journey-image {
  position: relative;
  min-height: 400px;
}

.journey .journey-image img, .about-journey .about-journey-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  margin-top: -125px;
  padding: 0px 10px;
}


@media (max-width: 1200px) {
  .journey .journey-image img {
    margin-top: 0;
  }
}

/* btn primary */

@media (max-width: 500px) {
  .journey .journey-btn {
    text-align: center !important;
  }

}


/*--------------------------------------------------------------
# Trust Section
--------------------------------------------------------------*/

.trust .circle {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  text-align: center;
  margin: auto;
  padding: 50px;
}

.trust .circle.one{
  background-color: var(--secondary-color);
}
.trust .circle.two{
  background-color: var(--tertiary-color);
}
.trust .circle.three{
  background-color: var(--forth-color);
}

/* Trust Circle Container */
.trust .circle-container {
  margin-top: 100px;
  margin-bottom: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.trust .circle-container-one { 
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust .circle-container-one p { 
  margin-top: 0px;
  margin-bottom: 0px;
}

.trust .circle-content, .trust .circle-content-middle {
 
  padding: 20px 50px;
  border-radius: 60px;
  max-width: 350px;
  font-size: 18px;
  font-weight: 700;
  color: #89592A;
  text-align: center;
  position: relative;
  left: 40px;
}

.trust .circle-content-middle {
margin-left: -80px;
  }

.trust .circle-image, .trust .circle-image-middle {
  width: 400px;
  height: 400px;
  border-radius: 100%;
}


@media (max-width: 769px) {


  .trust .circle-content {
    max-width: 240px;
    padding: 10px 30px ;
    font-size: 14px;
    left: 30px;
  }
  .trust .circle-content-middle{
    max-width: 240px;
    padding: 10px 30px ;
    font-size: 14px;
    margin-left: -70px;
  }

  .trust .circle-image, .trust .circle-image-middle {
    width: 250px;
    height: 250px;
  }
}


@media (max-width: 480px) {
  .trust .circle-content, .trust .circle-content-middle {
    max-width: 210px;
    padding: 8px 25px;
    font-size: 12px;
  }

  .trust .circle-image, .trust .circle-image-middle {
    width: 150px;
    height: 150px;
  }
}

/* --------------------------------------------------------------
# Testimonial Section
--------------------------------------------------------------*/

.testimonials .title-stars, .certifications .certifications-title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 700;
  color: var(--default-color);
}

.testimonials .title-stars::before,
.testimonials .title-stars::after {
  content: '';
  display: inline-block;
  width: 100px;
  height: 70px;
  background-image: url('../img/testimonial-star.svg');
  background-size: contain;
  background-repeat: no-repeat;
}

.testimonials .title-stars::before {
  margin-right: 60px;
}

.testimonials .title-stars::after {
  margin-left: 60px;
  transform: scaleX(-1);
}

@media (max-width: 768px) {
  .testimonials .title-stars::before,
  .testimonials .title-stars::after {
    width: 80px; 
    /* height: 60px; */
  }

  .testimonials .title-stars::before {
    margin-right: 40px; 
  }

  .testimonials .title-stars::after {
    margin-left: 40px;
  }
}

@media (max-width: 480px) {
  .testimonials .title-stars::before,
  .testimonials .title-stars::after {
    width: 50px;
    /* height: 40px; */
  }

  .testimonials .title-stars::before {
    margin-right: 20px;
  }

  .testimonials .title-stars::after {
    margin-left: 20px;
  }
}

/* carosel */
.testimonialCarousel {
  margin-top: -30px;
}

.testimonialCarousel .testimonial-card {
  width: 300px;
  height: 330px;
  border-radius: 60px;
  text-align: center;
  padding: 20px;
  margin: 20px auto; /* Added margin for spacing */
  position: relative;
}

.testimonialCarousel .testimonial-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: -50px auto 5px;
  border: 3px solid #fff;
}

.testimonialCarousel .testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonialCarousel .testimonial-content {
  padding: 10px 20px;
  font-size: 14px;
  color: #333333;
  text-align: start;
}

.testimonialCarousel .testimonial-author {
  margin-top: 20px;
}

/* Responsive Carousel */
@media (min-width: 1000px) {
  .testimonialCarousel {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px; /* Added margin for better spacing */
  }
}
@media (max-width: 999px) {
  .testimonialCarousel {
    margin-top: -5px !important;
  }
  .testimonialCarousel {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
  }
  
  .testimonialCarousel .testimonial-card {
    margin-top: 50px;
  }

}







/* carosel */

/* @media (max-width: 1000px) {
  .carousel-inner .carousel-item > div {
    display: none;
  }
  .carousel-inner .carousel-item > div:first-child {
    display: block;
  }
}

.carousel-inner .carousel-item.active,
.carousel-inner .carousel-item-start,
.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev {
  display: flex;
}

@media (min-width: 1000px) {
  .carousel-inner .carousel-item-right.active,
  .carousel-inner .carousel-item-next,
  .carousel-item-next:not(.carousel-item-start) {
    transform: translateX(25%) !important;
  }

  .carousel-inner .carousel-item-left.active,
  .carousel-item-prev:not(.carousel-item-end),
  .active.carousel-item-start,
  .carousel-item-prev:not(.carousel-item-end) {
    transform: translateX(-25%) !important;
  }

  .carousel-item-next.carousel-item-start, .active.carousel-item-end {
    transform: translateX(0) !important;
  }

  .carousel-inner .carousel-item-prev,
  .carousel-item-prev:not(.carousel-item-end) {
    transform: translateX(-25%) !important;
  }
}

.carousel-item {
  padding: 50px;
}

.carousel-indicators {
  margin-bottom: 0;
}

.carousel-indicators [data-bs-target] {
  background-color: #D9D9D9;
  border-radius: 50%;
  width: 15px;
  height: 15px;
}

.carousel-indicators .active {
  background-color: #A3C586;
}

.testimonial-card {
  width: 300px;
  height: 330px;
  border-radius: 60px;
  text-align: center;
  transform-origin: center;
  padding: 20px;
  margin: auto;
  position: relative;
}

.testimonial-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 5px;
  border: 3px solid #fff;
  margin-top: -50px;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-content {
  padding: 10px 20px;
  font-size: 14px;
  color: #333333;
  text-align: start;
}

.testimonial-author {
  margin-top: 20px;
}

@media (min-width: 1000px) {
  #testimonialCarousel {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .carousel-inner {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .carousel-item {
    display: block !important;
    position: static;
    width: auto;
    flex: 1 1 300px;
    padding: 20px;
    transform: none !important;
  }

  .carousel-indicators,
  .carousel-control-prev,
  .carousel-control-next {
    display: none !important;
  }
} */

/*--------------------------------------------------------------
# Certifications Section
--------------------------------------------------------------*/
.certifications {
  margin-top: -10px;
}

/* about */
.certifications-about{
  margin-top: -30px;
}

.certifications .certifications-title p {
  font-size: xx-large;
  text-align: center;
  width: 500px ;
}


.certifications .certifications-images {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  position: relative;

  align-items: center;
  justify-content: center;
  margin-top: 30px;

}

.certifications .certifications-img {
  height: 80px;
  width: 270px;

}



/*---------------------------------------------------------------
# FirstStep Section
----------------------------------------------------------------*/

.firststep {
  margin-top: -20px;
}
.firststep .firststep-bring  {
  font-size: 18px;
  font-weight: bolder;
}

.firststep .firststep-p{
  width: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}


.firststep .firststep-exp {
  width: 776px;
}

@media (max-width: 800px) {
  .firststep .firststep-exp {
   width: 400px ;
  }
}
@media (max-width: 400px) {
  .firststep .firststep-exp {
   width: 280px;
  }
}

@media ( max-width: 400px) {
  .firststep .btn{
    font-size: 15px;
  }
}


/* ------------------------------------------------
#About Section 
-------------------------------------------------- */
.about-hero {
  position: relative;
  background: url('../img/about-hero.png') no-repeat center center/cover;
  min-height: 100vh; /* Ensure it covers the full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(68, 108, 47, 0.6);  
  /* White overlay with 50% opacity */
  z-index: 1; /* Keeps it behind the content */
}

.about-hero .container {
  position: relative;
  z-index: 2; /* Ensures text and buttons are above the overlay */
}

/* 
.about-intro{
  padding-bottom: 0% !important;
  
 
}
.about-intro .about-intro-container{
  display: flex;
  flex-direction: column;


}

.about-intro .about-intro-logo {
  position:relative;
  top: 50px;

  text-align: left ;

}

.about-intro .about-intro-circle {

  margin: 0 auto;

  border: 1px solid transparent;
  border-radius: 70% ;
  background-color:#FFFFFF;

  width: 600px;
  height: 600px;


  display: flex;
  flex-direction: column;
  align-items:center;
  justify-content: center;

  position: relative;
  bottom: -95px;


}

.about-circle-title {
  width: 70%;
  text-align: center;
  color: #FFB347;
  font-size: 46px;
  font-weight: 700;
}

.about-circle-sub-title{
  color: #89592A;
}

.about-circle-content{
  width: 65%;
  text-align: center;
  color: #333333;

  font-size: 30px;
  font-weight: 500;
}

@media (max-width: 760px) {

  .about-intro .about-intro-container{
    padding-bottom: 15% !important;
  }


  .about-intro .about-intro-logo {
    width: 230px;
    margin: 0 auto;
  }
  
  .about-circle-title {
    font-size: 21px;
  
  }

  .about-circle-content {
    font-size: 15px;

  }

  .about-intro .about-intro-circle {
    width: 300px;
    height: 300px;
  }
} */


/* --------------------------------------------------------------------------------
#About Journey  Section
-----------------------------------------------------------------------------------*/

.about-journey .about-journey-image img {
  margin-top: 0;
}


/* ---------------------------------------------------------------------------------
#About Ours Section 
-------------------------------------------------------------------------------------*/
.about-ours .section-title h2 {
  max-width: 530px;
}
@media (max-wdith: 768px) {
  .about-ours .section-title h2 {
    min-width: 530px;
  }
}

.about-ours .ours-image, .simplify .ours-image {
  position: relative;
  min-height: 465px;
}

.about-ours .ours-image img, .simplify .ours-image img {
  /* position: absolute; */
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  border-radius: 10%;

  /* padding: 0px 10px; */
  
}


.about-ours .ours-image::after, 
.simplify .ours-image::after {
  content: "";
  position: absolute;
  top: 30px;  /* Controls the inner border spacing */
  left: 30px;
  right: 30px;
  bottom: 30px;
  border: 15px solid rgba(0, 128, 0, 0.7); /* Adjust color and thickness */
  opacity: 50%;
  border-radius: 20%; /* Match the image border-radius */
  z-index: 2;
  pointer-events: none; /* Ensures it does not block interactions */
}

.about-ours .ours-image-1::after{
  border-color: #89BA5F;
}
.about-ours .ours-image-2::after{
  border-color: #D4AF37;
}
.about-ours .ours-image-3::after{
  border-color: #FFB347;
}

/* simplify */

.simplify .ours-image-s1::after{
  border-color: #F5F5DC;
}
.simplify .ours-image-s2::after{
  border-color: #F5F5DC;
}


/* ------------------------------------------------------
about section firstep button
--------------------------------------------------------*/


  @media ( max-width: 1000px) {
    .firststep .about-btn .btn{
      font-size: 20px;
    }

    .firststep .about-bring{
      width: 200px ;
      font-size: 14px;
      font-weight: bolder;
    }
  }

  .firststep .about-bring{
    
    max-width: 300px;
    font-size: 18px;
    font-weight: bolder;
  }
  

  /* -----------------------------------------------------
  #b2b section
  -------------------------------------------------------- */

  .b2b-hero {
    position: relative;
    background: url('../img/b2b-hero.png') no-repeat center center/cover;
    min-height: 100vh; /* Ensure it covers the full viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.b2b-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(68, 108, 47, 0.6);  
    /* white overlay with 50% opacity */
   
    z-index: 1; /* Keeps it behind the content */
}

.b2b-hero .container {
    position: relative;
    z-index: 2; /* Ensures text and buttons are above the overlay */
}


  #stars .star-box {
    position: relative;
    text-align: left;
    margin: 0 auto;
    max-width: 70%;
    border: 1px solid transparent;
    background-color: #A3C586;
    padding: 5%;
    border-radius: 20px;
  }
  
  #stars .star-box::before,
  #stars .star-box::after {
    content: '';
    position: absolute;
    width: 110px; /* Adjust the size of the star */
    height: 90px;
    background-image: url('../img/b2b-stars.svg');
    background-size: contain;
    background-repeat: no-repeat;
    
  }
  
  /* First star: Top left */
  #stars .star-box::before {
    top: -38px; 
    left: 40px; 
    transform: scaleX(1); /* No flip for the first star */
  }
  
  /* Second star: Bottom right */
  #stars .star-box::after {
    bottom: -53px; 
    right: 40px; 
    transform: scaleX(-1); /* Flip the second star */
  }
  
 
  @media (max-width: 769px) {
    .stars .star-box {
      max-width: 90% !important;
    }
  
    #stars .star-box::before,
    #stars .star-box::after {
      width: 75px; /* Smaller star size for mobile */
      height: 55px;
    }
  
    /* Mobile: Keep the same relative position of the stars */
    #stars .star-box::before {
      top: -27px; 
      left: 30px; 
    }
  
    #stars .star-box::after {
      bottom: -30px; 
      right: 30px; 
    }
  }


  /* ---------------------------------------------------------------------
  #Our Brands 
  ------------------------------------------------------------------------ */

  .our-brands-hero {
    position: relative;
    background: url('../img/our-brands-hero.png') no-repeat center center/cover;
    min-height: 100vh; /* Ensure it covers the full viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.our-brands-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(68, 108, 47, 0.6);  
    /* white overlay with 50% opacity */
   
    z-index: 1; /* Keeps it behind the content */
}

.our-brands-hero .container {
    position: relative;
    z-index: 2; /* Ensures text and buttons are above the overlay */
}


.our-brands p {
  font-size: 16px;
}

.our-brands .firststep-bring, .sub-brands .firststep-bring  {
  font-size: 16px;
  font-weight: bolder;

  margin-top:-20px;

}

  
/* --------------------------------------------------------------------------
#Sub Brands
------------------------------------------------------------------------------ */
.sub-brands .sub-logo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 5px;
  border: 3px solid #fff;
  margin-top: -50px;
}

.sub-brands .sub-logo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sub-brands .sub-image {
  position: relative;
  width: 400px;
  height: 400px;
  object-fit: cover;
  border-radius: 10%;
}

.sub-brands .sub-brands-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sub-brands .sub-brands-images {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ob-styles{
  line-height: 30px;
}
.ob-styles li + li {
  margin-top: 10px; 
}

@media (max-width: 600px) {
  .sub-brands .sub-image {
    object-fit: contain !important;
  }
  .sub-brands .sub-logo img{
    object-fit: contain !important;
  }
  
}

/* ----------------------------------------------
#sub-brands conclusion
-------------------------------------------------- */

.our-brands-conclusion .conclusion {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 800px;
  text-align: center;
}

.our-brands-conclusion .conclusion a {
  margin: 0 auto;
  max-width: 400px;

}

.our-brands-conclusion .conclusion .btn2 {
  background-color: #89592A;
  color: #FFFFFF;

}



/* -------------------------------------------------------
#products
-----------------------------------------------------------*/

.products-hero {
  position: relative;
  background: url('../img/products-hero.png') no-repeat center center/cover;
  min-height: 100vh; /* Ensure it covers the full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.products-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(137, 186, 95, 1), rgba(0, 0, 0, 0.77); */
  z-index: 1; /* Keeps it behind the content */
}

.products-hero .container {
  position: relative;
  z-index: 2; /* Ensures text and buttons are above the overlay */
}


.products .products-container{
  display: flex;
  flex-direction: column;
  justify-content: center;

  
}

.products .products-title {
  display: flex;
  flex-wrap: wrap;

  gap: 15px;
}

.products .products-title img {
  width: 25px;
  height: 25px;

}

.products .products-title h4 {
  font-weight: 700;
}

.products .products-gallery img {
  width: 240px;
  height: 175px;
}

.products .products-gallery p {
  margin-top: 10px;
  font-size: 24px;
  max-width: 150px;
  text-align: left;
  margin-top: 10px;
  font-weight: 600;
  font-size: 18px;
  color: #333333;

}

@media ( max-width: 768px) {
  .products .products-gallery {
    text-align: center;
  }
  .products .products-gallery p {
    text-align: center;

    margin: 0 auto;
    max-width: 200px !important;
    margin-top: 10px;
  }

}


/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/

.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq .content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.faq .faq-container {
  margin-top: 15px;
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 17px;
  line-height: 24px;
  margin: 0 30px 0 32px;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item h3 span {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-icon {
  position: absolute;
  top: 22px;
  left: 20px;
  font-size: 22px;
  line-height: 0;
  transition: 0.3s;
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/* Ensures all .faq-content collapses properly */
.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  height: 0; /* Ensure it collapses properly */
  overflow: hidden; /* Prevent extra spacing */
}

/* Ensure UL inside P has proper collapse behavior */
.faq .faq-container .faq-item .faq-content p {
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-content p ul {
  margin: 0;
  padding-left: 20px;
  list-style-type: disc;
  overflow: hidden; /* Hide extra spacing */
}

.faq .faq-container .faq-item .faq-content p ul li {
  margin: 0;
  padding: 3px 0;
  line-height: 1.5;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* When active, expand the faq-content */
.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
  height: auto; /* Expand only when active */
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact-hero {
  position: relative;
  background: url('../img/contact-hero.jpeg') no-repeat center center/cover;
  min-height: 100vh; /* Ensure it covers the full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(68, 108, 47, 0.6);   */
  /* background: rgba(137, 186, 95, 1), rgba(0, 0, 0, 0.77); */

  /* white overlay with 50% opacity */
 
  z-index: 1; /* Keeps it behind the content */
}

.contact-hero .container {
  position: relative;
  z-index: 2; /* Ensures text and buttons are above the overlay */
}


.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item a {
  color: #666666;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact form {
  height: 100%;
}

.contact form input[type=text],
.contact form input[type=email],
.contact form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact form input[type=text]:focus,
.contact form input[type=email]:focus,
.contact form textarea:focus {
  border-color: var(--accent-color);
}

.contact form input[type=text]::placeholder,
.contact form input[type=email]::placeholder,
.contact form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.contact #message {
  padding-bottom: 20px;
}

.contact #message span {
  width: 100%;
  display: block;
  text-align: center;
  padding: 5px;
}

.success {
  /* border: 1px solid black; */
  color: green;
}

.error {
  /* border: 1px solid var(--error); */
  color: red;
}




