 /**
* Template Name: Presento - v1.1.1
* Template URL: https://bootstrapmade.com/presento-bootstrap-corporate-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #e03a3c;
}

a:hover {
  color: #e76668;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: #e03a3c;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #e35052;
  color: #fff;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
/* Header */
#header {
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  padding: 15px 0;
  min-height: 70px;
}

/* Container */
.header-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0 20px;
}

/* Logo */
#logoText {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
  padding: 0;
  color: #e03a3c;
  text-align: left;
  margin-left: 0;
  flex-shrink: 0;
}

#logoText a {
  text-decoration: none;
  color: inherit;
}

#logoText span {
  color: #000;
}

/* Nav */
nav.desktop-nav {
  margin-left: 50px;
  width: 100%;
}

.nav-menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
}

.nav-item {
  margin: 0 20px;
  position: relative;
}

.nav-item a {
  text-decoration: none;
  color: #111;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s;
}

.nav-item a:hover {
  color: #e03a3c;
}

/* Active desktop nav link effect */
.nav-menu .nav-item a.active {
  color: #e03a3c;
  font-weight: 600;
  position: relative;
}

.nav-menu .nav-item a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 2px;
  width: 100%;
  background-color: #e03a3c;
  border-radius: 2px;
}

/* Dropdown styling */
.nav-menu .drop-down {
  position: relative;
}

.nav-menu .drop-down ul {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  padding: 5px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  width: 200px;
  z-index: 99;
}

.nav-menu .drop-down:hover > ul {
  display: block;
}

.nav-menu .drop-down li {
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.nav-menu .drop-down li:hover {
  background-color: #f0f0f0;
}

/* Hide desktop nav on small screens */
@media screen and (max-width: 991px) {
  nav.desktop-nav {
    display: none;
  }

  .mobile-nav-toggle {
    display: block;
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 40px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
  margin-left: 20px;
}

/* Adjust the cross icon position when nav is active */
.mobile-nav-active .mobile-nav-toggle {
  top: 30px;
}

/* Mobile Dropdown */
.mobile-nav {
  position: fixed;
  top: 55px;
  right: 0;
  bottom: 15px;
  width: 250px;
  z-index: 9999;
  background: #e6e6e6; /* Slightly more grey */
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 5px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 5px;
  max-height: 45%; /* Reduced height */
  overflow-y: auto;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav a {
  text-decoration: none;
  color: #e03a3c; /* Red nav links in mobile */
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s;
  padding: 5px 15px;
  margin-top: 10px;
}

.mobile-nav .drop-down {
  position: relative;
  padding: 0 15px;
}

.mobile-nav .drop-toggle {
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  color: #e03a3c; /* Red */
  margin-top: 10px;
}

.mobile-nav .mobile-dropdown-menu {
  display: none;
  flex-direction: column;
  padding-left: 10px;
}

.mobile-nav .mobile-dropdown-menu.show {
  display: flex;
}

.mobile-nav .mobile-dropdown-menu li {
  list-style: none;
  padding: 5px 0;
}

/* Overlay */
.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active .mobile-nav-overly {
  display: block;
}

/* Responsive logo text */
@media (max-width: 420px) {
  #logoText {
    font-size: 18px;
    text-align: left;
  }
}

@media (max-width: 375px) {
  #logoText {
    font-size: 16px;
  }
}

@media (max-width: 320px) {
  #logoText {
    font-size: 14px;
  }
}


/*---------------------------------Main Design -----------------------------*/
.products {
  padding: 40px 20px; /* Add extra padding for spacing */
  font-family: Arial, sans-serif;
  overflow-x: hidden; /* Prevent horizontal scrolling */
}

.products h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 30px; /* Increased margin for better visibility */
  color: red;
  margin-top: 3%;
  word-wrap: break-word; /* Prevent overflow of long text */
  font-weight: bold;
}

.products h2 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: black;
}

.product-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  width: 100%;
  height: 65vh; /* Reduced height to ensure more space for the heading */
  box-sizing: border-box;
  overflow: hidden; /* Prevent horizontal overflow */
}

.product-section .text {
  width: 50%;
  padding: 10px;
  color: black;
  box-sizing: border-box;
}

.product-section .text.left {
  margin-left: 15%; /* Reduced left margin for left text */
}

.product-section .text.right {
  margin-right: 15%; /* Reduced right margin for right text */
}

.product-section .image {
  width: 50%;
  padding: 10px;
  text-align: center;
  box-sizing: border-box;
}

/* Custom margins for left/right aligned images */
.product-section .image.left {
  margin-left: 6%; /* Added space from the left edge */
}

.product-section .image.right {
  margin-right: 6%; /* Added space from the right edge */
}

.product-section img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: contain; /* Ensure the image fits within its container */
}

.text h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: red;
}

.text p {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: black;
  margin-bottom: 3%;
}

.text ul {
  list-style: disc;
  padding-left: 20px;
  color: black;
}

.text ul li {
  margin-bottom: 5px;
}

.product-section .left {
  order: 1;
}

.product-section .right {
  order: 2;
}

/* 🛠 MOBILE RESPONSIVE FIXES WITH -20% MARGIN */

/* Tablet (max-width: 1024px) */
@media screen and (max-width: 1024px) {
  .products h1 {
    font-size: 1.8rem;
    margin-top: 2%;
  }

  .products h2 {
    font-size: 1.2rem;
  }

  .product-section {
    height: auto;
    flex-direction: column;
    padding: 0 3%;
  }

  .product-section .text,
  .product-section .image {
    width: 100%;
    padding: 10px;
  }

  
}

/* Mobile Screens (max-width: 425px) */
@media screen and (max-width: 425px) {
  .products h1 {
    font-size: 1.5rem;
    margin-top: 10%;
  }

  .products h2 {
    font-size: 1rem;
  }

  .product-section {
    flex-direction: column;
    height: auto;
    padding: 0 5%;
  }

  .product-section .text,
  .product-section .image {
    width: 100%;
    padding: 10px;
  }

  .product-section .text.left {
    margin-left: -20%;
  }

  .product-section .text.right {
    margin-right: -20%;
      }

  .product-section img,
  .product-section object {
    width: 100%;
    max-width: 250px;
  }

  .text h3 {
    font-size: 1.2rem;
  }

  .text p {
    font-size: 0.4rem;
  }

  .text ul li {
    font-size: 0.1rem;
  }
}

/* 🛠 MOBILE RESPONSIVE FIXES WITH -20% MARGIN */

/* Tablet (max-width: 1024px) */
@media screen and (max-width: 1024px) {
  .products h1 {
    font-size: 1.8rem;
    margin-top: 2%;
  }

  .products h2 {
    font-size: 1.2rem;
  }

  .product-section {
    height: auto;
    flex-direction: column;
    padding: 0 3%;
  }

  .product-section .text,
  .product-section .image {
    width: 100%;
    padding: 10px;
  }
}

/* Mobile Screens (max-width: 425px) */
@media screen and (max-width: 425px) {
  .products h1 {
    font-size: 1.2rem;
    margin-top: 20%;
  }

  .products h2 {
    font-size: 1.0rem;
  }

  .product-section {
    padding: 0 5%;
  }

  .product-section .text {
    width: 100%;
    padding: 5px;
    text-align: center;
    max-width: 100%;
  }

  .product-section .text.left {
    margin-left: -2%; /* Minimal negative margin */
  }

  .product-section .text.right {
    margin-right: -2%; /* Minimal negative margin */
  }

  .product-section .image {
    width: 100%;
    padding: 5px;
  }

  .product-section img,
  .product-section object {
    max-width: 200px;
  }

  .text h3 {
    font-size: 0.9rem;
  }

  .text p {
    font-size: 0.75rem;
    word-wrap: break-word;
    line-height: 1.3;
    text-align: justify;
  }

  .text ul li {
    font-size: 0.7rem;
  }
}


/* 🛠 Additional Fixes for 375px and 320px */

/* iPhone SE, older small phones (max-width: 375px) */
@media screen and (max-width: 375px) {
  .products h1 {
    font-size: 1.2rem;
    margin-top: 20%;
  }

  .products h2 {
    font-size: 1.0rem;
  }

  .product-section {
    padding: 0 5%;
  }

  .product-section .text {
    width: 100%;
    padding: 5px;
    text-align: center;
    max-width: 100%;
  }

  .product-section .text.left {
    margin-left: -2%; /* Minimal negative margin */
  }

  .product-section .text.right {
    margin-right: -2%; /* Minimal negative margin */
  }

  .product-section .image {
    width: 100%;
    padding: 5px;
  }

  .product-section img,
  .product-section object {
    max-width: 200px;
  }

  .text h3 {
    font-size: 0.9rem;
  }

  .text p {
    font-size: 0.75rem;
    word-wrap: break-word;
    line-height: 1.3;
    text-align: justify;
  }

  .text ul li {
    font-size: 0.7rem;
  }
}


/* Smallest devices (320px and below) */
@media screen and (max-width: 320px) {
  .products h1 {
    font-size: 1.2rem;
    margin-top: 20%;
  }

  .products h2 {
    font-size: 1.0rem;
  }

  .product-section {
    padding: 0 5%;
  }

  .product-section .text {
    width: 100%;
    padding: 5px;
    text-align: center;
    max-width: 100%;
  }

  .product-section .text.left {
    margin-left: -2%; /* Minimal negative margin */
  }

  .product-section .text.right {
    margin-right: -2%; /* Minimal negative margin */
  }

  .product-section .image {
    width: 100%;
    padding: 5px;
  }

  .product-section img,
  .product-section object {
    max-width: 200px;
  }

  .text h3 {
    font-size: 0.9rem;
  }

  .text p {
    font-size: 0.75rem;
    word-wrap: break-word;
    line-height: 1.3;
    text-align: justify;
  }

  .text ul li {
    font-size: 0.7rem;
  }
}





/*--------------------------------------------------------------
/* ======= Footer ======= */
#footer {
  color: #fff; /* White text for all text inside the footer */
  font-size: 14px;
  background: #000; /* Black background */
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #000; /* Black background */
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 26px;
  line-height: 1;
  font-weight: 700;
  color: #e03a3c; /* Set color of h3 to #e03a3c */
}

#footer .footer-top .footer-contact h3 span {
  color: #e03a3c; /* Set color of span inside h3 to #e03a3c */
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff; /* White color for paragraph text */
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
  color: #e03a3c; /* Set color of h4 to #e03a3c */
}

#footer .footer-top h4::after {
  content: '';
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: #e03a3c;
  bottom: 0;
  left: 0;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: white; /* White icon color */
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff; /* White color for links */
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #e03a3c; /* Red color for hover effect */
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
  color: #e03a3c; /* Set color of h4 to #e03a3c */
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 5px 10px;
  position: relative;
  border-radius: 4px;
  text-align: left;
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #e03a3c;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: #e35052;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #fff; /* White color for credits text */
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #2b2b2b;
  color: #fff; /* White color for social icons */
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #e03a3c;
  color: #fff;
  text-decoration: none;
}

/* ======= Container Section ======= */
#footer .container.d-md-flex.py-4 {
  background: black; /* Black background for this section */
  color: #fff; /* White text */
  padding-top: 30px;
  padding-bottom: 30px;
}

#footer .container.d-md-flex.py-4 .copyright {
  color: #fff; /* White color for copyright text */
}

#footer .container.d-md-flex.py-4 .credits {
  color: #fff; /* White color for credits text */
}

#footer .container.d-md-flex.py-4 .social-links a {
  background: #2b2b2b; /* Dark grey background for social icons */
  color: #fff; /* White color for social icons */
}

#footer .container.d-md-flex.py-4 .social-links a:hover {
  background: #e03a3c;
  color: #fff;
}