:root {
  --primary-color: #002855; /* Navy Blue */
  --secondary-color: #555555; /* Steel Gray */
  --accent-color: #ffd700; /* Bright Yellow */
  --neutral-color: #f5f5f5; /* Light Gray */
  --text-color: #333333; /* Dark Text */
}

* {
  margin: 0;
  padding: 0;
}

/* Scrollbar Track */
::-webkit-scrollbar {
  width: 5px; /* Width of the scrollbar */
  height: 5px; /* Height for horizontal scrollbars */
}

/* Scrollbar Handle */
::-webkit-scrollbar-thumb {
  background-color: var(--primary-color); /* Use your primary color */
  border: none; /* Adds space around the handle */
  border-radius: 30px;
}

/* Scrollbar Background */
::-webkit-scrollbar-track {
  background: transparent; /* Light gray background */
  border: none;
}

/* On Hover */
::-webkit-scrollbar-thumb:hover {
  background-color: var(--accent-color); /* Bright Yellow on hover */
}

/* While Active (Dragging) */
::-webkit-scrollbar-thumb:active {
  background-color: var(--accent-color); /* Steel Gray when active */
}

/* General Reset */
body {
  font-family: "Poppins", Arial, sans-serif;
  color: var(--text-color);
}

header {
  margin-bottom: 100px;
}

.contact-info-top-header .fa-phone,
.contact-info-top-header .fa-envelope {
  font-size: 14px;
  margin-right: 5px;
}

.contact-info-top-header {
  display: flex;
  gap: 10px;
}

.contact-info-top-header:nth-child(2) {
  display: none;
}

/* Top Header Styling */
.top-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary-color);
  z-index: 99;
}

.divider-top-header {
  color: var(--accent-color);
}

.top-header .container {
  max-width: 1250px;
  margin: auto;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-header .contact-info-top-header span {
  margin-right: 10px;
  font-weight: 500;
  color: white;
}

.top-header .contact-info-top-header a {
  color: #fff;
  text-decoration: none;
}

.top-header .contact-info-top-header a:hover {
  color: #f4a261; /* Accent color */
}

.top-header .social-icons a {
  color: #fff;
  text-decoration: none;
  margin-left: 10px;
  font-size: 16px;
}

.top-header .social-icons a:hover {
  color: #f4a261;
}

/* Main Header */
nav {
  position: fixed;
  top: 40px;
  left: 0;
  width: 100%;
  height: 100%;
  height: 70px;
  background: white;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  z-index: 99;
}

nav .navbar {
  height: 100%;
  max-width: 1250px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  /* background: red; */
  padding: 0 50px;
}

.navbar .logo a img {
  height: 50px;
  text-decoration: none;
}

nav .navbar .nav-links {
  line-height: 70px;
  height: 100%;
}
nav .navbar .links {
  display: flex;
}
nav .navbar .links li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 0 14px;
}
nav .navbar .links li a {
  height: 100%;
  text-decoration: none;
  white-space: nowrap;
  color: var(--primary-color);
  font-size: 15px;
  font-weight: 500;
}
.links li:hover .htmlcss-arrow,
.links li:hover .fa-angle-down {
  transform: rotate(180deg);
}

nav .navbar .links li .arrow {
  /* background: red; */
  height: 100%;
  width: 22px;
  line-height: 70px;
  text-align: center;
  display: inline-block;
  color: var(--primary-color);
  transition: all 0.3s ease;
}
nav .navbar .links li .sub-menu {
  position: absolute;
  top: 70px;
  left: 0;
  line-height: 40px;
  background: var(--primary-color);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 4px 4px;
  display: none;
  z-index: 2;
}
nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu {
  display: block;
}
.navbar .links li .sub-menu li {
  padding: 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.navbar .links li .sub-menu a {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}
.navbar .links li .sub-menu a:hover {
  color: var(--accent-color);
}
.navbar .links li .sub-menu .more-arrow {
  line-height: 40px;
}
.navbar .links li .htmlCss-more-sub-menu {
  /* line-height: 40px; */
}
.navbar .links li .sub-menu .more-sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  border-radius: 0 4px 4px 4px;
  z-index: 1;
  display: none;
}
.links li .sub-menu .more:hover .more-sub-menu {
  display: block;
}
.navbar .search-box {
  position: relative;
  height: 40px;
  width: 40px;
}
.navbar .search-box i {
  position: absolute;
  height: 100%;
  width: 100%;
  line-height: 40px;
  text-align: center;
  font-size: 22px;
  color: var(--primary-color);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.navbar .search-box .input-box {
  position: absolute;
  right: calc(100% - 40px);
  top: 80px;
  height: 60px;
  width: 300px;
  background: #3e8da8;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
}
.navbar.showInput .search-box .input-box {
  top: 65px;
  opacity: 1;
  pointer-events: auto;
  background: var(--primary-color);
}
.search-box .input-box::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  background: #3e8da8;
  right: 10px;
  top: -6px;
  transform: rotate(45deg);
}
.search-box .input-box input {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 4px;
  transform: translate(-50%, -50%);
  height: 35px;
  width: 280px;
  outline: none;
  padding: 0 15px;
  font-size: 16px;
  border: none;
}
.navbar .nav-links .sidebar-logo {
  display: none;
}
.navbar .fa-bars {
  display: none;
}

/* Footer Styles */
.footer {
  background-color: var(--primary-color);
  font-family: "Poppins", Arial, sans-serif;
}

.footer-contact-info .map-link {
  text-decoration: none;
  color: white;
  font-size: 14px;
  transition: color 0.3s, transform 0.2s;
}

.footer-contact-info .map-link i {
  color: var(--accent-color); /* Highlighted location icon */
  margin-right: 5px;
}

.footer-contact-info .map-link:hover {
  color: var(--accent-color);
  transform: scale(1.1); /* Slight zoom effect */
}

.footer-contact-info p {
  margin: 5px 0;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  flex: 1 1 calc(25% - 20px);
  min-width: 200px;
}

.footer-section h1 {
  font-size: 30px;
  color: white;
  font-weight: 600;
}

.footer-section h2 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--accent-color);
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  text-decoration: none;
  color: white;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: var(--accent-color);
}

.footer-section p {
  font-size: 14px;
  margin: 5px 0;
}

.social-icons-footer {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  width: 70%;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.social-icons-footer a {
  font-size: 15px;
  color: white;
  text-decoration: none;
  transition: color 0.3s, transform 0.2s, background-color 0.3s;
  background-color: rgba(0, 17, 85, 0.7);
  border-radius: 50%;
  padding: 11px;
  backdrop-filter: blur(5px);
}

.social-icons-footer a:nth-child(1) {
  padding: 12px 18px;
}
.social-icons-footer a:nth-child(2) {
  padding: 12px 15px;
}
.social-icons-footer a:nth-child(3) {
  padding: 12px 16px;
}

.social-icons-footer a:nth-child(4) {
  padding: 12px 15px;
}
.social-icons-footer a:nth-child(5) {
  padding: 13px 15px;
}
.social-icons-footer a:nth-child(6) {
  padding: 13px 15px;
}

.social-icons-footer a:hover {
  transform: scale(1.1);
}

.social-icons-footer a:nth-child(1):hover {
  background-color: #1877f2; /* Facebook Blue */
  color: white;
}

.social-icons-footer a:nth-child(2):hover {
  background-color: #1da1f2; /* Twitter Blue */
  color: white;
}

.social-icons-footer a:nth-child(3):hover {
  background-color: #0077b5; /* LinkedIn Blue */
  color: white;
}

.social-icons-footer a:nth-child(4):hover {
  background-color: #0088cc; /* Telegram Blue */
  color: white;
}

.social-icons-footer a:nth-child(5):hover {
  background-color: #ff0000; /* YouTube Red */
  color: white;
}

.social-icons-footer a:nth-child(6):hover {
  background: linear-gradient(
    45deg,
    #e4405f,
    #fd1d1d,
    #fcb045
  ); /* Instagram Gradient */
  color: white;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid white;
  font-size: 14px;
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/hero/hero-magnatic.jpg") no-repeat center center/cover;
  height: 85vh; /* Full screen height */
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 0 20px;
}

/* Hero Content */
.hero-content {
  max-width: 100%;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #ddd;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.btn-primary,
.btn-secondary {
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--accent-color);
  color: var(--primary-color);
}

.btn-primary:hover {
  background-color: white;
  color: var(--primary-color);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.btn-secondary:hover {
  background-color: var(--accent-color);
  color: white;
}

/* About Section */
.about {
  padding: 60px 20px;
  background-color: #f5f5f5; /* Light background color */
  text-align: center;
  position: relative;
}

.about .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* About Content Layout */
.about-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  position: relative;
}

.about-content .text {
  flex: 1;
  max-width: 500px;
}

.about h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--primary-color);
  font-weight: 700;
}

.about p {
  font-size: 18px;
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 15px;
}

.about-content .image {
  position: relative;
  max-width: 500px;
  margin-top: 20px;
}

.about-content .image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Learn More Button */
.btn-learn-more {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 20px;
  background-color: var(--accent-color); /* Use your brand color */
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

/* Hover Effect */
.btn-learn-more:hover {
  background-color: var(--primary-color); /* Use your primary color on hover */
  color: white;
}

/* Products Section */
.products {
  padding: 60px 20px;
  background-color: #f5f5f5;
  text-align: center;
}

.products .container {
  max-width: 1200px;
  margin: 0 auto;
}

.products p {
  font-size: 16px;
  color: var(--text-color);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Tab Buttons */
.tabs {
  display: flex;
  overflow-x: auto; /* Enable horizontal scroll */
  white-space: nowrap; /* Prevent buttons from wrapping */
  gap: 10px; /* Add space between buttons */
  padding: 10px; /* Add padding around the container */
  scrollbar-width: thin; /* For custom scrollbar styling on supported browsers */
  justify-content: center; /* Align tabs to the start */
}

.tab-button,
.tab-buttons {
  flex-shrink: 0; /* Prevent buttons from shrinking */
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 25px;
  transition: background-color 0.3s, color 0.3s;
}

.tab-button:hover,
.tab-buttons:hover {
  background-color: var(--primary-color);
  color: white;
}

.tab-button.active,
.tab-buttons.active {
  background-color: var(--primary-color);
  color: white;
}

/* Hide scrollbars on touch devices while keeping scrolling functional */
.tabs::-webkit-scrollbar {
  display: none; /* For Chrome, Safari, and Opera */
}
.tabs {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

/* Tab Content */
.tab-content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.tab-pane {
  display: none;
  width: 100%;
  justify-content: space-around;
  gap: 20px;
}

.tab-pane.active {
  display: flex;
}

.product-card {
  position: relative;
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 280px;
  text-align: center;
  overflow: hidden;
  margin: 15px; /* Add spacing between cards */
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.product-card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.product-card .product-image {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.product-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.product-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 15px;
}

.product-card .overlay span {
  color: white;
  font-size: 18px;
  font-weight: bold;
  padding: 10px 20px;
  border: 2px solid white;
  border-radius: 50px;
  text-transform: uppercase;
}

.product-card:hover .overlay {
  opacity: 1;
}

.product-card h3 {
  font-size: 16px;
  color: var(--primary-color);
  margin-bottom: 10px;
  white-space: nowrap; /* Prevent wrapping */
  overflow: hidden; /* Hide overflow text */
  text-overflow: ellipsis; /* Default truncation at the end */
  width: 100%; /* Ensure it respects container width */
}

.product-card p {
  font-size: 14px;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.btn-product {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--accent-color);
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.btn-product:hover {
  background-color: var(--primary-color);
}

/* View All Products Button */
.btn-view-all {
  display: inline-block;
  margin-top: 40px;
  padding: 12px 30px;
  background-color: var(--primary-color);
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn-view-all:hover {
  background-color: var(--accent-color);
  color: var(--primary-color);
}

.product-image img {
  max-width: 100%;
  max-height: 100%;
}

.placeholder-image {
  font-size: 24px;
  color: #888;
  font-weight: bold;
}

.product-image {
  width: 100%;
  height: 180px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
  background-color: #f0f0f0;
  position: relative;
}

/* scroll to top styles */
.scrollToTop {
  position: fixed;
  bottom: -30%;
  right: 5%;
  width: 40px;
  height: 40px;
  line-height: 40px;
  z-index: 9; /* Ensure it's above other elements */
  background-color: var(--primary-color);
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0px 5px 15px rgba(79, 79, 246, 0.5);
  transition: all 0.3s ease;
  color: var(--neutral-color);
}

.scrollToTop:hover {
  background-color: var(--accent-color);
  transform: translateY(-5px);
  box-shadow: 0px 5px 15px rgba(255, 255, 110, 0.5);
}

#scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 5px;
  background: var(--accent-color);
  z-index: 1000;
  transition: width 0.2s ease;
}

/* modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 20px;
  border-radius: 8px;
  width: 80%;
  max-width: 600px;
  position: relative;
}

.modal-content .close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 25px;
  color: #333;
  cursor: pointer;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Always 3 items per row */
  grid-column-gap: 20px; /* Column gap */
  grid-row-gap: 30px; /* Row gap */
  gap: 20px; /* Space between items */
  margin-top: 40px;
}

/* .stats-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  background: #00285562; 
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.5s ease;
} */

/* .stats-item:hover::before {
  transform: translate(-50%, -50%) scale(2.5);
} */

/* Hover Effect */
/* .stats-item:hover {
  transform: translateY(-10px) rotate(2deg);
  background: linear-gradient(145deg, var(--primary-color), #618fc5d6);
} */

.section-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color); /* Navy blue */
}

.section-subheading {
  font-size: 1.2rem;
  color: var(--secondary-color);
  margin-top: 10px;
}

.img-fluid {
  max-width: 90%;
  border-radius: 15px;
}

.gallery-grid img {
  width: 100%; /* Ensure images fill their container */
  height: 200px; /* Set a fixed height for all images */
  object-fit: cover; /* Ensure aspect ratio is preserved and image is cropped if necessary */
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.products h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--primary-color); /* Your brand color */
  font-weight: 700;
}

/* Button Styling */
.get-quote-btn {
  background-color: var(--accent-color);
  color: #333;
  padding: 15px 35px;
  font-size: 1.25rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Button Hover Effect */
.get-quote-btn:hover {
  background-color: #ffcc00;
  color: #333;
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero-section {
  position: relative;
  background: url("../images/hero.jpg") no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 100px 0;
}

.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-section .container {
  z-index: 2;
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 700;
}

.hero-section p {
  font-size: 1.25rem;
}

.hero-section .btn-warning {
  padding: 15px 30px;
  font-size: 1.25rem;
  border-radius: 25px;
}

.hero-section {
  position: relative;
  background: url("../images/hero.jpg") no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 100px 0;
}

.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-section .container {
  z-index: 2;
  position: relative;
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 700;
}

.hero-section p {
  font-size: 1.25rem;
}

.hero-section .btn-warning {
  padding: 15px 30px;
  font-size: 1.25rem;
  border-radius: 25px;
}

/* Contact Section */
.contact-section {
  padding: 60px 0;
  background-color: #f5f5f5;
}

.contact-section h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 40px;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.info-item {
  display: flex;
  gap: 15px;
}

.contact-info .info-item {
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 30px;
  width: 100%;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.contact-info .info-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.contact-info .info-item i {
  font-size: 2.5rem;
  color: #ffd700; /* Bright Yellow */
  margin-bottom: 20px;
}

.contact-info .info-item h5 {
  font-size: 1.5rem;
  font-weight: 600;
}

.contact-info .info-item p {
  font-size: 1.125rem;
  color: #555;
}

/* Contact Form */
.contact-section form {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-section form .form-label {
  font-weight: 600;
}

.contact-section form .form-control {
  margin-bottom: 20px;
}

.contact-section form .btn-primary {
  background-color: #002855; /* Navy Blue */
  border: none;
  padding: 15px 30px;
  font-size: 1.125rem;
  border-radius: 25px;
  width: 100%;
  transition: all 0.3s ease;
}

.contact-section form .btn-primary:hover {
  background-color: #ffd700; /* Bright Yellow */
  color: #002855; /* Navy Blue */
}

/* Map Section */
.map-section {
  margin-top: 40px;
}

.map-section iframe {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 10px;
}

/* about style */
/* About Section */
.about-section {
  padding: 40px 20px;
  background-color: var(--neutral-color);
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  gap: 20px;
}

.about-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.stats-heading {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 30px;
  color: var(--primary-color); /* Replace with your preferred color */
}

.about-content {
  flex: 2;
  padding: 20px;
}

.about-content h2 {
  color: var(--primary-color);
  font-size: 28px;
  margin-bottom: 10px;
}

.about-content p {
  line-height: 1.8;
  margin-bottom: 10px;
}

/* Mission, Vision, Values Section */
.mission-vision-values {
  padding: 20px 20px;
  color: #333;
  text-align: center;
}

.mission-vision-values .container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.mission-vision-values .item {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.05);
}

.mission-vision-values .item h3 {
  color: var(--accent-color);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.mission-vision-values .item p {
  margin: 0;
  line-height: 1.8;
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 40px 20px;
  background-color: var(--neutral-color);
  text-align: center;
}

.why-choose-us h2 {
  color: var(--primary-color);
  margin-bottom: 30px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: var(--primary-color);
  color: var(--neutral-color);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.card i {
  font-size: 40px;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  line-height: 1.6;
}

/* Awards Section */
.awards-section {
  padding: 40px 20px;
  background-color: var(--neutral-color);
  text-align: center;
}

.award-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.award img {
  width: 200px;
  border-radius: 10px;
}

.award p {
  margin-top: 10px;
}

/* Management Team Section */
.management-team {
  padding: 40px 20px;
  background-color: var(--primary-color);
  color: var(--neutral-color);
  text-align: center;
}

.team-members {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.team-member img {
  width: 200px;
  border-radius: 50%;
}

.team-member h3 {
  margin-top: 15px;
  margin-bottom: 5px;
}

.team-member p {
  margin: 0;
}

/* Contact Section */
.contact-section-any-question {
  background: linear-gradient(135deg, #f9fafc, #e6e9ec); /* Subtle Gradient */
  color: #333; /* Dark Text */
  padding: 50px 20px;
  border-top: 1px solid #ccc; /* Separator from previous section */
}

.contact-container-any-question {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  align-items: center;
}

.contact-info-any-question {
  flex: 1;
  text-align: left;
  min-width: 300px;
}

.contact-info-any-question h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #555; /* Neutral Gray */
}

.contact-info-any-question p {
  line-height: 1.6;
  margin-bottom: 30px;
}

.contact-details-any-question div {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-details-any-question i {
  font-size: 24px;
  margin-right: 15px;
  color: #777; /* Soft Neutral */
}

.contact-details-any-question p {
  margin: 0;
}

.contact-details-any-question a {
  color: #444; /* Slightly dark neutral */
  text-decoration: none;
  font-weight: bold;
}

.contact-details-any-question a:hover {
  text-decoration: underline;
}

.contact-form-any-question {
  flex: 1;
  background-color: #fff; /* Pure White */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  min-width: 300px;
}

.contact-form-any-question h3 {
  margin-bottom: 20px;
  color: #555; /* Neutral Gray */
  text-align: center;
}

.form-group-any-question {
  margin-bottom: 20px;
}

.form-group-any-question label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

.form-group-any-question input,
.form-group-any-question textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc; /* Light border */
  background-color: #f9f9f9; /* Light Background */
  border-radius: 5px;
}

.form-group-any-question input {
  height: 40px;
}

.form-group-any-question textarea {
  resize: none;
}

button[type="submit"] {
  display: block;
  width: 100%;
  background-color: var(--accent-color);
  color: var(--primary-color);
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #ffcc00; /* Slightly lighter yellow */
}

/* Container for the message icon and options */
.message-icon-container {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
}

/* Message toggle button */
.message-icon {
  background-color: var(--primary-color);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease,
    border-radius 0.3s;
}

.message-icon:hover {
  transform: scale(1.1);
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: absolute;
  bottom: 70px; /* Positioned above the main button */
  left: 0;
  opacity: 0; /* Initially hidden */
  transform: translateY(20px); /* Slide down when hidden */
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

/* Hidden by default */
/* .contact-options.hidden {
  pointer-events: none;
  opacity: 1;
  transform: translateY(0); 
} */

.contact-options:not(.hidden) {
  opacity: 1;
  transform: translateY(0); /* Slide into position */
  pointer-events: auto;
}

/* Individual contact option buttons */
.contact-option {
  background-color: rgba(0, 17, 85, 0.7);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  position: relative; /* For tooltip positioning */
  transition: background-color 0.3s, transform 0.3s;
}

.contact-option:hover {
  transform: scale(1.1);
}

/* WhatsApp-specific styling */
.contact-option.whatsapp {
  background-color: #25d366; /* WhatsApp Green */
}

/* Call-specific styling */
.contact-option.call {
  background-color: #007aff; /* Call Blue */
}

/* Tooltip styling */
.tooltip {
  position: absolute;
  left: 60px; /* Position the tooltip to the right of the icon */
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0; /* Initially hidden */
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Show tooltip on hover */
.contact-option:hover .tooltip {
  opacity: 1;
  visibility: visible;
}

/* Icon rotation for message-icon transitions */
.message-icon i {
  transition: transform 0.3s ease, border-radius 0.3s ease;
}

.message-icon i.fa-xmark {
  transform: rotate(90deg); /* Add a rotation effect for the close icon */
}

/* Team Style */

.section {
  padding: 100px 0;
  position: relative;
}

.section-title {
  position: relative;
}

.section-title .title {
  letter-spacing: 0.5px;
  font-size: 28px !important;
  color: var(--primary-color);
}

.para-desc {
  max-width: 600px;
  font-size: 16px;
}

.team .content .team-title:hover {
  color: #059669 !important;
}

.team.team-five .team-icon {
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
}

.team.team-five .team-icon i {
  height: 36px;
  width: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.team .content .team-title:hover {
  color: var(--primary-color) !important;
}

.product-details {
  line-height: 1.8;
}
.product-details h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-color);
}
.product-details h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.product-details p {
  display: flex;
  gap: 5px;
}
