@import url("https://fonts.googleapis.com/css2?family=Libertinus+Sans:ital,wght@0,400;0,700;1,400&family=Markazi+Text:wght@400..700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  height: 100vh;
  font-family: "Markazi Text", serif;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

header {
  z-index: 1000;
  background: #1a1829;
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 2%;
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
header .menu-toggle {
  display: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.2s;
}
header .menu-toggle:hover {
  background: rgba(223, 223, 223, 0.7803921569);
}
header .menu-toggle i {
  font-size: 1.2rem;
}
header .logo {
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
header .logo:hover .logo-hover {
  opacity: 1;
}
header .logo a {
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
}
header .logo a img {
  width: 100%;
  object-fit: cover;
}
header .logo .logo-hover {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  background: #333;
  padding: 10px 20px;
  width: 250px;
  border-radius: 10px;
  opacity: 0;
  text-align: center;
  transition: 0.2s;
}
header ul .close-btn {
  display: none;
}
header ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
header ul li {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 15px;
  font-size: 1.4rem;
  transition: 0.3s ease;
}
header ul li a {
  font-weight: 400;
  color: #fff;
  font-size: 1.5rem;
  transition: 0.3s;
}
header ul li a i {
  font-size: 0.9rem;
  margin-right: 2px;
}
header ul li a:hover {
  text-decoration: underline;
}
header ul li .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  min-width: 200px;
  background: #292638;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
  z-index: 999;
}
header ul li .submenu li {
  margin: 0;
  width: 100%;
  border-bottom: 1px solid #eee;
}
header ul li .submenu li:last-child {
  border-bottom: 0;
}
header ul li .submenu li a {
  display: block;
  padding: 10px 15px;
  font-size: 1.4rem;
  color: #c5c5c5;
  text-decoration: none;
  transition: 0.3s;
  width: 100%;
}
header ul li .submenu li a:hover {
  background: #1a1829;
  color: #fff;
  padding-left: 20px;
}
header ul li:hover > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.contact-btn {
  position: fixed;
  bottom: 50px;
  right: 100px;
  z-index: 100;
}
.contact-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #1daa61;
  color: #fff;
  padding: 10px;
  border-radius: 50%;
  font-size: 2.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.contact-btn a:hover {
  transform: scale(1.1);
}

.floating-actions {
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 10px;
  position: fixed;
  bottom: 50px;
  right: 20px;
  z-index: 1000 !important;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.floating-actions .action-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.floating-actions .action-btn:hover {
  transform: scale(1.1);
  opacity: 0.9;
}
.floating-actions .action-btn.whatsapp {
  background: #25d366;
}
.floating-actions .action-btn.email {
  background: #0077cc;
}
.floating-actions .action-btn.telegram {
  background: #0088cc;
}
.floating-actions .action-btn.quote {
  background: #444;
}

footer {
  column-gap: 20px;
  background: #1a1829;
  color: white;
  padding: 2%;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-wrap: wrap;
}
footer div {
  margin: 20px 10px;
}
footer .footer-logo {
  flex: 1 1 150px;
  margin-bottom: 20px;
}
footer .footer-logo .logo {
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .footer-logo .logo a {
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
}
footer .footer-logo .logo a img {
  width: 100%;
  object-fit: cover;
}
footer .footer-logo p {
  font-size: 1.5rem;
  max-width: 300px;
  text-align: justify;
  margin-top: 7px;
}
footer .quick-links {
  flex: 1 1 200px;
}
footer .quick-links ul {
  margin-top: 10px;
}
footer .quick-links ul li {
  margin: 5px 0;
}
footer .quick-links ul li a {
  color: #c5c5c5;
  font-size: 1.5rem;
}
footer .quick-links ul li a span {
  margin-right: 5px;
}
footer .quick-links ul li a {
  transition: 0.3s;
}
footer .quick-links ul li a:hover {
  color: #fff;
}
footer .get-in-touch {
  margin-top: 10px;
  flex: 2 1 400px;
  margin-bottom: 20px;
}
footer .get-in-touch h2 {
  margin-bottom: 15px;
  color: #fff;
  text-align: center;
}
footer .get-in-touch .branches {
  display: flex;
  gap: 20px;
  text-align: left;
}
footer .get-in-touch .branches .branch {
  flex: 1;
  background: #292638;
  padding: 15px;
  border-radius: 8px;
  margin: auto;
  width: 90%;
  height: 400px;
}
footer .get-in-touch .branches .branch h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 8px;
}
footer .get-in-touch .branches .branch p,
footer .get-in-touch .branches .branch a {
  color: #c5c5c5;
  font-size: 1.5rem;
  margin: 5px 0;
}
footer .get-in-touch .branches .branch p i,
footer .get-in-touch .branches .branch a i {
  margin-right: 5px;
  color: #fff;
}
footer .get-in-touch .branches .branch a {
  transition: 0.3s;
}
footer .get-in-touch .branches .branch a:hover {
  color: #fff;
}
footer .get-in-touch .branches .branch .social-icons {
  margin: 15px auto;
}
footer .get-in-touch .branches .branch .social-icons a {
  color: #c5c5c5;
  margin-right: 10px;
  font-size: 1.4rem;
  transition: 0.3s;
}
footer .get-in-touch .branches .branch .social-icons a i:hover {
  transform: scale(1.1);
}

.hero {
  padding: 20px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/hero.jpg");
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.hero .hero-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 100;
}
.hero .hero-content h1 {
  color: white;
  letter-spacing: 3px;
  word-spacing: 3px;
  font-size: 4rem;
}
.hero .hero-content h3 {
  font-weight: 700;
  font-size: 2rem;
  max-width: 600px;
  margin-top: 10px;
  background: linear-gradient(90deg, #b8b8b8, #c7c7c7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.what-we-do {
  padding: 2%;
  margin: auto;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}
.what-we-do h2 {
  font-size: 2rem;
  word-spacing: 4px;
  letter-spacing: 2px;
  margin: 20px auto;
}
.what-we-do .services-w {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.what-we-do .services-w .service-w {
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.what-we-do .services-w .service-w:hover {
  transform: scale(1.1);
}
.what-we-do .services-w .service-w {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 25px 20px;
  width: 300px;
  height: 250px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  padding: 30px 20px;
  border-radius: 10px;
}
.what-we-do .services-w .service-w p {
  max-width: 200px;
  margin: 10px auto;
  font-size: 1rem;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.7);
}
.what-we-do .services-w .service-w h3 {
  font-size: 1.5rem;
  margin: 10px auto;
}

.home-about {
  padding: 20px;
  background: #1a1829;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.home-about div {
  width: 50%;
  height: 100%;
  margin: 0 20px;
}
.home-about div img {
  border-radius: 10px;
  width: 100%;
  object-fit: cover;
  filter: brightness(70%);
}
.home-about .home-about-content span {
  color: #0f036b;
  background: linear-gradient(45deg, #3535ff, skyblue);
  padding: 5px 10px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
}
.home-about .home-about-content h1 {
  color: white;
  margin: 20px auto 10px;
  font-size: 2rem;
}
.home-about .home-about-content p {
  color: #dadada;
  font-size: 1.3rem;
  max-width: 400px;
}
.home-about .home-about-content ul {
  margin-top: 15px;
  padding: 10px;
}
.home-about .home-about-content ul li {
  margin: 7px 0;
  color: #fff;
  list-style: disc;
  font-size: 1.3rem;
}

.home-slider {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.home-slider .swiper-index {
  width: 100%;
  height: 100%;
}
.home-slider .swiper-index .swiper-wrapper-index {
  width: 100%;
  height: 400px;
}
.home-slider .swiper-index .swiper-wrapper-index .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.home-slider .swiper-index .swiper-wrapper-index .swiper-slide img {
  filter: brightness(60%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.home-slider .swiper-index .swiper-wrapper-index .swiper-slide img:hover {
  transform: scale(1.05);
}
.home-slider .swiper-index .swiper-pagination {
  position: absolute;
  bottom: 10px;
  text-align: center;
}
.home-slider .swiper-index .swiper-pagination .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.7;
  width: 10px;
  height: 10px;
}
.home-slider .swiper-index .swiper-pagination .swiper-pagination-bullet-active {
  background: #007bff;
  opacity: 1;
}
.home-slider .swiper-index .swiper-pagination {
  position: absolute;
  bottom: 30px;
  text-align: center;
}

.hero-about {
  padding: 20px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/about.jpg");
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.hero-about .hero-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 100;
}
.hero-about .hero-content h1 {
  color: white;
  letter-spacing: 3px;
  word-spacing: 3px;
  font-size: 4rem;
}
.hero-about .hero-content h3 {
  font-weight: 700;
  font-size: 2rem;
  max-width: 600px;
  margin-top: 10px;
  background: linear-gradient(90deg, #b8b8b8, #c7c7c7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-about .hero-content .hero-link {
  color: white;
  margin: 20px auto;
  font-size: 1.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.hero-about .hero-content .hero-link a,
.hero-about .hero-content .hero-link i.fa-home {
  color: #c7c7c7;
  transition: 0.2s;
}
.hero-about .hero-content .hero-link:hover a,
.hero-about .hero-content .hero-link:hover i.fa-home {
  color: #fff;
}
.hero-about .hero-content .hero-link:hover a {
  text-decoration: underline;
}

.about-company {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  color: #333;
  align-items: center;
}
.about-company .about-company-content {
  flex: 2;
}
.about-company .about-company-content h2 {
  color: #1a1829;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  border-bottom: 2px solid #eee;
  padding-bottom: 6px;
  font-family: "Poppins", sans-serif;
}
.about-company .about-company-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  font-family: "Open Sans", sans-serif;
  color: #555;
  margin-bottom: 15px;
}
.about-company .about-company-img {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-company .about-company-img img {
  max-width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.about-mission {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.about-mission .mission-item {
  flex: 1;
  background: #f9f9f9;
  padding: 25px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: #333;
}
.about-mission .mission-item h2 {
  color: #1a1829;
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-weight: 700;
  border-bottom: 2px solid #1a1829;
  padding-bottom: 5px;
}
.about-mission .mission-item p {
  font-size: 1.2rem;
  line-height: 1.6;
}
.about-mission .mission-item ul {
  list-style: disc inside;
  padding-left: 0;
  margin-top: 10px;
}
.about-mission .mission-item ul li {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #555;
}

.team-section {
  background: #fff;
  padding: 60px 20px;
}
.team-section .team-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.team-section .team-container h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #000;
}
.team-section .team-container p {
  max-width: 700px;
  text-align: center;
  margin: 20px auto;
  font-size: 1.3rem;
  color: #474747;
}
.team-section .team-container .swiper {
  padding-bottom: 50px;
  padding-top: 50px;
}
.team-section .team-container .swiper-wrapper {
  display: flex;
}
.team-section .team-container .swiper-slide {
  display: flex;
  justify-content: center;
}
.team-section .team-container .team-member {
  width: 100%;
  min-height: 280px;
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.team-section .team-container .team-member .connect {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1.2rem;
}
.team-section .team-container .team-member .connect i {
  color: #0056b3;
}
.team-section .team-container .team-member .connect i:hover {
  transform: scale(1.2);
}
.team-section .team-container .team-member:hover {
  transform: translateY(-10px);
}
.team-section .team-container .team-member .ceo-img,
.team-section .team-container .team-member .placeholder-icon {
  width: 150px;
  height: 150px;
  margin-bottom: 15px;
}
.team-section .team-container .team-member .ceo-img {
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.team-section .team-container .team-member .ceo-img:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.team-section .team-container .team-member .placeholder-icon {
  background-color: #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-section .team-container .team-member .placeholder-icon i {
  font-size: 50px;
  color: #888;
}
.team-section .team-container .team-member h3 {
  font-size: 22px;
  margin-bottom: 5px;
}
.team-section .team-container .team-member p {
  font-size: 16px;
  color: #666;
  margin-bottom: 5px;
}
.team-section .team-container .team-member .ceo-text {
  font-style: italic;
  color: #444;
  font-size: 15px;
}
.team-section .team-container .ceo-member {
  background-color: #eef6ff;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}
.team-section .team-container .ceo-member .ceo-ribbon {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #007bff;
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 14px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.team-section .team-container .ceo-member h3 {
  font-size: 24px;
  font-weight: bold;
}
.team-section .team-container .swiper-button-next,
.team-section .team-container .swiper-button-prev {
  color: #007bff;
  transition: color 0.3s ease;
}
.team-section .team-container .swiper-button-next:hover,
.team-section .team-container .swiper-button-prev:hover {
  color: #0056b3;
}
.team-section .team-container .swiper-pagination-bullet {
  background: #007bff;
  opacity: 0.7;
}
.team-section .team-container .swiper-pagination-bullet-active {
  opacity: 1;
}

.about-about {
  padding: 20px;
  background: #1a1829;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.about-about div {
  width: 50%;
  height: 100%;
  margin: 0 20px;
}
.about-about div img {
  border-radius: 10px;
  width: 100%;
  object-fit: cover;
  filter: brightness(70%);
}
.about-about .about-img {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.2s;
}
.about-about .about-img img:hover {
  filter: brightness(50%);
}
.about-about .about-content h1 {
  text-align: center;
  color: white;
  margin: 20px auto 10px;
  font-size: 2rem;
}
.about-about .about-content h3 {
  color: #dadada;
  font-size: 1.3rem;
}
.about-about .about-content ul {
  margin-top: 15px;
  padding: 10px;
}
.about-about .about-content ul li {
  margin: 7px 0;
  color: #fff;
  list-style: disc;
  font-size: 1.3rem;
}
.about-about .about-content .about-options {
  margin-top: 20px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding-bottom: 20px;
}
.about-about .about-content .about-options .about-option {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  margin: 0;
}
.about-about .about-content .about-options .about-option h2 {
  color: #007bff;
}
.about-about .about-content .about-options .about-option h2 i {
  margin-right: 5px;
  color: rgb(255, 255, 255);
}
.about-about .about-content .about-options .about-option h3 {
  max-width: 100%;
  color: #c7c7c7;
}

.hero-services {
  padding: 20px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/services.jpg");
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.hero-services .hero-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 100;
}
.hero-services .hero-content h1 {
  color: white;
  letter-spacing: 3px;
  word-spacing: 3px;
  font-size: 4rem;
}
.hero-services .hero-content h3 {
  font-weight: 700;
  font-size: 2rem;
  max-width: 600px;
  margin-top: 10px;
  background: linear-gradient(90deg, #b8b8b8, #c7c7c7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-services .hero-content .hero-link {
  color: white;
  margin: 20px auto;
  font-size: 1.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.hero-services .hero-content .hero-link a,
.hero-services .hero-content .hero-link i.fa-home {
  color: #c7c7c7;
  transition: 0.2s;
}
.hero-services .hero-content .hero-link:hover a,
.hero-services .hero-content .hero-link:hover i.fa-home {
  color: #fff;
}
.hero-services .hero-content .hero-link:hover a {
  text-decoration: underline;
}

.our-steps {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}
.our-steps h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #333;
}
.our-steps .steps-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.our-steps .steps-container .step {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(25% - 20px);
  max-width: 300px;
  margin: auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.our-steps .steps-container .step img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}
.our-steps .steps-container .step h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #222;
}
.our-steps .steps-container .step p {
  font-size: 1rem;
  color: #666;
}
.our-steps .steps-container .step:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}
@media (max-width: 992px) {
  .our-steps .steps-container {
    justify-content: center;
  }
  .our-steps .steps-container .step {
    flex: 1 1 calc(50% - 20px);
  }
}
@media (max-width: 600px) {
  .our-steps .steps-container {
    flex-direction: column;
  }
  .our-steps .steps-container .step {
    width: 100%;
    max-width: 400px;
  }
}

.cta-section {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #eee;
}
.cta-section .cta-overlay {
  background: #1a1829;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}
.cta-section .cta-overlay .cta-content {
  text-align: center;
  color: #fff;
  z-index: 2;
}
.cta-section .cta-overlay .cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.cta-section .cta-overlay .cta-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #f1f1f1;
}
.cta-section .cta-overlay .cta-content .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: #007bff;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.cta-section .cta-overlay .cta-content .cta-btn i {
  font-size: 1.2rem;
}
.cta-section .cta-overlay .cta-content .cta-btn:hover {
  background: #002c5a;
  transform: translateY(-3px);
}

.hero-products {
  padding: 20px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/products.jpg");
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.hero-products .hero-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 100;
}
.hero-products .hero-content h1 {
  color: white;
  letter-spacing: 3px;
  word-spacing: 3px;
  font-size: 4rem;
}
.hero-products .hero-content h3 {
  font-weight: 700;
  font-size: 2rem;
  max-width: 600px;
  margin-top: 10px;
  background: linear-gradient(90deg, #b8b8b8, #c7c7c7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-products .hero-content .hero-link {
  color: white;
  margin: 20px auto;
  font-size: 1.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.hero-products .hero-content .hero-link a,
.hero-products .hero-content .hero-link i.fa-home {
  color: #c7c7c7;
  transition: 0.2s;
}
.hero-products .hero-content .hero-link:hover a,
.hero-products .hero-content .hero-link:hover i.fa-home {
  color: #fff;
}
.hero-products .hero-content .hero-link:hover a {
  text-decoration: underline;
}

.products {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2%;
}
.products .title {
  width: 100%;
  margin-bottom: 30px;
  padding: 20px;
}
.products .title h1 {
  font-size: 2.5rem;
  color: #262e43;
}
.products .swiper {
  padding: 10px;
  width: 100%;
  max-width: 1100px;
}
.products .swiper .swiper-wrapper {
  display: flex;
  align-items: stretch;
}
.products .swiper .swiper-slide {
  max-width: 300px;
  display: flex;
  justify-content: center;
}
.products .swiper .swiper-button-next,
.products .swiper .swiper-button-prev {
  display: none;
}
@media (max-width: 1024px) {
  .products .swiper .swiper-button-next,
  .products .swiper .swiper-button-prev {
    display: flex;
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: #262e43;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  .products .swiper .swiper-button-next:hover,
  .products .swiper .swiper-button-prev:hover {
    background-color: #262e43;
    color: #fff;
  }
  .products .swiper .swiper-button-next::after,
  .products .swiper .swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
  }
}
.products .product-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 300px;
  height: 420px;
  display: flex;
  flex-direction: column;
}
.products .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.25);
}
.products .product-card img {
  width: 100%;
  height: 60%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.products .product-card img:hover {
  transform: scale(1.05);
}
.products .product-card .p-c-c {
  padding: 1rem;
  text-align: center;
  flex: 1;
  padding: 1rem;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}
.products .product-card .p-c-c h1 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  text-transform: capitalize;
  color: #333;
}
.products .product-card .p-c-c a {
  display: block;
  background: #262e43;
  color: #fff;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.products .product-card .p-c-c a:hover {
  background: #262e43;
  transform: scale(1.05);
}

.hero-events {
  padding: 20px;
  background: linear-gradient(45deg, #1a2d38, #223844, #2a444f, #324f59, #3a5b64, #42576e, #3d4b5c, #343f4a, #2b3339, #23272c);
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.hero-events .hero-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 100;
}
.hero-events .hero-content h1 {
  color: white;
  letter-spacing: 3px;
  word-spacing: 3px;
  font-size: 3rem;
}
.hero-events .hero-content h3 {
  font-weight: 700;
  font-size: 1.5rem;
  max-width: 600px;
  margin-top: 10px;
  background: linear-gradient(90deg, #b8b8b8, #c7c7c7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-events .hero-content .hero-link {
  color: white;
  margin: 20px auto;
  font-size: 1.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.hero-events .hero-content .hero-link a,
.hero-events .hero-content .hero-link i.fa-home {
  color: #c7c7c7;
  transition: 0.2s;
}
.hero-events .hero-content .hero-link:hover a,
.hero-events .hero-content .hero-link:hover i.fa-home {
  color: #fff;
}
.hero-events .hero-content .hero-link:hover a {
  text-decoration: underline;
}

.events-slider {
  margin-top: 50px;
  border-top: 1px solid #9d9d9d;
  padding-top: 20px;
}
.events-slider .slider-title {
  text-align: center;
  font-size: 1.7rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 20px;
  font-family: "Arial", sans-serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  margin: auto;
  max-width: 500px;
}
.events-slider .swiper-events {
  margin-top: 50px;
  padding: 20px 20px;
  width: 500px;
  max-width: 1200px;
  height: 300px;
  margin: 20px auto;
  position: relative;
}
.events-slider .swiper-events .swiper-pagination {
  margin: -20px auto;
}
.events-slider .swiper-events .swiper-pagination-bullet {
  background-color: #2b2b2b;
  opacity: 0.7;
  transition: background-color 0.3s ease;
}
.events-slider .swiper-events .swiper-pagination-bullet-active {
  background-color: #111111;
  opacity: 1;
}
.events-slider .swiper-events .swiper-slide {
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  overflow: hidden;
}
.events-slider .swiper-events .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  filter: brightness(0.7) contrast(1.1);
  transition: filter 0.5s ease;
}
.events-slider .swiper-events .swiper-slide:hover img {
  filter: brightness(1) contrast(1.2);
}

.hero-contact {
  padding: 20px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/contact.jpg");
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.hero-contact .hero-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 100;
}
.hero-contact .hero-content h1 {
  color: white;
  letter-spacing: 3px;
  word-spacing: 3px;
  font-size: 4rem;
}
.hero-contact .hero-content h3 {
  font-weight: 700;
  font-size: 2rem;
  max-width: 600px;
  margin-top: 10px;
  background: linear-gradient(90deg, #b8b8b8, #c7c7c7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-contact .hero-content .hero-link {
  color: white;
  margin: 20px auto;
  font-size: 1.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.hero-contact .hero-content .hero-link a,
.hero-contact .hero-content .hero-link i.fa-home {
  color: #c7c7c7;
  transition: 0.2s;
}
.hero-contact .hero-content .hero-link:hover a,
.hero-contact .hero-content .hero-link:hover i.fa-home {
  color: #fff;
}
.hero-contact .hero-content .hero-link:hover a {
  text-decoration: underline;
}

.contact-boxes {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 5%;
}
.contact-boxes .contact-box i {
  font-size: 2rem;
  margin: 10px 0;
  color: #007bff;
}
.contact-boxes .contact-box {
  cursor: pointer;
  transition: 0.3s ease;
}
.contact-boxes .contact-box:hover {
  transform: scale(1.1);
}
.contact-boxes .contact-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
  padding: 20px;
  width: 250px;
  border-radius: 10px;
  margin: 10px 20px;
}
.contact-boxes .contact-box a,
.contact-boxes .contact-box p {
  color: #333;
  font-weight: bold;
  font-size: 1.3rem;
  margin: 5px 0;
}
.contact-boxes .contact-box a:hover,
.contact-boxes .contact-box p:hover {
  color: #000;
}

#contactForm {
  max-width: 600px;
  margin: 50px auto;
  padding: 30px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#contactForm input, #contactForm textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: 0.3s;
}
#contactForm input:focus, #contactForm textarea:focus {
  border-color: #007bff;
  outline: none;
}
#contactForm .input-group {
  position: relative;
}
#contactForm .input-group small {
  display: block;
  margin-top: 5px;
  font-size: 0.9rem;
}
#contactForm .input-group small.valid {
  color: green;
}
#contactForm .input-group small.invalid {
  color: red;
}
#contactForm textarea {
  resize: vertical;
  min-height: 120px;
}
#contactForm button {
  padding: 12px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: 0.3s;
}
#contactForm button:hover {
  background-color: #0056b3;
}

.download-catalog {
  text-align: center;
  padding: 50px 20px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url("../img/phar-c.jpg");
  background-position: center;
  background-size: cover;
  border-top: 1px solid #e5e5e5;
}
.download-catalog .catalog-container {
  max-width: 700px;
  margin: 0 auto;
}
.download-catalog .catalog-container h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #fff;
}
.download-catalog .catalog-container p {
  font-size: 16px;
  margin-bottom: 25px;
  color: #eee;
}
.download-catalog .catalog-container .btn-download {
  display: inline-block;
  background: #0a74da;
  color: #fff;
  padding: 14px 28px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}
.download-catalog .catalog-container .btn-download i {
  margin-right: 10px;
}
.download-catalog .catalog-container .btn-download:hover {
  background: #084c9e;
}

.pharma {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 80%;
  height: 300px;
  margin: 100px auto 40px;
}
.pharma h2 {
  font-size: 2.5rem;
  padding: 20px;
  text-align: center;
}
.pharma p {
  font-size: 1.5rem;
  color: #474747;
  max-width: 500px;
  text-align: center;
}

.phar-img {
  width: 100%;
  height: 500px;
}
.phar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gems {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 80%;
  height: 500px;
  margin: 100px auto 40px;
}
.gems h2 {
  font-size: 2.5rem;
  padding: 20px;
  text-align: center;
}
.gems p {
  font-size: 1.5rem;
  color: #474747;
  max-width: 500px;
  text-align: center;
}

.stones {
  padding: 3rem;
  background-color: #f0f2f5;
  font-family: "Arial", sans-serif;
}
.stones .stones-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.stones .stones-filter a {
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  background-color: #e0e0e0;
  color: #333;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.stones .stones-filter a:hover {
  background-color: #6c63ff;
  color: #fff;
  border-color: #6c63ff;
}
.stones .stones-filter a.active {
  background-color: #6c63ff;
  color: #fff;
  border-color: #6c63ff;
}
.stones .stone-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}
.stones .stone-type {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.stones .stone-type:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.stones .stone-type img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}
.stones .stone-type:hover img {
  transform: scale(1.08);
  filter: brightness(0.9);
}
.stones .stone-type::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.stones .stone-type:hover::after {
  opacity: 1;
}
.stones .stone-type .s-t-content {
  padding: 1.5rem;
  position: relative;
  z-index: 2;
}
.stones .stone-type .s-t-content h1 {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
  color: #222;
  transition: color 0.3s ease;
}
.stones .stone-type .s-t-content:hover h1 {
  color: #6c63ff;
}
.stones .stone-type .s-t-content .cat {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.stones .stone-type .s-t-content .cat h3 {
  font-size: 0.9rem;
  color: #666;
  margin: 0.3rem 0;
  transition: color 0.3s ease;
}
.stones .stone-type .s-t-content .cat:hover h3 {
  color: #6c63ff;
}

.salt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 80%;
  height: 600px;
  margin: 300px auto 200px;
}
.salt h2 {
  font-size: 2.5rem;
  padding: 20px;
  text-align: center;
}
.salt p {
  font-size: 1.5rem;
  color: #474747;
  max-width: 500px;
  margin: 10px auto;
  text-align: center;
}
.salt .salt__video {
  width: 100%;
  max-width: 800px;
  margin: 2rem auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.salt .salt__video video {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .salt .salt__video {
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .salt .salt__video {
    margin: 1rem auto;
  }
}

.salts h1 {
  font-size: 2.5rem;
  color: #262e43;
  margin-bottom: 20px;
}
.salts .overview {
  max-width: 900px;
  margin: 0 auto 30px;
  padding: 15px 20px;
  background: #f7f7f7;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.salts .overview p {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #333;
  text-align: justify;
}
.salts {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2%;
  background: #d1d1d1;
}
.salts .title {
  width: 100%;
  margin-bottom: 30px;
  padding: 20px;
}
.salts .cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  width: 100%;
  max-width: 1100px;
}
.salts .product-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 420px;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.salts .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.25);
}
.salts .product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.salts .product-card img:hover {
  transform: scale(1.05);
}
.salts .product-card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.salts .product-card .overlay h1 {
  font-size: 1.5rem;
  color: #fff;
  text-transform: capitalize;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.download-dark-section {
  background-color: #121212;
  color: #e0e0e0;
  padding: 4rem 2rem;
  text-align: center;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.download-dark-section h2 {
  font-size: 2.2rem;
  margin-bottom: 2.5rem;
  color: #ffffff;
  letter-spacing: 1px;
}
.download-dark-section .download-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.download-dark-section .download-buttons .download-btn {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}
.download-dark-section .download-buttons .download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}
.download-dark-section .download-buttons .btn-catalog {
  background: linear-gradient(135deg, #3a3a3a, #2d2d2d);
  color: #00d9ff;
}
.download-dark-section .download-buttons .btn-catalog:hover {
  background: linear-gradient(135deg, #444, #333);
  color: #00f7ff;
}
.download-dark-section .download-buttons .btn-analysis {
  background: linear-gradient(135deg, #2c2c2c, #1e1e1e);
  color: #ffa500;
}
.download-dark-section .download-buttons .btn-analysis:hover {
  background: linear-gradient(135deg, #383838, #222);
  color: #ffc773;
}

.accordion-box {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 2%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.accordion-box .accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.accordion-box .accordion h1 {
  font-size: 2.5rem;
  color: #262e43;
  text-align: center;
  margin-bottom: 1.5rem;
}
.accordion-box .accordion .accordion-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.accordion-box .accordion .accordion-item:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}
.accordion-box .accordion .accordion-item .accordion-header {
  width: 100%;
  background: #f5f5f5;
  border: none;
  padding: 1rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 500;
  color: #262e43;
  transition: background 0.3s ease;
}
.accordion-box .accordion .accordion-item .accordion-header:hover {
  background: #e2e2e2;
}
.accordion-box .accordion .accordion-item .accordion-header i {
  transition: transform 0.3s ease;
}
.accordion-box .accordion .accordion-item .accordion-header.active i {
  transform: rotate(180deg);
}
.accordion-box .accordion .accordion-item .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 20px;
  font-size: 1.5rem;
}
.accordion-box .accordion .accordion-item .accordion-content ul {
  margin: 0.5rem 0;
  padding-left: 1.2rem;
}
.accordion-box .accordion .accordion-item .accordion-content ul li {
  margin-bottom: 0.5rem;
}
.accordion-box .accordion .accordion-item .accordion-content p {
  margin: 0.5rem 0;
}

/* Responsive */
@media (max-width: 768px) {
  .accordion-box {
    padding: 1rem;
  }
  .accordion-box h1 {
    font-size: 2rem;
  }
  .accordion-box .accordion-item .accordion-header {
    font-size: 1rem;
    padding: 1rem 1rem;
  }
  .accordion-box .accordion-item .accordion-content {
    padding: 0 1rem;
  }
}
.d-c-2 {
  text-align: center;
  padding: 50px 20px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(141, 45, 45, 0.5));
  background-position: center;
  background-size: cover;
  border-top: 1px solid #e5e5e5;
}
.d-c-2 .catalog-container {
  max-width: 700px;
  margin: 0 auto;
}
.d-c-2 .catalog-container h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #fff;
}
.d-c-2 .catalog-container p {
  font-size: 16px;
  margin-bottom: 25px;
  color: #eee;
}
.d-c-2 .catalog-container .btn-download {
  display: inline-block;
  background: #0a74da;
  color: #fff;
  padding: 14px 28px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}
.d-c-2 .catalog-container .btn-download i {
  margin-right: 10px;
}
.d-c-2 .catalog-container .btn-download:hover {
  background: #084c9e;
}

.salt-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  margin-top: 2rem;
}
.salt-filter .active {
  background-color: #6c63ff;
  color: #fff;
  border-color: #6c63ff;
}
.salt-filter a {
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  background-color: #e0e0e0;
  color: #333;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.salt-filter a:hover {
  background-color: #6c63ff;
  color: #fff;
  border-color: #6c63ff;
}
.salt-filter a.active {
  background-color: #6c63ff;
  color: #fff;
  border-color: #6c63ff;
}

.salt-cats {
  margin-top: 150px !important;
}

.salt__container {
  margin-top: 200px;
  margin-bottom: 150px;
}

.blue-salt {
  margin-top: 120px;
}
.blue-salt h1 {
  color: blue;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
}
.blue-salt p {
  color: #333;
  font-size: 1.5rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  text-align: justify;
}
.blue-salt {
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.video-section {
  display: flex;
  gap: 1rem;
  max-width: 700px;
  margin: 2rem auto;
  padding: 0 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.video-section video {
  flex: 1 1 48%;
  max-width: 100%;
  max-height: 250px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

@media (max-width: 768px) {
  .video-section {
    flex-direction: column;
  }
  .video-section video {
    flex: 1 1 100%;
    max-height: 200px;
  }
}
.salt-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1000px;
  margin: 3rem auto;
  padding: 0 1rem;
}
.salt-section .salt-item {
  flex: 1 1 45%;
  background-color: #f0f8ff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.salt-section .salt-item h2 {
  color: #1e3a8a;
  margin-bottom: 1rem;
  font-size: 2rem;
}
.salt-section .salt-item p {
  color: #333;
  line-height: 1.6;
  font-size: 1.3rem;
}
.salt-section .salt-item p strong {
  color: #0d2c91;
}
.salt-section .salt-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .salt-section {
    flex-direction: column;
  }
  .salt-section .salt-item {
    flex: 1 1 100%;
  }
}
.orange-salt {
  margin-top: 120px;
}
.orange-salt h1 {
  color: orangered;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
}
.orange-salt p {
  color: #333;
  font-size: 1.5rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  text-align: justify;
}
.orange-salt {
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.orange-images {
  display: flex;
  gap: 0.8rem;
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 0.5rem;
  justify-content: space-between;
  flex-wrap: wrap;
}
.orange-images img {
  flex: 1 1 calc(33% - 0.8rem);
  max-width: 100%;
  height: 180px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}
.orange-images img:hover {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .orange-images {
    flex-direction: column;
    gap: 0.8rem;
  }
  .orange-images img {
    flex: 1 1 100%;
    aspect-ratio: 4/3;
  }
}
.sea-salt {
  margin-top: 120px;
  padding: 2rem;
  border-radius: 10px;
  background-color: #f9f9f9;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.sea-salt h1 {
  color: #1a1a1a;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.sea-salt p {
  color: #333;
  font-size: 1.4rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  text-align: justify;
}

.sea-images {
  display: flex;
  gap: 0.8rem;
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 0.5rem;
  justify-content: space-between;
  flex-wrap: wrap;
}
.sea-images img {
  flex: 1 1 calc(33% - 0.8rem);
  max-width: 100%;
  height: 180px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}
.sea-images img:hover {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .sea-images {
    flex-direction: column;
    gap: 0.8rem;
  }
  .sea-images img {
    flex: 1 1 100%;
    aspect-ratio: 4/3;
  }
}
.mineral-salt {
  margin-top: 120px;
  padding: 2rem;
  border-radius: 10px;
  background-color: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.mineral-salt h1 {
  color: #1a1a1a;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.mineral-salt p {
  color: #333;
  font-size: 1.4rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  text-align: justify;
}

.mineral-images {
  display: flex;
  gap: 0.8rem;
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 0.5rem;
  justify-content: space-between;
  flex-wrap: wrap;
}
.mineral-images img {
  flex: 1 1 calc(33% - 0.8rem);
  max-width: 100%;
  height: 180px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}
.mineral-images img:hover {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .mineral-images {
    flex-direction: column;
    gap: 0.8rem;
  }
  .mineral-images img {
    flex: 1 1 100%;
    aspect-ratio: 4/3;
  }
}
.crystal-salt {
  margin-top: 120px;
  padding: 2rem;
  border-radius: 10px;
  background-color: #fdfdfd;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.crystal-salt h1 {
  color: #2c3e50;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.crystal-salt p {
  color: #333;
  font-size: 1.4rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  text-align: justify;
}

.crystal-images {
  display: flex;
  gap: 0.8rem;
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 0.5rem;
  justify-content: space-between;
  flex-wrap: wrap;
}
.crystal-images img {
  flex: 1 1 calc(33% - 0.8rem);
  max-width: 100%;
  height: 180px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}
.crystal-images img:hover {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .crystal-images {
    flex-direction: column;
    gap: 0.8rem;
  }
  .crystal-images img {
    flex: 1 1 100%;
    aspect-ratio: 4/3;
  }
}
@media (min-width: 1250px) {
  .hero-contact {
    margin-top: 80px;
  }
}
@media (max-width: 1024px) {
  .hero .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero .hero-content h3 {
    font-size: 1.5rem;
  }
  header ul li a {
    font-size: 1.3rem;
  }
  .home-about {
    flex-direction: column;
  }
  .home-about div {
    width: 100%;
    margin: auto;
  }
  .home-about div img {
    width: 100%;
    height: 300px;
  }
  .home-about .home-about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .home-about .home-about-content span {
    display: none;
  }
  footer .get-in-touch .branches {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    text-align: left;
  }
  .about-company {
    flex-direction: column;
  }
  .about-company .about-company-content,
  .about-company .about-company-img {
    width: 100%;
  }
  .about-company .about-company-img {
    margin-top: 30px;
  }
  .team-content {
    flex-direction: column;
  }
  .team-content .team-member {
    width: 100%;
    order: 2;
  }
  .team-content .ceo-member {
    order: 1;
  }
  .about-about {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .about-about div {
    width: 100%;
  }
  .about-about .about-img {
    width: 90%;
    order: 2;
  }
  .about-about .about-content {
    order: 1;
  }
  .about-about .about-content h3 {
    text-align: center;
    color: #dadada;
    font-size: 1.3rem;
  }
  .about-about .about-options {
    grid-template-columns: 1fr !important;
  }
  .about-mission {
    flex-direction: column;
  }
  .about-mission .mission-item {
    margin-bottom: 30px;
  }
  .brand-story {
    padding: 60px 15px;
  }
  .brand-story .brand-story-container h2 {
    font-size: 2.2rem;
  }
  .brand-story .brand-story-container p {
    font-size: 1.2rem;
  }
  .products .swiper-slide {
    max-width: 45% !important;
  }
}
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
  header {
    position: fixed;
    width: 100%;
    justify-content: space-between;
    padding: 1rem;
    z-index: 1000;
  }
  header .menu-toggle {
    display: flex !important;
    order: 1;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
  }
  header .menu-toggle i {
    font-size: 1.5rem;
  }
  header .logo {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  header .logo a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px !important;
    height: auto;
  }
  header .logo a img {
    width: 100%;
    object-fit: cover;
  }
  header .menu-ul {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 100%;
    height: 100vh;
    background: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
    transition: right 0.3s ease-in-out;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  }
  header .menu-ul li {
    width: 100%;
    margin-bottom: 20px;
    position: relative;
  }
  header .menu-ul li a {
    font-size: 1.3rem;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  header .menu-ul li a i {
    position: static;
    margin-left: 10px;
  }
  header .menu-ul li a.a-green {
    color: green;
  }
  header .menu-ul li .submenu {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 5px;
    background: #f9f9f9;
    border-radius: 5px;
    box-sizing: border-box;
  }
  header .menu-ul li .submenu li {
    margin: 0;
  }
  header .menu-ul li .submenu li a {
    padding: 10px 20px;
    font-size: 1.2rem;
    color: #333;
  }
  header .menu-ul li .submenu li a:hover {
    background: #eaeaea;
  }
  header .menu-ul li.active .submenu {
    display: flex;
  }
  header .menu-ul.active {
    right: 0;
  }
  header .menu-ul .close-btn {
    display: block;
    align-self: flex-start;
    margin-bottom: 20px;
    cursor: pointer;
  }
  header .menu-ul .close-btn i {
    font-size: 1.5rem;
    color: #333;
  }
  .hero .hero-content h3 {
    max-width: 350px;
  }
  .home-about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: start;
  }
  .home-about-content ul li {
    margin: 2px 0;
    list-style: disc;
    color: #fff;
    font-size: 1.2rem;
  }
  .brand-story {
    padding: 50px 10px;
  }
  .brand-story .brand-story-container h2 {
    font-size: 1.8rem;
  }
  .brand-story .brand-story-container p {
    font-size: 1rem;
    line-height: 1.6;
  }
  .products .swiper-slide {
    width: 100% !important;
    max-width: 100% !important;
  }
  .salt-cats {
    margin-top: 120px !important;
  }
  .salts .product-card {
    height: 300px;
  }
  .salt {
    margin: 200px auto !important;
  }
  .contact-btn {
    right: 30px;
    bottom: 70px;
  }
  .floating-actions {
    bottom: 30px;
    right: 15px;
    padding: 8px;
    gap: 8px;
  }
  .floating-actions .action-btn {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }
}
@media (max-width: 500px) {
  .about-company div {
    width: 100%;
    height: 100%;
    margin: 0 20px;
  }
  #contactForm {
    max-width: 350px;
  }
  .events-slider .slider-title {
    font-size: 1.5rem;
    max-width: 300px;
  }
  .events-slider .swiper-events {
    width: 100%;
  }
  .pharma {
    margin: 50px auto 40px;
  }
  .pharma h2 {
    font-size: 2rem;
  }
  .pharma p {
    font-size: 1.1rem;
    max-width: 300px;
  }
  .phar-img {
    height: 250px;
  }
}

/*# sourceMappingURL=style.css.map */
