.body {}

.upper_nav {
  display: flex;
  flex-direction: row;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

header {
  background-color: #002f5f;
  color: white;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

header .right span {
  /* margin-left: 20px; */
  cursor: pointer;
}

header .right i {
  margin-right: 5px;
}

/* Make header and nav fixed on top */
header,
nav {
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Right section styling */
header .right {
  display: flex;
  align-items: center;
  /* gap: 15px; */
  padding: 10px 20px;
}

header .right span {
  position: relative;
  padding: 0 10px;
  font-size: 14px;
  color: #fff;
}

/* Vertical line */
header .right span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 16px;
  width: 1px;
  background-color: #ccc;
}


nav {
  background-color: white;
  border-bottom: 1px solid #ccc;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width:425px) {
  header .right span {
    position: relative;
    padding: 0 10px;
    font-size: 8px;
    color: #fff;
}
#contactUsFooter h2{
  font-size: 19px !important;
}
}

.logo img {
  height: 40px;
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links li {
  list-style: none;
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: #800000;
  font-weight: bold;
  font-size: 15px;
  text-transform: uppercase;
  padding: 8px;
  display: block;
}

.nav-links a:hover {
  text-decoration: none !important;
}

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  background-color: white;
  top: 100%;
  left: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 100;
}

.nav-links li:hover .dropdown {
  display: block;
}

.dropdown a {
  padding: 10px 15px;
  color: #800000;
  white-space: nowrap;
}

.dropdown a:hover {
  background-color: #f0f0f0;
}

/* Mobile menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle div {
  width: 25px;
  height: 3px;
  background-color: #800000;
  margin: 4px 0;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links .dropdown {
    position: static;
    box-shadow: none;
  }
}

/* Mobile dropdown toggle fix */
@media (max-width: 768px) {
  .dropdown {
    display: none;
  }

  .dropdown.show-dropdown {
    display: block;
  }
}

.carousel-caption {
  top: 30%;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  /* vertical center */
  justify-content: flex-start;
  /* horizontal alignment (left); use center if needed */
  text-align: left;
  padding-left: 5%;
  padding-right: 5%;
}


.gen-btn a {
  background-color: red;
  padding: 10px 30px;
  border-radius: 20px;
  text-decoration: none;
  color: #fff;
}

.gen-title {
  color: #760000;
  font-size: 36px;
  font-weight: 600;
}

.gen-para {
  color: #5a5a5a;
  font-size: 20px;
  font-weight: 600;
}

.text-center {
  text-align: center !important;
}

.about-section {
  margin-top: 50px;
  margin-bottom: 50px;
}

.about-photos {
  background-color: #ffffff;
  /* or any light color */
  border: 1px solid #ddd;
  /* light border */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  /* soft shadow */
  padding: 10px;
  border-radius: 8px;
  /* rounded corners (optional) */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-photos:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.about-cat-h3 {
  padding-top: 5px;
  font-size: 25px;
}

.image-align-center {
  text-align: center;
  justify-content: center;
}

.contact-center-page-slider {
  background-image: url(../img/footerimage.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  /* this makes background fixed */
  padding: 100px 0;
  /* add padding to give height */
  color: white;
  /* ensure text is visible */
  position: relative;
  z-index: 1;
}

.contact-center-page-slider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  /* optional overlay for text readability */
  z-index: -1;
}

.contact-scroll {
  color: #fff;
  text-shadow: 3px 3px 10px #000;
  font-size: 30px;
  font-weight: 700;
}

.contact-scroll-btn {
  background-color: #002f5f;
  padding: 20px;
  color: #fff;
  font-size: 25px;
}

.contact-scroll-btn:hover {
  background-color: #063e76;
  padding: 20px;
  color: #fff;
  font-size: 25px;
}

a {
  text-decoration: none;
}

.icon-box {
  width: 80px;
  height: 80px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.icon-box img {
  width: 40px;
  height: 40px;
}

.bg-teal {
  background-color: #009688;
}


/* feauture live projects---- */

.icon-box-with-text {
  width: 100%;
  height: 180px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.icon-bg {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  /* filter: brightness(0.6); */
  transition: transform 0.5s ease;
}

.icon-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  /* background: rgba(0, 0, 0, 0.3); */
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 50px;
  padding-bottom: 10px;
}

.icon-center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
}

.animate-text,
.animate-icon {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.icon-box-with-text:hover .animate-text,
.icon-box-with-text:hover .animate-icon {
  opacity: 1;
  transform: translateY(0);
}


/* testimonials */

.testimonials-section {
  text-align: left;
}

.testimonials-home-h {
  padding: 50px 20px 10px 50px;
}

.testimonials-home-h h2 {
  font-size: 40px;
  font-weight: 900;
  color: #000;
}

.testimonials {
  /* padding: 40px 0; */
  /* background: #f1f1f1; */
  color: #434343;
  text-align: center;
}

.testimonial-inner {
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
  padding: 0 20px;
}

.border {
  width: 160px;
  height: 5px;
  background: #6ab04c;
  margin: 26px auto;
}

/* testimonials start*/

.testimonial {
  background: #fff;
  padding: 30px;
  /* border: 5px solid grey; */
  /* box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.3); */
}

.testimonial img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.name {
  font-size: 20px;
  text-transform: uppercase;
  margin: 20px 0;
}

.stars {
  color: #f0932b;
  margin-bottom: 20px;
}

@media screen and (max-width: 960px) {
  .col {
    flex: 100%;
    max-width: 80%;
  }
}

.google-reviews-section {
  display: flex;
  flex-direction: row;
}

/* testimonials end */

/* footer. */

.footer a {
  color: #666;
}

#contactUsFooter {
  background-color: rgba(231, 231, 231, .7);
  height: 40px;
  transition: background-color 1s linear;
  cursor: pointer;
  margin-top: 25px;
}

.light .footer {
  background-color: #f7f7f7;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #d1d1d1;
  position: relative;
}

.footer {
  font-size: 14px;
  color: #999;
}

.footer {
  padding: 30px 0;
  background-color: #262626;
  border-top: 1px solid #3a3a3a;
  border-bottom: 1px solid #333;
}

.light .footer,
.light .footer h1,
.light .footer h2,
.light .footer h3,
.light .footer h4,
.light .footer h5,
.light .footer h6 {
  color: #666;
  /* font-weight: 700; */
}

.light .footer h5 {
  font-weight: 700;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.footer-link-list li,
.input-group {
  margin-bottom: 15px;
}

li {
  font-size: 14px;
  line-height: 1.2;
  /* margin-bottom: 4px; */
}

dl, ol, ul {
  margin-top: 0;
  margin-bottom: 0rem;
}

.social_icons a {
  padding: 10px;
}

.light .subfooter {
  background-color: #e7e7e7;
}

@media (min-width: 992px) {
  .subfooter {
    text-align: left;
  }
}

.subfooter {
  padding: 25px 0;
  background-color: #000;
}

.subfooter {
  font-size: 14px;
}

@media (min-width: 768px) {
  .subfooter {
    text-align: center;
  }
}



/* product banner */

.product-banner {
  background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0)),
    url(../img/banner/productsbanner.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 60vh;
  position: relative;
}

.about-banner{
  background-image:
  linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0)),
  url(../img/banner/Aboutusbanner.png);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
min-height: 50vh;
position: relative;
}

.service-banner{
  background-image:
  linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0)),
  url(../img/banner/Servicesbanner.png);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
min-height: 50vh;
position: relative;
}

.product-title {
  text-align: left;
  color: #fff;
  margin: 60px 0px;
}

.product-title h2 {
  color: #fff;
  margin: 0;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, .5);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}

.product-title p {
  color: #fff;
  margin: 0;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, .5);
  font-size: 20px;
  line-height: 1.2;
}

.product-list h5>a:not(.onlyTag)::after {
  font-family: FontAwesome;
  content: "\f105";
  margin-left: 10px;
  position: relative;
  display: inline-block;
  transition: transform 0.3s ease-in-out;
}

/* Animate arrow on hover */
.product-list h5>a:not(.onlyTag):hover::after {
  transform: translateX(5px);
  /* Move arrow slightly to the right */
}

/* Optional: Change link color on hover */
.product-list h5>a:not(.onlyTag):hover {
  color: #760000;
}

.hr-product {
  color: #d0cfcf;
  text-align: center;
  height: 0.1px;
  margin: 20px 0px;
}

.product-row {
  margin: 30px 0px;
}

.product-list h5 {
  font-size: 18px;
}

.product-list ul,
p {
  color: #6c757d;
}

.product-detail-title{
  font-size: 50px;
  color: #760000;
  font-weight: 800;
  text-align: center;

}

.system-vertical{
  margin: 40px 0px;
}

.product-detail-head{
  font-size: 15px;
  color: #ddd;
  font-weight: 800;
  text-align: left;
}

.product-spec{
  list-style: none;
}

.product-spec li a, i{
  color: #000;
  padding: 4px;
}

.product-spec li{
  display: flex;
  flex-direction: row;
}

.gallery-products{
  margin: 40px 0px;
}

.alignself-center{
  align-self: center;
}

.map-align{
  margin: 0px;
padding: 0;
}

/* --contact form */

#contact{
  padding:10px 0 10px;
}

.contact-text{
  margin:45px auto;
}

.mail-message-area{
  width:100%;
  padding:0 15px;
}

.mail-message{
  width: 100%;
  background:rgba(255,255,255, 0.8) !important;
  -webkit-transition: all 0.7s;
  -moz-transition: all 0.7s;
  transition: all 0.7s;
  margin:0 auto;
  border-radius: 0;
}

.not-visible-message{
  height:0px;
  opacity: 0;
}

.visible-message{
  height:auto;
  opacity: 1;
  margin:25px auto 0;
}

/* Input Styles */

.form{
  width: 100%;
  padding: 15px;
  background:#f8f8f8;
  border:1px solid rgba(0, 0, 0, 0.075);
  margin-bottom:25px;
  color:#727272 !important;
  font-size:13px;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.form:hover{
  border:1px solid #8BC3A3;
}

.form:focus{
  color: white;
  outline: none;
  border:1px solid #8BC3A3;
}

.textarea{
  height: 200px;
  max-height: 200px;
  max-width: 100%;
}

/* Generic Button Styles */

.button{
  padding:8px 12px;
  background:#0A5175;
  display: block;
  width:120px;
  margin:10px 0 0px 0;
  border-radius:3px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  text-align:center;
  font-size:0.8em;
  box-shadow: 0px 1px 4px rgba(0,0,0, 0.10);
  -moz-box-shadow: 0px 1px 4px rgba(0,0,0, 0.10);
  -webkit-box-shadow: 0px 1px 4px rgba(0,0,0, 0.10);
}

.button:hover{
  background:#8BC3A3;
  color:white;
}

/* Send Button Styles */

.form-btn{
  width:180px;
  display: block;
  height: auto;
  padding:15px;
  color:#fff;
  background:#8BC3A3;
  border:none;
  border-radius:3px;
  outline: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  margin:auto;
  box-shadow: 0px 1px 4px rgba(0,0,0, 0.10);
  -moz-box-shadow: 0px 1px 4px rgba(0,0,0, 0.10);
  -webkit-box-shadow: 0px 1px 4px rgba(0,0,0, 0.10);
}

.form-btn:hover{
  background:#111;
  color: white;
  border:none;
}

.form-btn:active{
  opacity: 0.9;
}
center{
margin-top:330px;
}
input {
  position: relative;
}

.fa-lg {
  font-size: 1.25em;
  line-height: 1em !important;
  vertical-align: -.075em;
}

.product-detail-ul {
padding: 20px 20px;
}