.navbar .navbar-toggler:focus {
  box-shadow: none !important;
}
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@font-face {
  font-family: "MyRFont";
  src: url("Fonts/EUROPANUOVAREGULAR.TTF") format("TTF");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "MyBFont";
  src: url("Fonts/EUROPANUOVAEXTRABOLD.TTF") format("TTF");
  font-weight: normal;
  font-style: normal;
}
/* Global Styles */
:root {
  --primary-color: #1e88e5;
  --secondary-color: hsl(207, 95%, 24%);
  --accent-color: #2697f3;
  --white: #ffffff;
  --dark: #193e6d;
  --hover: #00a8e1;
}

body {
  font-family: "MyRFont", sans-serif;
  overflow-x: hidden !important;
  box-sizing: border-box;
  margin: 0 !important;
  padding: 0 !important;
}

.justify {
  text-align: justify;
}
b {
  color: var(--primary-color);
}
.flex {
  display: flex;
}
.flex-wrap {
  flex-wrap: wrap;
}
.gap-40 {
  gap: 40px;
}
.pl-20 {
  padding-left: 20px;
}
.pl-10 {
  padding-left: 10px;
}
.w-90 {
  width: 90%;
}

.pl-0 {
  padding-left: 0px;
}

.rotate-180 {
  transform: rotate(180deg);
}
.product-detail .row > :nth-child(1) {
  padding-right: 0px !important;
}
.product-detail .row > :nth-child(2) {
  padding-left: 0px !important;
}

.main-color {
  color: var(--primary-color);
}

section {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1175px;
  }
}

.details {
  font-size: 17px;
  color: #666;
  line-height: 1.6;
  font-style: normal;
}

/* Navbar Styles */
.navbar {
  padding: 20px 0;
  background: linear-gradient(
    to right,
    rgba(250, 250, 250, 0.98),
    hwb(0 97% 3%)
  );
  border-bottom: 2px solid var(--accent-color);
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 255, 0.2);
}

.navbar-brand {
  padding: 0;
  margin-right: 30px;
}

.navbar-brand img {
  height: 80px;
  transition: transform 0.3s ease;
}
@media (max-width: 576px) {
  .navbar-brand img {
    height: 60px;
  }
}

/* Footer Styles */
footer.footer {
  background-color: #064873;
  color: #fff !important;
  padding: 60px 0 0 0;
  position: relative;
  overflow-x: hidden;
}
.footer-logo {
  max-width: 150px;
  margin-bottom: 20px;
}

.footer p {
  margin-bottom: 20px;
  color: white;
}

.footer-links ul li a,
.footer-contact ul li {
  color: white !important;
}

.footer h4 {
  color: #dbecf4;
  margin-bottom: 20px;
}

.footer-links ul {
  padding: 0;
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 15px;
}

.footer-links ul li a {
  text-decoration: none;
  transition: color 0.8s easeinout;
}

.footer-links ul li a:hover {
  color: #dbecf4 !important;
}

.footer-contact ul {
  padding: 0;
  list-style: none;
}

.footer-contact ul li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  align-items: center;
}

.footer-contact ul li i {
  margin-right: 10px;
  color: var(--white);
  border: solid 1px rgba(255, 255, 255, 0.2);
  padding: 8px;
  border-radius: calc(100% / 2);
  transition: all 0.8s ease;
}
.footer-contact ul li i:hover {
  background: #fff;
  color: #00a8e1 !important;
}
.Newsletter-btn {
  background-color: var(--primary-color);
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.Newsletter-btn:hover {
  background-color: var(--hover);
}

.about-hero .new-header.breadcrumb-about,
.contact-hero .new-header.breadcrumb-contact {
  position: absolute;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
}
.about-hero .new-header-content,
.contact-hero .new-header-content {
  padding-left: 0;
}
.about-hero .current-page-color {
  color: var(--white);
}
.about-hero .hero-content {
  margin-top: 50px;
}

.hero-section.about-hero,
.hero-section.contact-hero {
  position: relative;
  margin-bottom: 0 !important;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  filter: brightness(0.7);
  height: 500px;
}
.hero-section.about-hero {
  background-image: url(../images/about/about-bg-header.jpg);
}
.hero-section.contact-hero {
  background-image: url(../images/contactUs-bg.jpg);
}
.hero-slide {
  position: relative;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(4, 63, 95, 0.3);
  pointer-events: none;
  z-index: 1;
}
@media (min-width: 768px) {
  .jcc {
    justify-content: center;
  }
}
/* Social Media Icons */
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  margin-right: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a i {
  color: #fff;
  font-size: 20px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: #fff;
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: var(--primary-color) !important;
}
.social-links a:hover .fa-facebook-f {
  background: linear-gradient(to bottom, #1877f2, #0d5ab9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.social-links a:hover .fa-twitter {
  background: linear-gradient(to bottom, #1da1f2, #0c85d0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.social-links a:hover .fa-linkedin-in {
  background: linear-gradient(to bottom, #0077b5, #005582);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.social-links a:hover .fa-instagram {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.social-links a:hover {
  background-color: #ffffff !important;
  transform: translateY(-3px);
}

.social-links a:hover .fa-facebook-f {
  color: #1877f2 !important;
}

.social-links a:hover .fa-twitter {
  color: #1da1f2 !important;
}

.social-links a:hover .fa-linkedin-in {
  color: #0077b5 !important;
}

.social-links a:hover .fa-instagram {
  color: #e4405f !important;
}

.footer-bottom {
  /* background-color: #0a1f39 !important;  */
  background-color: #064065 !important;
  padding: 15px 0px;
  margin-top: 40px;
}

.copyright {
  color: #fff;
  text-align: center;
  margin: 0;
}
.navbar-nav {
  margin-left: auto;
}

.nav-link {
  color: #666;
  font-weight: 600;
  padding: 8px 20px !important;
  transition: all 0.3s ease;
  font-size: 14px;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 70%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color) !important;
}

.navbar.hidden {
  transform: translateY(-100%);
}

.list-none {
  list-style: none;
  padding: 0;
}

.dropdown-menu {
  background-color: #f2f2f2;
  margin-top: 10px;
  z-index: 99999999999999999999999;
}

.dropdown-item {
  padding: 8px 20px;
  color: var(--dark);
  transition: all 0.3s ease;
}

@media (max-width: 991px) {
  .dropdown-item {
    color: var(--dark);
  }
  .about-content {
    padding-left: 0px;
  }
}
.about-content b {
  font-size: 18px;
}
.dropdown-item:hover {
  background-color: var(--primary-color) !important;
  color: var(--white) !important;
}
.dropdown-item.active,
.dropdown-item:active {
  background-color: var(--primary-color) !important;
  color: var(--white) !important;
}

#home-nav,
#about-nav,
#contact-nav {
  position: fixed !important;
  background: transparent !important;
  border-bottom: none !important;
  color: white !important;
  box-shadow: none;
}

#home-nav.sticky,
#about-nav.sticky,
#contact-nav.sticky {
  background: #064873 !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.home-navbar .navbar-brand img,
#about-nav .navbar-brand img,
#contact-nav .navbar-brand img {
  width: 100px;
  height: 60px;
}
.home-navbar .nav-link,
#about-nav .nav-link,
#contact-nav .nav-link {
  color: #fff;
}
.home-navbar .nav-link:hover,
.home-navbar .nav-link.active,
#about-nav .nav-link:hover,
#about-nav .nav-link.active,
#contact-nav .nav-link:hover,
#contact-nav .nav-link.active {
  color: var(--primary-color) !important;
}
.home-navbar .social-contact a,
#about-nav .social-contact a,
#contact-nav .social-contact a {
  background-color: #2e303500 !important;
  transition: all 1s ease;
}
.home-navbar .social-contact a:hover,
#about-nav .social-contact a:hover,
#contact-nav .social-contact a:hover {
  background-color: white !important;
}
/* Make toggler lines and border white for both home and about navbars*/

.navbar .navbar-toggler .navbar-toggler-icon,
#about-nav .navbar-toggler .navbar-toggler-icon,
.home-navbar .navbar-toggler .navbar-toggler-icon,
#contact-nav .navbar-toggler .navbar-toggler-icon {
  color: white !important;
  border: none;
}

#home-nav .navbar-toggler,
#about-nav .navbar-toggler,
#contact-nav .navbar-toggler {
  border: 1.5px solid #fff !important;
}
/* Custom toggler lines using CSS for white color */
.navbar .navbar-toggler .navbar-toggler-icon {
  width: 1.5em;
  height: 1.5em;
  display: inline-block;
  position: relative;
}
.about-toggler .navbar-toggler-icon,
#home-nav .home-toggler span,
#contact-nav .contact-toggler span {
  filter: invert(1) brightness(2) !important;
}

.navbar .navbar-toggler .navbar-toggler-icon::before {
  top: 0.3em;
}
.navbar .navbar-toggler .navbar-toggler-icon::after {
  top: 1em;
}
.navbar .navbar-toggler .navbar-toggler-icon span {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0.65em;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}
@media (max-width: 991px) {
  .home-navbar .nav-link,
  #about-nav .nav-link {
    color: #ffffff;
  }
  .home-navbar .nav-link:hover,
  .home-navbar .nav-link.active,
  #about-nav .nav-link:hover,
  #about-nav .nav-link.active {
    color: var(--primary-color) !important;
  }
}

/* Hero Section */

.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  margin-bottom: 100px;
}

@media (max-width: 767px) {
  .hero-section {
    margin-bottom: 35px !important;
    height: auto !important;
  }
  .collapse.navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    background: #043f5f; /* or your preferred color */
    z-index: 999;
  }
  .hero-slider {
    main-height: fit-content;
  }
}

.hero-slide {
  position: relative;
  height: 100vh;
  min-height: 600px;
}
.hero-slide .container {
  position: relative;
  height: 100%;
}

.hero-slide video {
  width: 100%;
  height: 100%;
  object-fit: fill;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) !important;
  z-index: 2;
  color: var(--white);
  max-width: 800px;
  text-align: left;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}
.hero-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards 0.3s;
  z-index: 3;
}

.hero-content p {
  width: 80%;
  font-size: 1.25rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards 0.6s;
  z-index: 3;
}

.hero-buttons {
  margin-top: 60px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards 0.9s;
  display: flex;
  justify-content: start;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-buttons .btn {
  padding: 12px 30px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
  margin-right: 20px;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
  transition: all 0.3s ease;
}

.hero-buttons .btn-primary:hover {
  background-color: var(--hover);
  border-color: var(--secondary-color);
  transform: translateY(-2px);
}

.hero-buttons .btn-outline-light:hover {
  background-color: var(--hover);
  color: var(--dark);
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #028fcc80;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--accent-color);
  transform: scale(1.2);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .hero-content {
    width: 400px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-content p {
    width: 100%;
  }
  .hero-buttons .btn {
    padding: 12px 20px;
    font-weight: 500;
    letter-spacing: 1px;
  }
}
/* Features Section */
.features-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.features-title {
  color: var(--primary-color);
  font-weight: 400;
  font-size: 32px;
  line-height: 40px;
  text-align: left;
  padding: 0 10px;
  margin-bottom: 28px;
}

.feature-box {
  text-align: center;
  padding: 40px 20px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

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

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
  transform: rotateY(180deg);
}

.feature-box h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
  font-weight: bold;
}

.feature-box p {
  color: #666;
  margin: 0;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .feature-box p {
    min-height: 80px;
  }
}

/* Projects Section */
.projects-section {
  padding: 80px 0;
  background-color: var(--white);
}
@media (min-width: 1200px) {
  .projects-section .container {
    max-width: 1175px;
  }
}

.section-title {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--spacing-2xl);
  position: relative;
  padding-bottom: var(--spacing-md);
  color: var(--secondary-color);
  text-shadow: none !important;
}

.project-card {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
}

.project-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

.project-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-link {
  color: var(--white);
  text-decoration: none;
  padding: 10px 25px;
  border: 2px solid var(--white);
  border-radius: 25px;
  transition: all 0.3s ease;
}

.project-link:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--white);
}

.project-content {
  padding: 20px 10px 0px;
}

.project-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--dark);
  cursor: pointer;
}

.project-content p {
  color: #666;
  margin: 0;
  min-height: 50px;
}

/* Contact Section */
.submit-contact-button {
  justify-content: flex-start !important;
}

.contact-section {
  padding: 100px 0;
  background-color: #f8f9fa;
}
.form-header {
  color: var(--primary-color);
}
.contact-form {
  background: linear-gradient(165deg, #ffffff, #f0f7ff);
  padding: 45px;
  border-radius: 25px;
  box-shadow: 0 25px 50px rgba(27, 62, 109, 0.12),
    inset 0 -2px 10px rgba(255, 255, 255, 0.5),
    inset 0 2px 10px rgba(27, 62, 109, 0.05);
  border: 2px solid rgba(38, 151, 243, 0.1);
  margin-bottom: 30px;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}
.contact-form:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #1b3e6d, #2697f3, #1b3e6d);
  background-size: 200% 100%;
  animation: gradientMove 3s linear infinite;
}
@keyframes gradientMove {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}
.contact-form:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(27, 62, 109, 0.15),
    inset 0 -2px 15px rgba(255, 255, 255, 0.7),
    inset 0 2px 15px rgba(27, 62, 109, 0.05);
  border-color: rgba(38, 151, 243, 0.2);
}
.contact-form h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #1b3e6d;
  font-size: 2.6rem;
  font-weight: 800;
  position: relative;
  letter-spacing: -0.5px;
  text-shadow: 2px 2px 4px rgba(27, 62, 109, 0.1);
}
.field {
  margin-bottom: 28px;
  position: relative;
}
.field:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 0;
  background: linear-gradient(to bottom, #1b3e6d, #2697f3);
  transition: height 0.3s ease, top 0.3s ease;
  border-radius: 3px;
}
.field:focus-within:before {
  height: 70%;
  top: 15%;
}
.field input,
.field textarea {
  width: 100%;
  padding: 18px 25px;
  border: 2px solid #e8eef7;
  border-radius: 15px;
  font-size: 16px;
  color: #1b3e6d;
  background: #ffffff;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 15px rgba(27, 62, 109, 0.05);
}
.field input:hover,
.field textarea:hover {
  border-color: #2697f3;
  background: linear-gradient(to right, #f8fafd, #ffffff);
  transform: translateX(5px);
}
.field input:focus,
.field textarea:focus {
  border-color: #2697f3;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(38, 151, 243, 0.12);
  transform: translateX(8px);
  outline: none;
}
.field input::placeholder,
.field textarea::placeholder {
  color: #1b3e6d;
  opacity: 0.7;
  font-weight: 400;
  font-size: 15px;
}
.field textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}
#button {
  width: 100%;
  padding: 20px;
  background: linear-gradient(135deg, #1b3e6d, #2697f3);
  color: white;
  border: none;
  border-radius: 15px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 15px 30px rgba(27, 62, 109, 0.2);
  animation: buttonPulse 2s infinite;
}
@keyframes buttonPulse {
  0% {
    box-shadow: 0 15px 30px rgba(27, 62, 109, 0.2);
  }
  50% {
    box-shadow: 0 20px 40px rgba(38, 151, 243, 0.3);
  }
  100% {
    box-shadow: 0 15px 30px rgba(27, 62, 109, 0.2);
  }
}
#button:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(27, 62, 109, 0.25);
  background: linear-gradient(135deg, #2697f3, #1b3e6d);
}
#button:hover:before {
  left: 100%;
}
#button:active {
  transform: translateY(-1px);
  box-shadow: 0 8px 15px rgba(27, 62, 109, 0.2);
}

/*start home contact form */
.contact-home-section {
  padding: 100px 0;
  background-color: #f8f9fa;
}
@media (max-width: 767px) {
  .contact-home-section {
    padding: 40px 0;
  }
}

#contact-form-home h4 {
  letter-spacing: -0.3px;
  font-size: 1.375rem;
  line-height: 1.45;
  margin-bottom: 15px;
  font-weight: 600;
}

#contact-form-home .label-inpt {
  text-transform: uppercase;
  letter-spacing: 0.0625rem;
  color: #666;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.1875em;
  transition: all 0.1s ease-in-out;
  display: block;
  position: absolute;
  font-family: Open Sans, Arial, sans-serif;
}
.floating-field {
  position: relative;
  margin-bottom: 28px;
}

#contact-form-home .floating-field input,
#contact-form-home .floating-field textarea,
#contact-form-home .floating-field select {
  width: 100%;
  padding: 1.6875rem 1.25rem 0.5rem;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
  background: #fff;
}

.floating-field input:focus,
.floating-field select:focus,
.floating-field textarea:focus {
  outline: none !important;
  border: solid 2px var(--primary-color) !important;
}

.floating-field .label-inpt {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  color: #888;
  font-size: 13px;
  pointer-events: none;
  transition: all 0.2s ease;
  padding: 0 4px;
}
.floating-field-textarea .label-inpt {
  top: 15%;
}

.floating-field input:focus + label,
.floating-field input:not(:placeholder-shown) + label,
.floating-field textarea:focus + label,
.floating-field textarea:not(:placeholder-shown) + label,
.floating-field select:focus + label,
.floating-field select:valid + label {
  top: 15px !important;
  left: 12px !important;
  font-size: 12px !important;
  color: #666 !important;
}

.floating-field textarea {
  resize: none;
  height: 200px;
}

#contact-home-section .form-check input {
  width: 18px;
  height: 16px;
  border: solid 1px var(--primary-color);
  outline: none;
  cursor: pointer;
}
.contact-home-section .form-check input:focus,
.contact-home-section .form-check input:active {
  outline: none;
  box-shadow: none;
}
.contact-home-section .form-check label {
  letter-spacing: 0;
  margin-left: 0.4375rem;
  font-size: 0.875rem;
  line-height: 1.714;
  color: #666;
  cursor: pointer;
}

.recaptcha-wrapper {
  max-width: 300px;
  margin: 0 auto;
}

.custom-select {
  position: relative;
}

.custom-select select {
  appearance: none; /* Remove default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 10px;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: white;
  font-size: 16px;
}

/* The custom arrow for select */
.custom-select::after {
  content: "▼";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 14px;
  color: #555;
}

#required-text {
  color: #666;
  letter-spacing: 0;
  margin-bottom: 0.9375rem;
  font-size: 15px;
  font-style: italic;
  line-height: 1.714;
}

.contact-home-section .detect-button-contact button {
  background-color: var(--primary-color);
  color: white;
  padding: 12px 55px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}

#button-home:hover {
  background-color: var(--hover);
}
.contact-home-section .detect-button-contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contact-home-section .form-check {
  display: flex;
  justify-content: start;
  align-items: center;
}
.contact-home-section .form-check label {
  width: 75%;
}
@media (max-width: 991px) {
  .contact-home-section .form-check label {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .contact-form-home h2 {
    font-size: 2rem;
  }
  .floating-field input,
  .floating-field textarea,
  .floating-field select {
    font-size: 14px;
  }
  .contact-home-section .detect-button-contact {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
  }
  .contact-home-section .detect-button-contact .btn-div {
    width: 100%;
  }
  .contact-home-section .detect-button-contact #button-home {
    width: 100%;
    margin-top: 20px;
  }
}
/*end home contact form */

/* Contact Info Styling */
.contact-item {
  margin-bottom: 25px;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-item .info h3 {
  color: #1b3e6d;
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 700;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 8px;
}

/* .contact-item .action {

} */

.contact-btn {
  background-color: var(--primary-color);
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.contact-btn:hover {
  background-color: var(--hover);
}
@media (max-width: 576px) {
  .contact-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-item .action {
    margin-top: 15px;
  }
}

/* Footer Styles */
.footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 40px 0;
}

.footer h4 {
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 500;
}

.footer-contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-info li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.footer-contact-info li:hover {
  transform: translateX(10px);
}

.footer-contact-info li i {
  color: var(--white);
  margin-right: 10px;
  margin-top: 4px;
  font-size: 16px;
  min-width: 20px;
}

.footer-contact-info li div {
  color: var(--white);
  font-size: 14px;
  line-height: 1.5;
}

/* Footer About Section */
.footer-about {
  padding-right: 30px;
}

.footer-about p {
  color: #c7c7c7;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 25px;
  font-weight: 400;
}

.footer-about .social-links {
  display: flex;
  gap: 15px;
}

.footer-about .social-links a {
  color: var(--white);
  font-size: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.footer-about .social-links a:hover {
  background: var(--white);
  color: var(--primary-color);
  transform: translateY(-3px);
}

/* Newsletter Section */
.footer-newsletter {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 8px;
}

.footer-newsletter h4 {
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.footer-newsletter h4:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: var(--white);
}

.footer-newsletter p {
  color: var(--white);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-newsletter form {
  position: relative;
  display: flex;
  gap: 10px;
}

.footer-newsletter input {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 15px;
  border-radius: 4px;
  color: var(--white);
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-newsletter input:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  outline: none;
}

.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.footer-newsletter button {
  background: var(--white);
  color: var(--primary-color);
  border: none;
  padding: 12px 25px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-newsletter button:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 60px;
  padding: 15px 0px;
}

.footer-bottom .copyright {
  color: var(--white);
  font-size: 14px;
  text-align: left;
  margin: 0;
}

.footer-bottom .copyright:before {
  content: " ";
  margin-right: 5px;
}

/* News Section */
.news-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.news-item:hover {
  transform: translateX(10px);
}

.news-image {
  width: 50px;
  height: 50px;
  margin-right: 15px;
  overflow: hidden;
  border-radius: 4px;
}

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

.news-content h5 {
  color: var(--white);
  font-size: 14px;
  margin: 0 0 5px;
}

.news-date {
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
}

/* Shortcuts Section */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.footer-links li a:before {
  content: "›";
  margin-right: 10px;
  font-size: 18px;
  transition: all 0.3s ease;
}

.footer-links li a:hover {
  transform: translateX(10px);
  opacity: 1 !important;
  color: #c7c7c7 !important;
}

.footer-links .dropdown-menu {
  background-color: var(--primary-color);
  border: none;
  padding: 10px 0;
}

.footer-links .dropdown-item {
  color: var(--white);
  padding: 8px 20px;
  transition: all 0.3s ease;
}

.footer-links .dropdown-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateX(10px);
}
@media (max-width: 991px) {
  .footer .footer-contact {
    margin-top: 60px;
  }
}
@media (max-width: 767px) {
  .footer .footer-links {
    margin-top: 30px;
  }
  .card-vision p,
  .card-mision p {
    font-size: 18px;
  }
}
/* Working Hours */
.working-hours {
  list-style: none;
  padding: 0;
  margin: 0;
}

.working-hours li {
  color: var(--white);
  font-size: 14px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.working-hours li:hover {
  transform: translateX(10px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .footer {
    padding: 30px 0;
  }

  .footer h4 {
    margin-bottom: 15px;
  }

  .footer-section {
    margin-bottom: 30px;
  }
  footer .col {
    padding-top: 50px;
  }
  footer div {
    font-size: 13px !important;
  }
}

/* Products Section */
.products-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.product-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  /* margin: 0 10px; */
}

.product-card h3 {
  color: var(--primary-color);
  font-size: 1.4rem;
  font-weight: 600;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.product-image {
  position: relative;
  padding-top: 20%;
  overflow: hidden;
}
.product-image {
  position: relative;
  padding-top: 80%;
  overflow: hidden;
}

.product-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-content {
  padding: 20px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--white);
}

.custom-card h3 {
  color: var(--primary-color);
  font-size: 1.3rem;
  font-weight: 600;
}

.btn-view {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 10px;
  border: 2px solid transparent;
}

.btn-view:hover {
  background-color: #00a8e1;
  color: var(--white);
  transform: translateY(-2px);
}

.btn-view:active {
  color: white !important;
}

@media (max-width: 768px) {
  .product-card {
    margin-bottom: 30px;
  }
}

/* Project Buttons */
.project-buttons .btn {
  transition: all 0.3s ease;
}

.project-buttons .btn:hover {
  background-color: var(--white);
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* Product Gallery */
.product-gallery {
  padding: 100px 0;
  background: #f8f9fa;
}

.product-gallery .section-title {
  text-align: center;
}

.gallery-item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

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

.gallery-item img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.gallery-content {
  padding: 20px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.gallery-content-voltage {
  height: 150px;
}

.gallery-content h3 {
  color: var(--primary-color);
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
}

.gallery-content p {
  text-align: center;
  color: #666;
  padding: 0 10px;
}

.gallery-content .btn {
  background: var(--primary-color);
  border: none;
  text-align: center;
  transition: all 0.3s ease;
  color: #fff;
}

.gallery-content .btn:hover {
  background: #00a8e1;
  transform: translateY(-2px);
}
.gallery-content .btn:active {
  color: #fff;
}
@media (min-width: 767px) {
  .product-gallery-container {
    display: flex;
    justify-content: center;
  }
}

.product-gallery .BMS-row {
  display: flex;
  justify-content: center;
}
@media (max-width: 991px) {
  .product-gallery .BMS-row {
    display: flex;
    justify-content: start;
  }
}

/* Responsive Styles */

@media (max-width: 991.98px) {
  .contact-info {
    padding-right: 0;
    margin-bottom: 50px;
  }
}

@media (max-width: 767.98px) {
  .section-title {
    font-size: 32px !important;
    font-weight: 400 !important;
    padding-left: 10px;
    padding-bottom: 15px !important;
  }

  .contact-form-home .section-title {
    padding-left: 0px !important;
  }

  .feature-box {
    margin-bottom: 30px;
  }
}

/* Statistics Section */
.statistics-section {
  background-color: var(--white);
  padding: 80px 0;
}

.stat-item {
  margin-bottom: 30px;
  position: relative;
  padding: 20px;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-item h3 {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
  display: inline-block;
}

.stat-item .plus {
  font-size: 2.5rem;
  color: var(--primary-color);
  font-weight: 700;
  display: inline-block;
  margin-left: 5px;
}

.stat-item p {
  font-size: 1.1rem;
  color: var(--dark);
  margin: 0;
  font-weight: 600;
}

/* News Section */
.news-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.news-item {
  transition: none !important;
  transform: none !important;
}

.news-item div {
  display: flex;
  gap: 10px;
}

.news-item .news-content {
  display: flex;
  flex-direction: column;
}

.news-item img {
  width: 100px;
  height: 100px;
  border-radius: 20px;
}

.news-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  min-height: 582px;
}

.news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.news-content {
  padding: 0 20px 20px 20px;
}

.news-date {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 10px;
}

/* Responsive Navbar */
@media (max-width: 991.98px) {
  .navbar-collapse {
    padding: 20px;
    margin-top: 15px;
    border-radius: 4px;
    border: 1px solid rgb(60, 118, 204);
    text-align: center;
  }

  .nav-item {
    margin: 5px 0;
  }

  .navbar-social {
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    gap: 15px;
  }

  .social-icons {
    justify-content: center;
  }

  .dropdown-menu {
    background-color: transparent;
    border: none;
    padding: 0;
    margin: 0;
  }

  .dropdown-item {
    color: var(--white);
    padding: 8px 15px;
  }

  .dropdown-item:hover {
    background-color: var(--primary-color);
  }
}

/* Production Facilities Section */
.production-facilities {
  position: relative;
  padding: 100px 0;
  background-image: url("../images/production-bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  overflow: hidden;
}

.facilities-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1;
}

.facilities-content {
  position: relative;
  z-index: 2;
}

.facilities-content .section-title {
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 20px;
}

.facilities-content .section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
}

.facility-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid var(--primary-color);
  backdrop-filter: blur(10px);
  transform: translateX(-100%);
  opacity: 0;
  animation: slideIn 0.8s ease forwards;
}

.facility-item:nth-child(2) {
  animation-delay: 0.2s;
}

.facility-item:nth-child(3) {
  animation-delay: 0.4s;
}

.facility-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-right: 20px;
  transform: scale(0);
  animation: scaleIn 0.5s ease forwards;
  animation-delay: 0.8s;
}

.facility-text h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--white);
}

.facility-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

@keyframes slideIn {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .production-facilities {
    padding: 60px 0;
  }

  .facilities-content .section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .facility-item {
    padding: 20px;
    margin-bottom: 20px;
  }

  .facility-icon {
    font-size: 2rem;
  }

  .facility-text h3 {
    font-size: 1.2rem;
  }
}

/* Clients Section */
.clients-section,
.consultants-section {
  padding: 60px 0;
  background: #f8f9fa;
  z-index: 9;
}
.clients-section {
  background-image: url("../images/map.png");
  background-size: cover;
  background-position: center;
}

.client-card {
  text-align: center;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.client-card:hover {
  transform: translateY(-10px);
}

.client-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 20px;
  object-fit: cover;
  text-align: center;
}

@media only screen and (max-width: 600px) {
  .client-card img {
    width: 220px !important;
    height: 80%;
  }
}
@media (min-width: 767px) {
  .clients-title {
    margin-left: -15px !important;
  }
}
.client-card p {
  color: #666;
  margin-bottom: 0;
}

.consultant-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.consultant-card:hover {
  transform: translateY(-10px);
}

.consultant-image {
  height: 250px;
  overflow: hidden;
}

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

.consultant-info {
  padding: 20px;
  text-align: center;
}

.consultant-info h3 {
  color: #333;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.consultant-info p {
  color: #666;
  margin-bottom: 20px;
}

.consultant-info .btn {
  background: var(--primary-color);
  border: none;
  padding: 10px 25px;
  transition: all 0.3s ease;
}

.consultant-info .btn:hover {
  background: #00a8e1;
  transform: translateY(-2px);
}
.clients-card {
  width: calc(25% - 10px);
  margin: 0 5px;
  box-sizing: border-box;
  padding: 10px;
  text-align: center;
}

.clients-card img {
  width: 70%;
  height: 200px;
  border-radius: 10px;
  margin-bottom: 10px;
  text-align: center;
}

.clients-card p {
  font-size: 16px;
  color: #333;
  line-height: 1.4;
}
@media (max-width: 992px) {
  .clients-card {
    flex: 0 0 33.333%;
  }
}
@media (max-width: 768px) {
  .clients-card {
    flex: 0 0 100%;
  }
}

/* Projects Section */
.project-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 5px 10px -3px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translateY(-10px);
}

.project-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-link {
  color: #fff;
  text-decoration: none;
  background: var(--primary-color);
  padding: 10px 25px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.project-link:hover {
  background: #00a8e1;
  color: #fff;
  transform: translateY(-2px);
}

.project-content {
  padding: 20px;
}

.project-content h3 {
  color: #333;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.project-content p {
  color: #666;
  margin-bottom: 0;
}

/* Project Modal */
.modal-content {
  border-radius: 10px;
  overflow: hidden;
}

.modal-header {
  background: var(--primary-color);
  color: #fff;
  border: none;
}

.modal-header .btn-close {
  filter: brightness(0) invert(1);
}

.project-details {
  padding: 20px;
}
.project-details p {
  text-align: justify;
}
.project-details h4 {
  margin: 20px 0 10px;
}

.project-details ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.project-details li {
  color: #666;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .project-details p {
    text-align: start;
  }
}

/* Start Our Project Slider */

/* End Our Project Slider */

/* About Section */
.custom-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px;
}

.about-section .about-content h3 {
  color: var(--primary-color);
}
@media (min-width: 992px) {
  .about-section .about-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .about-section .about-content-contain {
    /* width: 90%; */
    display: flex;
    justify-content: end;
    align-items: center;
  }
  .about-section .about-content-contain .about-content {
    width: 94%;
  }
}
@media (max-width: 991px) {
  /* .about-section .custem-about-gallary{
    display: flex;
    justify-content: space-around;
  } */
  .about-section .custem-about-gallary img {
    width: 77%;
    margin-left: 35px;
  }
  .about-section .about-content-contain {
    margin-top: 30px;
    /* width: 100%; */
    display: flex;
    justify-content: start;
    align-items: center;
  }
  .about-section .about-content-contain .about-content {
    width: 100%;
  }
  .about-content p {
    text-align: left !important;
  }
}
@media (max-width: 767px) {
  .custem-about-gallary {
    padding: 0px;
  }
  .about-section .custem-about-gallary img {
    width: 100%;
    margin-left: 0px;
  }
  .show-first {
    order: 1;
  }
  .show-second {
    order: 2;
  }
}

.gallery-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.image-row {
  display: flex;
  gap: 12px;
}

.image-small {
  height: 150px;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
@media (max-width: 767px) {
  .image-small {
    width: 50%;
  }
  .custom-gallery {
    padding: 0px;
  }
  .custom-gallery img {
    width: 100%;
  }
}
.image-large-horizontal {
  height: 320px;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.image-small:hover,
.image-large-horizontal:hover {
  transform: scale(1.02);
}

.custom-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.lightbox-img-content {
  max-width: 90%;
  max-height: 85%;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 35px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

.about-section {
  padding: 40px 0;
  background: #f8f9fa;
}

.about-content .section-title {
  margin-bottom: 20px;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
}

.about-content .lead {
  text-align: left;
  font-size: 1.25rem;
  /* color: var(--primary-color); */
  margin-bottom: 20px;
}

.values-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.value-card {
  text-align: center;
  padding: 30px 30px 10px 30px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  height: 275px;
}
@media (max-width: 1200px) {
  .value-card {
    height: 330px;
  }
}
@media (max-width: 991px) {
  .value-card {
    height: 275px;
  }
}
@media (max-width: 400px) {
  .value-card {
    height: 300px;
  }
}
@media (max-width: 300px) {
  .value-card {
    height: 340px;
  }
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(30, 136, 229, 0.15);
}

.value-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.value-card h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 15px;
}
.value-card p {
  font-size: 17px;
  text-align: center;
  color: #666;
}
.card-mission p,
.card-vision p {
  font-size: 18px;
}
.team-section {
  padding: 80px 0;
}

.team-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(30, 136, 229, 0.15);
}

.team-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-info {
  padding: 20px;
  text-align: center;
}

.team-info h3 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.team-info p {
  color: var(--secondary-color);
  font-size: 1rem;
  margin-bottom: 15px;
}

.team-info .social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.team-info .social-links a {
  color: var(--primary-color);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.team-info .social-links a:hover {
  color: var(--secondary-color);
  transform: translateY(-2px);
}

/* Shop Page Styles */
.shop-categories {
  padding: 80px 0;
}
#products-shop {
  background: white !important;
}
.categories-sidebar {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.categories-sidebar h3 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent-color);
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.category-list li {
  margin-bottom: 10px;
}

.category-list li a {
  color: var(--dark);
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: block;
  padding: 8px 15px;
  border-radius: 5px;
}

.category-list li.active a,
.category-list li a:hover {
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--white);
}

.price-filter {
  margin-top: 30px;
}

.price-slider {
  margin-top: 20px;
}
.section-title {
  text-align: left;
  font-size: 3rem;
  font-weight: bold;
  color: #193e6d;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  padding-bottom: 50px;
}
.smart-title {
  font-size: 3rem;
  font-weight: bold;
  color: var(--dark);
}

@media (max-width: 767.98px) {
  .smart-title {
    font-size: 32px !important;
    font-weight: 400 !important;
  }
}
.slider {
  width: 100%;
  height: 5px;
  background: var(--accent-color);
  outline: none;
  /* -webkit-appearance: none;*/
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  border-radius: 50%;
  cursor: pointer;
}

.price-range {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  color: var(--dark);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.product-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(30, 136, 229, 0.15);
}

.product-image {
  position: relative;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 136, 229, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-overlay .btn {
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.product-card:hover .product-overlay .btn {
  transform: translateY(0);
}
.product-info h3 {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.product-info .price {
  color: var(--secondary-color);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.product-rating {
  color: #ffc107;
  font-size: 0.9rem;
}

.product-rating span {
  color: var(--dark);
  margin-left: 5px;
}

.pagination-container {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.pagination {
  display: flex;
  gap: 10px;
}

.page-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  border: 1px solid var(--accent-color);
  border-radius: 5px;
  transition: all 0.3s ease;
}

.page-link:hover,
.page-item.active .page-link {
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--white);
  border-color: transparent;
}

/* Page Headers Styling */
.page-header {
  text-align: center;
  /* padding: 100px 0 50px; */
  background: linear-gradient(
    to right,
    rgba(30, 136, 229, 0.05),
    rgba(100, 181, 246, 0.1)
  );
  /* margin-top: 125px ; */
  margin-bottom: 0 !important;
  border-bottom: 1px solid var(--accent-color);
}

.page-header h1 {
  color: var(--primary-color);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.page-header h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
}

.page-header p {
  color: var(--secondary-color);
  font-size: 1.1rem;
  max-width: 800px;
  margin: 20px auto 0;
}

.about-content h2 {
  /* color: var(--primary-color); */
  font-size: 3rem;
  margin-bottom: 25px;
  position: relative;
}
.text-capitalize {
  color: #1e88e5;
}
.about-content .lead {
  color: var(--secondary-color);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.mision i,
.vision i,
.our-parteners p,
.details {
  font-size: 17px;
  color: #666;
  line-height: 1.6;
  font-style: normal;
}
.our-parteners {
  padding-top: 40px;
  padding-bottom: 50px;
}
.our-parteners .partener-image {
  align-content: center;
}
.our-parteners p {
  padding-bottom: 50px;
}
.our-parteners .projects-button {
  padding: 15px 20px;
  border: 1px solid var(--primary-color);
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.8s easeinout;
}

.our-parteners .projects-button:hover {
  background: var(--primary-color);
  color: #fff;
}
/* start value section */
.values-section .value-card p {
  min-height: 80px;
}
/* end value section */

/* News Page Styles */
.news-section {
  padding: 80px 0;
}

.news-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(30, 136, 229, 0.15);
}

.news-card.large {
  margin-bottom: 50px;
}

.news-image {
  position: relative;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.news-card.large .news-image img {
  height: 400px;
}

.news-date {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(30, 136, 229, 0.5);
  color: var(--white);
  padding: 10px 15px;
  border-radius: 5px;
  text-align: center;
}
.news-date:hover {
  background: var(--primary-color);
  transition: all 0.3s ease;
}

.news-date .day {
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.news-date .month {
  font-size: 0.9rem;
  text-transform: uppercase;
}
/* 
.news-content {
  padding: 25px;
} */

.news-category {
  color: var(--secondary-color);
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.news-card h2 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.news-card h3 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.news-card p {
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.6;
}

.news-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  color: var(--secondary-color);
  font-size: 0.9rem;
}

.news-meta span i {
  margin-right: 5px;
}

.read-more {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: var(--secondary-color);
}

.read-more i {
  transition: all 0.3s ease;
}

.read-more:hover i {
  transform: translateX(5px);
}

/* News Sidebar Styles */
.news-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.sidebar-widget h3 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent-color);
}

.search-widget .input-group {
  position: relative;
}

.search-widget input {
  padding: 12px;
  border: 1px solid var(--accent-color);
  border-radius: 5px;
  width: 100%;
}

.search-widget button {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  padding: 0 20px;
  border-radius: 0 5px 5px 0;
}

.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget li {
  margin-bottom: 10px;
}

.categories-widget a {
  color: var(--dark);
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  padding: 10px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.categories-widget a:hover {
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--white);
}

.recent-post {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.recent-post img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 5px;
}

.recent-post-content h4 {
  font-size: 1rem;
  margin-bottom: 5px;
}

.recent-post-content h4 a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.recent-post-content h4 a:hover {
  color: var(--secondary-color);
}

.recent-post-content .date {
  color: var(--secondary-color);
  font-size: 0.9rem;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tags a {
  color: var(--dark);
  text-decoration: none;
  padding: 5px 15px;
  border: 1px solid var(--accent-color);
  border-radius: 20px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.tags a:hover {
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--white);
  border-color: transparent;
}

/* Client Cards */
.client-card {
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.client-card:hover {
  transform: translateY(-5px);
}

.client-card img {
  /* max-width: 120px; */
  margin-bottom: 15px;
  border-radius: 4px;
}

.client-card h3 {
  color: #1e88e5;
  margin-bottom: 8px;
}

/* Project Cards */
.project-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-image {
  position: relative;
  overflow: hidden;
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(30, 136, 229, 0.8);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-content {
  padding: 20px;
}

.project-content h3 {
  color: var(--primary-color);
  margin-bottom: 8px;
}

/* Page Headers */
.page-header {
  background: linear-gradient(
    to right,
    rgba(30, 136, 229, 0.05),
    rgba(100, 181, 246, 0.1)
  );
  padding: 80px 0 50px;
  margin-bottom: 50px;
}

.page-header h1 {
  color: #1e88e5;
  margin-bottom: 15px;
}

.page-header p {
  color: #666;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Product Detail Page */
.product-detail {
  padding: 50px 0;
}
.product-detail li strong {
  font-size: 14px !important;
}

.product-detail .product-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.product-detail .product-image img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.product-detail .product-info {
  padding: 0 20px 20px 20px;
}

.product-detail h1 {
  color: var(--dark);
  margin-bottom: 20px;
  font-size: 2.5rem;
  font-weight: 700;
}

@media (max-width: 767px) {
  .product-detail h1 {
    font-size: 33px !important;
  }
  .product-detail .product-info {
    padding: 30px 0px !important;
  }
  .product-description .d-flex {
    display: block !important;
  }
}

.product-detail .product-description {
  margin-bottom: 30px;
}

.product-detail .product-description h3,
.smart-integration h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin: 20px 0 15px;
  font-weight: 600;
}
.smart-integration p {
  width: 90%;
}

.product-detail .product-description p {
  /* line-height: 1.8; */
  margin-bottom: 15px;

  font-size: 17px;
  color: #666;
  line-height: 1.6;
  font-style: normal;
}

.product-detail .product-description ul {
  /* list-style: none; */
  padding: 0;
  margin: 0 0 0 20px;
}

.product-detail .product-description ul li {
  position: relative;
  /* padding-left: 25px; */
  /* margin-bottom: 10px; */
  color: #666;

  font-size: 14px;
  color: #666;
  line-height: 1.6;
  font-style: normal;
}
.product-detail .product-description ul li::marker {
  color: var(--primary-color);
  font-size: 25px;
}

/* .product-detail .product-description ul li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--primary-color);
  font-size: 14px;
} */

.product-detail .product-cta {
  margin-top: 30px;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
}

.product-detail .product-cta .btn {
  margin-right: 5px;
  padding: 10px 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.product-detail .product-cta .btn-primary {
  background-color: var(--primary-color);
}

.product-detail .product-cta .btn-primary:hover {
  background-color: var(--hover);
  border: none;
}

.product-detail .product-cta .btn:hover {
  transform: translateY(-2px);
  background-color: var(--hover);
}

.product-detail .product-cta .btn-outline-primary {
  border-color: var(--primary-color);
  color: var(--primary-color);
  padding: 10px 21px;
}

.product-detail .product-cta .btn-outline-primary:hover {
  background-color: var(--hover);
  color: var(--white);
  border: none;
}
@media (min-width: 1200px) {
  .product-detail .list-content {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .product-detail .list-content {
    display: flex;
    justify-content: space-between;
  }
}

@media (max-width: 991px) {
  .our-parteners .partener-image {
    margin-top: 50px;
  }
  .our-parteners p {
    padding-bottom: 25px;
  }
}
@media (max-width: 420px) {
  .product-detail .product-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
  }
  .product-detail .product-cta .btn-primary {
    margin-bottom: 15px;
  }
}
/* Vision and Mission Sections */
.vision-section,
.mission-section {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  min-height: calc(100vh - 100px);
}

.vision-content,
.mission-content {
  background: var(--white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.vision-content:hover,
.mission-content:hover {
  transform: translateY(-5px);
}

.vision-card,
.mission-card {
  text-align: center;
  padding: 30px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.vision-card::before,
.mission-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-color);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.vision-card:hover::before,
.mission-card:hover::before {
  transform: scaleX(1);
}

.vision-card:hover,
.mission-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.vision-card i,
.mission-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.vision-card:hover i,
.mission-card:hover i {
  transform: scale(1.1);
}

.vision-card h3,
.mission-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--dark);
  font-weight: 600;
}

.vision-card p,
.mission-card p {
  color: var(--gray);
  margin-bottom: 0;
  line-height: 1.6;
}

.lead {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--dark);
  margin-bottom: 40px;
  text-align: center;
  position: relative;
  padding-bottom: 20px;
}

.lead::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--primary-color);
}

/* Page Headers */
.vision-section h1,
.mission-section h1 {
  color: var(--dark);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.vision-section h1::after,
.mission-section h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-color);
}

/* Social Links */
.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: var(--white);
  color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-logo {
  max-width: 150px;
  height: auto;
  margin-bottom: 15px;
}

.footer p {
  color: #c7c7c7;
  font-size: 0.9rem;
}

/* Social Icons in Navbar */
.social-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 20px;
  padding-left: 20px;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.social-contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.1);
  margin-right: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}
a[href*="x.com"]:hover .fa-x-twitter {
  color: #000 !important;
}

.social-contact a i {
  color: var(--black);
  font-size: 16px;
  transition: all 0.3s ease;
}

.social-contact a:hover {
  background-color: #fff;
}

.social-contact a:hover .fa-facebook-f {
  background: linear-gradient(to bottom, #1877f2, #0d5ab9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.social-contact a:hover .fa-twitter {
  background: linear-gradient(to bottom, #1da1f2, #0c85d0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.social-contact a:hover .fa-linkedin-in {
  background: linear-gradient(to bottom, #0077b5, #005582);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.social-contact a:hover .fa-instagram {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 991px) {
  .social-contact {
    margin: 15px 0 0;
    padding: 15px 0 0;
    border-left: none;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    justify-content: center;
  }
}

/* Contact Form Section */
.contact-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.contact-form-wrapper {
  display: flex;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;

  position: relative;
}

.form-section {
  flex: 1;
  padding: 40px;
  background: #fff;
  min-width: 300px;
  position: relative;
}

.form-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #1b3e6d, #2697f3, #1b3e6d);
  background-size: 200% 100%;
  animation: gradientMove 3s linear infinite;
}

.form-section:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(27, 62, 109, 0.15),
    inset 0 -2px 15px rgba(255, 255, 255, 0.7),
    inset 0 2px 15px rgba(27, 62, 109, 0.05);
  border-color: rgba(38, 151, 243, 0.2);
}

.form-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>')
    repeat;
  opacity: 0.1;
}

.form-section h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #1b3e6d;
  font-size: 28px;
  font-weight: 600;
}

.form-section h2::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #1b3e6d, #2697f3);
  border-radius: 4px;
}

.field {
  margin-bottom: 20px;
  position: relative;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  color: #1b3e6d;
  background: #ffffff;
  transition: all 0.3s ease;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: #1b3e6d;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #1b3e6d;
  box-shadow: 0 0 0 2px rgba(27, 62, 109, 0.1);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  letter-spacing: 1px;
}

.form-group select {
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="white" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 15px center;
  color: rgba(255, 255, 255, 0.7);
}

.form-group select option {
  background: #1b3e6d;
  color: #fff;
  padding: 15px;
}

#button {
  width: 100%;
  padding: 15px;
  background: #1b3e6d;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

#button:hover {
  background: #2697f3;
  transform: translateY(-2px);
}

#button:active {
  transform: translateY(0);
}

.submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
}

.submit-btn:hover {
  background: #2697f3;
  box-shadow: 0 6px 12px rgba(38, 151, 243, 0.3);
  transform: translateY(-2px);
}

.submit-btn:hover::before {
  left: 100%;
}

.contact-info-section {
  flex: 1;
  min-width: 300px;
}
@media (max-width: 992px) {
  .contact-info-section {
    padding: 40px 0;
  }
}
.contact-item {
  display: flex;
  align-items: flex-start;
  /* margin-bottom: 25px; */
}

.contact-item .icon {
  width: 40px;
  height: 40px;
  background: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.contact-item .icon i {
  color: #1b3e6d;
  font-size: 18px;
}

.contact-item .info h3 {
  color: #1b3e6d;
  margin-bottom: 5px;
  font-size: 16px;
}

@media (max-width: 991px) {
  .form-section,
  .contact-info-section {
    flex: 100%;
  }

  .form-section {
    border-radius: 15px 15px 0 0;
  }
}

.address-card {
  padding: 30px 30px 10px 30px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.address-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(30, 136, 229, 0.15);
}
.address-card h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 15px;
}
.contact-info-section p {
  line-height: 0.6;
  padding-top: 5px;
}
/* Start Get In touch Section */
.address-icons ul {
  padding: 0;
  list-style: none;
}

.address-icons ul li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  align-items: center;
}

.address-icons ul li i {
  margin-right: 10px;
  color: #1e88e5;
  border: solid 1px #1e88e5;
  padding: 8px;
  border-radius: calc(100% / 2);
  transition: all 0.8s ease;
}
.address-icons ul li i:hover {
  background: #1e88e5;
  color: #fff !important;
}

.solutions-card {
  width: calc(33.333% - 20px);
  margin: 0 10px;
  position: relative;
  height: 255px !important;
  overflow: hidden;
  border-radius: 8px;
}

@media (max-width: 767px) {
  .solutions-card {
    height: 260px !important;
  }
}

.solutions-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solutions-title {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px;
  font-size: 18px;
  font-weight: 400;
  color: white;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
  z-index: 2;
  text-align: center;
  transition: all 0.4s ease;
}

.solutions-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  padding-top: 50px;
  background: #1e88e5d1;
  color: #fff;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 9;
  height: inherit;
  text-align: center;
}

.solutions-card:hover .solutions-overlay {
  transform: translateY(0);
  opacity: 1;
}

.solutions-overlay-title {
  height: 48px;
  font-size: 22px;
}

.solutions-card:hover .solutions-title {
  opacity: 0;
}

.solutions-overlay p {
  color: #e4e4e4;
  font-weight: 400;
  font-size: 17px;
  line-height: 22px;
  text-align: center;
  margin-top: 12px;
  border-top: 1px solid #fff;
  padding: 12px 12px 0;
}

.solutions-overlay a {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 767px) {
  .solutions-overlay {
    padding-top: 15px;
    padding-bottom: 10px;
  }
  .solutions-overlay-title {
    height: 28px;
    font-size: 20px;
  }
  .solutions-overlay p {
    line-height: 18px;
    margin-top: 10px;
  }
}

.custom-prev,
.custom-next {
  background: none !important;
  border: none !important;
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 10 !important;
  cursor: pointer !important;
}
.custom-prev {
  left: -40px !important;
}
.custom-next {
  right: -40px !important;
}
@media (max-width: 576px) {
  .custom-next,
  .custom-prev {
    display: none !important;
  }
}
.custom-prev img,
.custom-next img {
  width: 30px !important;
  height: auto !important;
  opacity: 1 !important;
  transition: 0.3s ease !important;
}

.slick-dots li button:before {
  display: none !important;
}

.slick-dots {
  bottom: -50px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin-top: 20px !important;
  text-align: center !important;
}

.slick-dots li {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50% !important;
  background-color: #ccc !important;
  border: none !important;
  cursor: pointer !important;
  text-align: center !important;
  margin: 0 3px !important;
}
.slick-dots li.slick-active {
  width: 40px !important;
  height: 15px !important;
  border-radius: 20px !important;
  background-color: #2196f3 !important;
  text-align: center !important;
  transition: all 0.3s ease !important;
}
/* Product carousel */
.card-list .card-item .card-link {
  width: 400px;
  display: block;
  background: #fff;
  padding: 18px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 10px 10px rgb(0, 0, 0, 0.05);
  border: 2px solid transparent;
  transition: 0.5s ease;
}
.card-list .card-item .card-link:hover {
  border-color: var(--primary-color);
}
.card-list .card-item {
  list-style: none;
}
.card-list .card-link .card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
}
.card-list .card-item .p-card-title {
  font-weight: 600;
  margin: 20px 0px 20px 0px;
}
.card-list .card-item Button {
  color: #fff;
  background-color: var(--primary-color);
  padding: 10px 20px;
  font-size: 18px;
  border: none;
  border-radius: 7px;
}

.custom-carousel-card {
  /* flex: 0 0 25%; */
  width: calc(25% - 10px);
  padding: 0px 10px 0px 6px;
  margin: 0 5px;
}

.custom-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 0px 0px 30px;
  overflow: hidden;
  width: 103%;
}
@media (max-width: 767px) {
  .custom-card {
    width: 100%;
  }
}
.custom-card img {
  width: 100%;
  height: 230px;
  border-radius: 8px 0px 0px;
  transition: all 0.8s ease;
  cursor: pointer;
}

.custom-card img:hover {
  transform: scale(1.1);
}

.custom-card h3 {
  margin: 25px 0px 30px;
}

.custom-card a {
  padding: 10px 50px;
  background: var(--primary-color);
  border: none;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.5s ease;
}

@media (max-width: 991px) {
  .custom-card a {
    padding: 10px 16px !important;
  }
  .custom-card img {
    height: 200px !important;
  }
}

.custom-card a:hover {
  background: #00a8e1;
}

strong {
  color: #666;
  font-size: 17px;
}

.new-header,
#knx-page-bg,
.product-detail {
  background-color: #f8f9fa;
}
.new-header-content {
  background: linear-gradient(
    to right,
    rgba(30, 136, 229, 0.05),
    rgba(100, 181, 246, 0.1)
  );
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 8px;
  width: fit-content;
  padding: 10px 15px;
  border-radius: 50px;
}
.about-hero .new-header-content,
.contact-hero .new-header-content {
  background: none;
}
.new-header-content a {
  cursor: pointer;
  color: black;
  display: flex;
  align-items: center;
}
.new-header .new-header-arrow-home,
small {
  font-size: 13px;
}

.new-header .new-header-arrow-home a:hover {
  color: var(--primary-color);
}

.new-header .new-header-arrow-home:hover {
  color: var(--hover);
}
.new-header-arrow-home {
  color: var(--primary-color);
}
.new-header .new-header-arrow-icon {
  font-size: 11px;
  color: #666;
  margin: 0 15px;
}
.new-header-content a small {
  transition: 0.3s;
  color: #666;
}
.new-header-content small {
  font-weight: bolder;
}
.new-header-content a small:hover {
  color: var(--primary-color) !important;
}
.current-page-color {
  font-weight: bold;
  color: var(--dark);
}

@media (max-width: 576px) {
  .new-header .new-header-arrow-icon {
    margin: 0 8px;
  }
}

.project-card-slider {
  width: calc(33.333% - 20px);
  box-sizing: border-box;
  margin: 0 10px;
}

/* start feedback toggle */

.feedback-toggle-wrapper {
  position: absolute;
  top: 50%;
  right: -350px;
  width: 350px;
  padding: 20px;
  transform: translateY(-50%);
  background-color: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  z-index: 1000;
}
.open {
  right: 0;
}

.feedback-toggle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 100%;
  background-color: var(--primary-color);
  color: white;
  padding: 5px 10px;
  cursor: pointer;
  writing-mode: sideways-lr;
  text-align: center;
}
@media (max-width: 767px) {
  .feedback-toggle {
    top: 150%;
  }
}

.feedback-toggle-wrapper h5 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
  color: black;
}
.stars {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.stars .feedback-star {
  font-size: 30px;
  color: #ccc;
  cursor: pointer;
  margin: 0 3px;
  transition: color 0.2s;
}

.stars i.selected,
.stars i:hover {
  color: #f39c12;
}

.feedback-box .labels {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-top: 8px;
  color: #666;
}

.feedback-toggle-wrapper .btn-box {
  display: flex;
  justify-content: end;
  align-items: center;
  margin-top: 20px;
}
.feedback-toggle-wrapper .nextBtn {
  padding: 5px 15px;
  background-color: #eaeaea;
}
.nextBtnBg {
  background-color: var(--primary-color) !important;
  color: white;
}

.massage-box textarea {
  width: 100%;
  height: 100px;
  padding: 10px 20px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
  background: #fff;
}
.massage-box textarea:focus {
  outline: none;
  border: solid 2px var(--primary-color);
}

.feedback-toggle-wrapper .close-box button {
  width: 100%;
  padding: 10px;
  background-color: var(--primary-color);
  color: white;
}
.clients-img {
  margin: auto;
}
@media (max-width: 768px) {
  .feedback-toggle-wrapper {
    width: 300px;
    right: -300px;
    padding: 15px;
  }

  .feedback-toggle-wrapper.open {
    right: 0;
  }
  .feedback-toggle-wrapper h5 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 15px;
  }
  .stars .feedback-star {
    font-size: 25px;
    margin: 0 0px;
  }

  .feedback-box .labels {
    font-size: 13px;
    margin-top: 6px;
  }
  .feedback-toggle-wrapper .btn-box {
    margin-top: 15px;
  }

  .feedback-toggle-wrapper .nextBtn {
    padding: 3px 10px;
    font-size: 14px;
  }

  .massage-box textarea {
    height: 80px;
    padding: 5px 15px;
    border-radius: 3px;
  }

  .feedback-toggle-wrapper .close-box button {
    padding: 7px;
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .feedback-toggle-wrapper {
    width: 250px;
    right: -250px;
    padding: 15px 10px;
  }

  .feedback-toggle-wrapper.open {
    right: 0;
  }
  .feedback-toggle-wrapper h5 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  .stars .feedback-star {
    font-size: 25px;
    margin: 0 0px;
  }
}

/* end feedback toggle */

@media (max-width: 576px) {
  .feedback-toggle-wrapper {
    width: 250px;
    right: -250px;
    padding: 15px 10px;
  }

  .feedback-toggle-wrapper.open {
    right: 0;
  }
  .feedback-toggle-wrapper h5 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  .stars .feedback-star {
    font-size: 25px;
    margin: 0 0px;
  }
  .new-header .new-header-arrow-icon {
    margin: 0 8px;
  }
  .custom-next,
  .custom-prev {
    display: none !important;
  }
  .news-content {
    padding: 10px 20px 20px 20px;
  }
}
/* Combined media query for max-width: 767.98px */
@media (max-width: 767.98px) {
  /* All rules from previous @media (max-width: 767px) and (max-width: 767.98px) go here */
  /* Social links */
  .social-links {
    margin-top: 20px;
  }
  .about-hero .new-header-content,
  .contact-hero .new-header-content {
    padding: 10px 10px 10px 0;
  }
  .about-hero .new-header,
  .contact-hero .new-header {
    background: rgb(0, 0, 0, 0.5);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0 !important;
  }

  /* Hero section and slides */
  .about-hero,
  .contact-hero {
    height: 40vh !important;
    min-height: 20vh;
  }
  .home-section {
    height: 100vh !important;
  }
  .home-section .hero-slide {
    height: 100vh !important;
  }
  .hero-section.home-section {
    margin-bottom: 0 !important;
    height: 86vh !important;
    min-height: 86vh !important;
    padding: 0 !important;
    display: flex;
    align-items: stretch;
  }
  .hero-slider {
    main-height: fit-content;
  }
  .hero-content {
    width: 300px;
    position: absolute;
    top: 50%;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
    width: 100%;
  }
  .hero-buttons {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .hero-buttons .btn {
    padding: 10px 18px;
    font-weight: 400;
    font-size: 10px;
    letter-spacing: 0.6px;
    margin-bottom: 15px;
    width: fit-content;
  }
  .hero-buttons .btn-primary {
    margin-right: 5px !important;
  }
  .btn-special-size {
    font-size: 9px !important;
  }
  .hero-btn-vision {
    padding: 10px 25px !important;
  }
  .news-content {
    padding: 10px 20px 20px 20px;
  }
  .collapse.navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    background: #043f5f;
    z-index: 999;
  }
  /* Contact section */
  .contact-home-section {
    padding: 40px 0;
  }
  /* Footer */
  .footer .footer-links {
    margin-top: 30px;
  }
  .card-vision p,
  .card-mision p {
    font-size: 18px;
  }
  /* Section title */
  .section-title,
  .smart-title {
    font-size: 32px !important;
    font-weight: 400 !important;
    padding-bottom: 15px !important;
  }
  .contact-form-home .section-title {
    padding-left: 0px !important;
  }
  .feature-box {
    margin-bottom: 30px;
  }
  /* Project details */
  .project-details p {
    text-align: start;
  }
  /* Solutions card */
  .solutions-card {
    height: 260px !important;
  }
  .solutions-overlay {
    padding-top: 15px;
    padding-bottom: 10px;
  }
  .solutions-overlay-title {
    height: 28px;
    font-size: 20px;
  }
  .solutions-overlay p {
    line-height: 18px;
    margin-top: 10px;
  }
  /* Custom card */
  .custom-card {
    width: 100%;
  }
  .product-detail .row > :nth-child(1) {
    padding-right: 20px !important;
  }
  .product-detail .row > :nth-child(2) {
    padding-left: 20px !important;
  }
}

@media (max-width: 768px) {
  .feedback-toggle-wrapper {
    width: 300px;
    right: -300px;
    padding: 15px;
  }

  .clients-card img {
    width: 100%;
    height: 100%;
  }

  .clients-card p {
    position: relative;
    top: -48px;
  }
  .client-slider .slick-dots {
    position: relative;
    bottom: 50px !important;
  }
  .clients-card p.clients-orascom {
    top: -100px;
  }
  
  .about-section {
    padding-top: 8px !important;
  }
  .contact-home-section {
    padding-top: 16px !important;
  }
  .padding-left {
    padding-left: 2px;
  }
  .nav-link {
    color: var(--white);
  }
  .feedback-toggle-wrapper.open {
    right: 0;
  }
  .feedback-toggle-wrapper h5 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 15px;
  }
  .stars .feedback-star {
    font-size: 25px;
    margin: 0 0px;
  }

  .feedback-box .labels {
    font-size: 13px;
    margin-top: 6px;
  }
  .feedback-toggle-wrapper .btn-box {
    margin-top: 15px;
  }

  .feedback-toggle-wrapper .nextBtn {
    padding: 3px 10px;
    font-size: 14px;
  }

  .massage-box textarea {
    height: 80px;
    padding: 5px 15px;
    border-radius: 3px;
  }

  .feedback-toggle-wrapper .close-box button {
    padding: 7px;
    font-size: 14px;
  }
  .solutions-wrapper {
    margin-top: 50px;
  }
}
/* Combined media query for max-width: 991.98px */
@media (max-width: 991.98px) {
  /* All rules from previous @media (max-width: 991px) and (max-width: 991.98px) go here */
  .custom-card a {
    padding: 10px 16px !important;
  }
  .custom-card img {
    height: 200px !important;
  }
}

/* Combined media query for min-width: 768px */
@media (min-width: 768px) {
  footer .social-links {
    float: right;
  }
}

/* Combined media query for min-width: 992px */
@media (min-width: 992px) {
  /* All rules from previous @media (min-width: 992px) go here */
}

/* Combined media query for max-width: 1200px */
@media (max-width: 1200px) {
  /* All rules from previous @media (max-width: 1200px) go here */
}

/* Combined media query for min-width: 1200px */
@media (min-width: 1200px) {
  /* All rules from previous @media (min-width: 1200px) go here */
}

/* Combined media query for min-width: 1200px and max-width: 1399.98px */
@media (min-width: 1200px) and (max-width: 1399.98px) {
  /* All rules from previous @media (min-width: 1200px) and (max-width: 1399.98px) go here */
}
@media (max-width: 1400px) {
  /* All rules from previous @media (max-width: 1400px) go here */
  .custom-card img {
    height: 250px !important;
  }
  .custom-card a {
    padding: 10px 20px !important;
  }
}
