:root {
  --padding-top: 80px;
  --padding-bottom: 80px;
/*   --light-blue: #09E8F7; */
	--light-blue: #60A5FA;
  --another-blue: #0277fe;
/*   --dark-blue: #000063; */
	--dark-blue: #1E3A8A;
  --bold-blue: #00022C;
/*   --black-color: #000; */
	--black-color: #1F2937;
  --white-color: #fff;
	
	--background:#F8FAFC;
	--Primary-Accent: #1E3A8A;
	--Secondary-Accent: #60A5FA;
	--Text: #1F2937;
	--btn-hover:#0EA5E9;
	
}

*,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

a {
  text-decoration: none;
}

.container-main {
  max-width: 1320px;
  margin: 0 auto;
}

html,body {
  overflow-x: hidden;
}


body {
  font-family: "Ubuntu Sans", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Rajdhani", sans-serif;
}

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


.about-us-heading h1,
.home-why-choose-us-heading h1,
.contact-us-page-text h1,
.testimonails-heading h1,
.expertise-exports-heading h1,
.unified-approach-heading h1,
.home-products-heading h1 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--Primary-Accent);
  margin-bottom: 20px;
  text-transform: uppercase;
  text-align: center;
  position: relative;
}

.about-us-heading h1::after,
.home-why-choose-us-heading h1::after,
.contact-us-page-text h1::after,
.testimonails-heading h1::after,
.expertise-exports-heading h1::after,
.unified-approach-heading h1::after,
.home-products-heading h1::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--Secondary-Accent);
  margin: 2px auto 0;
  border-radius: 2px;
}









.main-header {
  padding: 5px 0px;
  position: relative;
  z-index: 2;
  border-bottom: 1px solid rgba(35, 41, 81, 0.1);
}

.main-header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 10;
}

.mob-header {
  display: none;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-left {
  max-width: 90px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-main {
  background: var(--dark-blue);
  padding: 4px 0px;
}

.top-bar-left ul {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-bar-left ul li {
  font-size: 14px;
  line-height: 1;
  color: var(--white-color);
  font-weight: 500;
}

.top-bar-left ul li a {
  color: var(--white-color);
}

.top-bar-left ul li i {
  text-align: center;
  color: var(--white-color);
  font-size: 14px;
  margin-right: 5px;
}

.social-media-icon {
  display: flex;
  gap: 15px;
}

.social-media-icon i {
  color: var(--white-color);
  font-size: 14px;
  margin-right: 5px;
}

.header-links {
  display: flex;
  justify-content: space-between;
  /* margin-top: 12px; */
}

.header-links ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-links ul li {
  color: var(--dark-blue);
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
}

.header-links ul li.active a,
.header-links ul li:hover a {
  color: var(--light-blue);
}

.header-links ul li a {
  color: var(--dark-blue);
}


.quote-btn a {
  display: inline-block;
  width: 8em;
  height: 3em;
  line-height: 3em;
  text-align: center;
  background: var(--dark-blue);
  color: var(--white-color);
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  z-index: 1;
  overflow: hidden;
  text-decoration: none;
}

.quote-btn a:hover {
  color: var(--dark-blue);
}

.quote-btn a::after {
  content: "";
  background: var(--btn-hover);
  position: absolute;
  z-index: -1;
  left: -20%;
  right: -20%;
  top: 0;
  bottom: 0;
  transform: skewX(-45deg) scale(0, 1);
  transition: all 0.5s;
  border-radius: 8px;
}

.quote-btn a:hover::after {
  transform: skewX(-45deg) scale(1, 1);
}


.home-banner-main,
.home-banner-slider {
  position: relative;
}

.home-banner-bg {
  height: 650px;
  position: relative;
}

.home-banner-bg::before {
  position: absolute;
  content: "";
  background-color: var(--black-color);
  width: 100%;
  height: 100%;
  opacity: 0.3;
  top: 0;
  left: 0;
}

.home-banner-info {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.home-banner-info .container-main {
  height: 100%;
}

.home-banner-content {
  display: flex;
  flex-flow: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  max-width: 800px;
}

.home-banner-content h1 {
  font-size: 55px;
  line-height: 62px;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.home-banner-content p {
  font-size: 22px;
  line-height: 32px;
  font-weight: 400;
  color: var(--white-color);
  margin-bottom: 30px;
}

.btn-flex {
  display: flex;
  gap: 10px;
}


.home-btn-flex {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  width: 100%;
  z-index: 1;
  padding: 0px 40px;
}

.home-btn-flex button {
  height: 55px;
  width: 55px;
  background: rgba(255, 255, 255, 0.2) !important;
  opacity: 1;
  border-radius: 30px;
  border: unset;
}

.home-btn-flex button:hover {
  background: var(--light-blue) !important;
}

.home-btn-flex img {
  width: 20px !important;
  height: 20px !important;
  filter: invert(1);
}

.home-about-us-main {
  padding-top: var(--padding-top);
  padding-bottom: var(--padding-bottom);
	background-color:var(--background);
}

.home-about-us-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.home-about-us-left,
.home-about-us-right {
  width: 50%;
}

.home-about-us-left {
  height: 550px;
}

.home-about-us-left img {
  border-radius: 10px;
}

.home-about-us-right {
  padding-left: 40px;
}

.home-about-content p {
  font-size: 18px;
  color:var(--black-color);
  font-weight: 500;
  margin-bottom: 10px;
}


/* .home-about-content ul li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-color);
  font-weight: 400;
  margin-bottom: 15px;
}

.home-about-content ul li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 16px;
  color: var(--orange-color);
  font-weight: bold;
} */

.about-us-heading h1 {
  text-align: left;
}

.about-us-heading h1::after {
  position: absolute;
  content: "";
  height: 4px;
  width: 50px;
  background-color: var(--Secondary-Accent);
  bottom: 0;
  z-index: 1;
}

.about-btn {
  margin-top: 25px;
}

.unified-approach-main {
  padding-top: var(--padding-top);
  padding-bottom: var(--padding-bottom);
  background-color: var(--background);
}

.unified-approach-heading p {
  color: var(--dark-blue);
  text-align: center;
  font-size: 22px;
  font-weight: 500;
  margin-top: 30px;
}

.unified-approach-flex {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}

.unified-approach-block {
  width: 33.33%;
  padding: 15px;

}

.unified-approach-inner {
  border-radius: 12px;
  background-color: var(--white-color);
  padding: 25px;
  height: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.unified-approach-inner h3 {
  color: var(--dark-blue);
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

.unified-approach-inner p {
  color: var(--dark-blue);
  text-align: center;
  font-size: 18px;
  font-weight: 500;
}





.home-products-main {
  padding-top: var(--padding-top);
  padding-bottom: var(--padding-bottom);
  /* background-color: #f5f5f5; */
	background:var(--background);
}

.home-products-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: -15px;
  margin-top: 40px;
}

.home-products-block {
  width: 33.33%;
  padding: 15px;
}

.home-products-bg {
  height: 320px;
  overflow: hidden;
}

.home-products-bg img {
  margin-left: 30px;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.home-products-block:hover .home-products-bg img {
  margin-left: 0;
}

.home-products-content {
  background-color: var(--dark-blue);
  padding: 10px 30px;
}

.home-products-content h4 {
  font-size: 32px;
  /* font-style: normal; */
  line-height: 36px;
  color: var(--white-color);
}

.home-products-content h4 a {
  color: var(--white-color);
}

.many-more-block {
  background-color: var(--dark-blue);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 375px;
}

.many-more-block h3 {
  font-size: 46px;
  /* font-style: normal; */
  line-height: 36px;
  color: var(--white-color);
  font-weight: 600;
}

.many-more-block h3 a {

  color: var(--white-color);
}






.home-stats {
  background: var(--dark-blue);
  padding: 30px 0;
}

.home-stats-flex {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
}

.home-stats-block {
  width: 50%;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
}

.home-stats-block img {
  width: 60px;
  height: 60px;
  float: left;
  padding-bottom: 12px;
  object-fit: scale-down;
  filter: invert(1);
}

/* 
.stats-info {
  float: left;
} */

.stats-info h4 {
  font-size: 36px;
  color: var(--white-color);
  font-weight: bold;
  line-height: 1;
  position: relative;
  text-align: center !important;
  font-family: "Rajdhani", sans-serif !important;
}

.stats-info p {
  font-size: 16px;
  color: var(--white-color);
  line-height: 1.688;
  text-align: center !important;
}

.home-stats-block:nth-child(1) .stats-info h4::after {
  content: "+";
  position: absolute;
  right: 32px;
  font-size: 36px;
  font-weight: bold;
  color: var(--white-color);
  bottom: 2px;
}

/* .home-stats-block:nth-child(2) .stats-info h4::after {
  content: " sq ft";
  position: absolute;
  right: -46px;
  font-size: 20px;
  font-weight: normal;
  color: var(--white-color);
  bottom: 2px;
} */

.home-stats-block:nth-child(2) .stats-info h4::after {
  content: "%";
  position: absolute;
  right: 36px;
  font-size: 36px;
  font-weight: bold;
  color: var(--white-color);
  bottom: 2px;
}

.odometer.odometer-auto-theme,
.odometer.odometer-theme-default {
  display: unset;
  vertical-align: unset;
  position: relative;
}

.home-why-choose-us-main {
  padding-top: var(--padding-top);
  padding-bottom: var(--padding-bottom);
  background-color: var(--background);
}
.home-why-choose-us .our-services-flex{
	 grid-template-columns: repeat(3, 1fr);
	 display: grid;
  gap: 25px;
  padding-top: 30px;
}
.contact-page-services .our-services-flex {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  padding-top: 30px;
}


.our-services-block {
  background-color: var(--white-color);
  border-radius: 4px;
  padding: 32px 24px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: left;
  transform: translateY(0);
}

.our-services-block:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-10px);
  background-color: var(--dark-blue);
  color: var(--white-color)
}

.our-services-block:hover .our-services-heading h3,
.our-services-block:hover .ours-services-content p,
.our-services-block:hover .read-more-link a {
  color: var(--white-color);
  cursor: pointer;
}

.our-services-icons {
  width: 80px;
  height: 80px;
  background-color: var(--light-blue);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

.our-services-icons img {
  width: 38px;
  height: auto;
}

.our-services-heading h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--black-color);
  transition: color 0.3s ease;
}

.ours-services-content p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--black-color);
  /* margin-bottom: 16px; */
  transition: color 0.3s ease;
  font-weight: 500;
}

.expertise-exports-main {
  padding-top: var(--padding-top);
  padding-bottom: var(--padding-bottom);
}

.expertise-exports-flex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 40px;
}

.expertise-exports-left,
.expertise-exports-right {
  width: 50%;
}

.expertise-exports-left img {
  border-radius: 12px;
}

.expertise-exports-right {
  padding-left: 40px;
}

.expertise-exports-right-content h2 {
  color: var(--dark-blue);
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 30px;
}

.expertise-exports-right-content p {
  color: var(--black-color);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 30px;
}






.testimonials-main {
  padding-top: var(--padding-top);
  padding-bottom: var(--padding-bottom);
}

.testimonails-heading {
  padding-bottom: 40px;
}

.testimonials-flex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 20px;
  border-radius: 12px;
  background-color: #f5f5f5;
}

.testimonails-left {
  width: 30%;
  padding-right: 40px;
}

.testimonails-left img {
  border-radius: 12px;
}

.testimonails-right {
  width: 70%;
}


/* .testimonails-block {
  background-color: var(--light-green-color);
  border-radius: 8px;
  padding: 30px;
  position: relative;
} */

.testimonails-quote-img img {
  width: 50px !important;
  margin-bottom: 20px !important;
}

.testimonails-content p {
  font-size: 24px;
  line-height: 1.6;
  color: var(--dark-blue);
  margin-bottom: 20px;
  font-weight: 500;
}

.testimonails-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonails-client-name h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--black-color);
  margin-bottom: 10px;
}

.owl-dots {
  text-align: center;
  margin-top: 20px;
}

.owl-dots .owl-dot {
  display: inline-block;
}

.owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  background: var(--light-blue) !important;
  display: block;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.owl-dots .owl-dot.active span {
  background: var(--dark-blue) !important;
  transform: scale(1.3);
}

/* main wrapper with relative positioning */
.call-to-collaborate-main {
  position: relative;
  overflow: hidden;
}

/* background image */
.call-to-collaborate-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.call-to-collaborate-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.call-to-collaborate-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.call-to-collaborate {
  position: relative;
  z-index: 2;
  color: var(--white-color);
  padding: 80px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.call-to-collaborate-content h2 {
  font-size: 36px;
  font-weight: 600;
}

.call-to-collaborate-content-points ul {
  text-align: left;
  margin: 20px auto 0 auto;
  display: inline-block;
}


.call-to-collaborate-content-points ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  line-height: 1.6;
  font-size: 16px;
  font-weight: 500;
}

.call-to-collaborate-content-points ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  background-color: var(--white-color);
  border-radius: 50%;
}





.contact-us-page-main {
  padding-top: var(--padding-top);
  padding-bottom: var(--padding-bottom);
	background-color:var(--background);
}

.contact-us-page-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.contact-us-page-left {
  width: 45%;
  padding-right: 60px;
}

.contact-us-page-right {
  width: 50%;
}

.contact-us-page-text {
  margin-bottom: 30px;
  margin-top: 70px;
}

.contact-us-page-text h1 {
  text-align: unset;
}

/* .contact-us-page-text h1::after {
  position: absolute;
  content: "";
  width: 100px;
  bottom: 0;
  width: 60px;
  height: 4px;
  background: var(--light-blue);
  border-radius: 2px;
} */
.contact-us-page-text h1::after {
  margin: unset;
}

.contact-us-page-text h3 {
  font-size: 22px;
  color: var(--dark-blue);
  margin-bottom: 10px;
  font-weight: 600;
}

.contact-us-page-info-information h2 {
  font-size: 22px;
  color: var(--dark-blue);
  margin-bottom: 5px;
  font-weight: 600;
}

.contact-us-page-info-information p {
  font-size: 16px;
  color: var(--black-color);
  font-weight: 500;
}

.contact-us-page-info-information a {
  color: var(--black-color);
}

.contact-us-page-info-information a:hover {
  color: var(--dark-blue);
}

/* Info Blocks */
.contact-us-page-block {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contact-us-page-info-img {
  background: var(--dark-blue);
  margin-bottom: 13px;
  border-radius: 50%;
  padding: 10px;
  display: inline-block;
  margin-right: 20px;
}

.contact-us-page-info-img img {
  height: 30px;
  width: 30px;
  filter: invert(1);
}



/* Form */
.right-form-inner {
  background: var(--dark-blue);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.05);
}

.form-heading h3 {
  font-size: 36px;
  color: var(--white-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.form-flex {
  display: flex;
  flex-wrap: wrap;
  margin-top: 17px;
}

.form-flex .form-field {
  width: 50%;
  position: relative;
  margin-bottom: 20px;
  padding: 10px;
}

.form-flex .form-field.field-full {
  width: 100%;
}

.form-flex .form-field input,
.form-flex .form-field textarea {
  border: unset;
  background-color: var(--white-color);
  border-radius: 0;
  height: 50px;
  width: 100%;
  padding: 0 20px;
  outline: none;
  border-radius: 7px;
  color: var(--dark-blue);
}

.form-flex .form-field textarea {
  padding: 20px;
  height: 150px;
}

.form-flex .submit-button {
  margin-top: 20px;
}


.submit-button input[type="submit"] {
  display: inline-block;
  width: 8em;
  height: 3em;
  line-height: 3em;
  text-align: center;
  background: var(--white-color);
  color: var(--dark-blue);
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  z-index: 1;
  overflow: hidden;
  text-decoration: none;
  border: 2px solid var(--white-color);
}

.submit-button input[type="submit"]:hover {
  color: var(--white-color);
  border: 2px solid var(--white-color);
  background: transparent;
}

.newsletter-main {
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: var(--dark-blue);
}

.newsletter-main .container-main {
  max-width: 800px;
}

.newsletter {
  display: flex;
  justify-content: center;
  flex-flow: column;
  align-items: center;
  /* padding: 25px; */
}

.newsletter h2 {
  color: var(--white-color);
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}

.newsletter p {
  color: var(--white-color);
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}

















.footer-main {
  padding-top: 70px;
  background: var(--background);
  position: relative;
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  padding-bottom: 60px;
}

.footer-logo {
  max-width: 140px;
  margin-bottom: 30px;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-block p {
  font-size: 16px;
  line-height: 26px;
  color: var(--dark-blue);
  margin-top: 15px;
  max-width: 350px;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}

.social-icons i {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  line-height: 50px;
  background-color: var(--dark-blue);
  font-size: 16px;
  color: var(--white-color);
  border-radius: 50%;
  border: 2px solid var(--dark-blue);
}

.social-icons i:hover {
  background-color: transparent;
  color: var(--dark-blue);
  border: 2px solid var(--dark-blue);
}

.footer-block h6 {
  font-weight: 600;
  font-size: 22px;
  color: var(--dark-blue);
  text-transform: uppercase;
  margin-bottom: 5px;
}

.footer-block ul li {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: var(--dark-blue);
  transition: all 0.35s;
  padding-top: 17px;
  position: relative;
  width: max-content;
}

.footer-block.add ul li:first-child {
  align-items: flex-start;
}

.footer-block.add ul li {
  display: flex;
  align-items: center;
  padding-left: 0;
}

.footer-block ul li span {
  font-weight: 700;
  font-size: 16px;
  color: var(--dark-blue);
  text-transform: uppercase;
  margin-right: 7px;
}

.footer-block ul li a {
  color: var(--dark-blue);
  position: relative;
}

.footer-block ul li a:hover {
  color: var(--light-blue);
}

.footer-block.add ul li i {
  margin-right: 10px;
  color: var(--dark-blue);
}

.footer-copyright-main {
  padding: 25px 0;
  border-top: 1px solid #e7e7e75c;
}

.footer-copyright {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-copyright p {
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  color: var(--white-color);
  text-align: center;
}

.footer-copyright p a {
  color: #222;
}

.payment-options-main {
  background-color: var(--dark-blue);
  padding: 30px 0;
  border-top: 1px solid #e7e7e75c;
  color: #fff;
}

.payment-footer-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright p {
  font-size: 16px;
}

.footer-copyright a {
  color: #fff;
}

.footer-right {
  display: flex;
  justify-content: flex-end;
}

.footer-copyright p a {
  color: var(--white-color);
}

.footer-copyright p a:hover {
  color: var(--light-blue);
}


.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 30px;
  overflow: hidden;
}

.lang-btn img {
  width: unset !important;
}



/* Breadcrumbs */

.breadcrumbs-main {
  position: relative;
  background: var(--dark-blue);
  padding-top: 50px;
  padding-bottom: 50px;
}

.breadcrumbs {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-left: 40px;
}

.breadcrumbs h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--white-color);
  text-align: center;
}


/* Contact us page */
.ours-services-content p a {
  color: var(--black-color);

}

.our-services-block:hover .ours-services-content p a {
  color: var(--white-color);
  cursor: pointer;
}

.contact-us-cards .our-services-icons {
  margin: 0 auto;
  margin-bottom: 20px;
}

.contact-us-cards .our-services-heading h3 {
  text-align: center;
}

.contact-us-cards .ours-services-content p {
  text-align: center;
}

.contact-page-main {
  padding-top: var(--padding-top);
  padding-bottom: var(--padding-bottom);
	background-color:var(--background);
}

.contact-page-main .contact-us-page-right {
  width: 100%;
}

/* .contact-page-main .contact-us-page-right .form-flex .form-field{
  width: 100%;
} */

/* .contact-page-services .container-main  */

.contact-page-main .container-main{
  max-width: 1020px;
}

.contact-page-services .our-services-flex {
  margin-top: 0px;
}


/* gallery page */
.gallery-main {
  padding-top: var(--padding-top);
  padding-bottom: var(--padding-bottom);
  background-color: var(--background);
}

.gallery-flex {
  display: flex;
  flex-wrap: wrap;
}

.gallery-block {
  width: 33.33%;
  padding: 15px;
}

.gallery-img {
  height: 300px;
  border-radius: 8px;
}
.gallery-img img{
    border-radius: 8px;
}
.gallery-img video{
    border-radius: 8px;
}
.gallery-text h4{
    color: var(--dark-blue);
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    margin-top: 20px;
	text-transform:uppercase;
}



/* certification page */
.certificates-main {
  padding-top: var(--padding-top);
  padding-bottom: var(--padding-bottom);
}

.certificates-flex {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
}

.certificates-block {
  width: 33.33%;
  padding: 15px;
}

.certificates-block img {
  height: 300px;
  object-fit: scale-down !important;
}

.certificates-block img {
  border: 1px solid #e6e6e6;
}

.certificates-flex .title h4 {
  line-height: 30px;
  font-weight: bold;
  color: var(--dark-blue);
  margin-bottom: 15px;
  font-size: 21px;
  padding-top: 10px;
}


/* About us Page */

.vision-mission-main {
  padding-top: var(--padding-top);
  padding-bottom: var(--padding-bottom);
  background-color: var(--background);
}

.vission-mission-content p {
  font-weight: 600;
  color: var(--dark-blue);
  padding-bottom: 50px;
  font-size: 21px;
  text-align: center;
}

.vision-mission-flex {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
}

.vision-mission-block {
  width: 50%;
  padding: 15px;
}

.vm-block-flex {
  display: flex;
  align-items: center;
  background-color: var(--dark-blue);
  border-radius: 10px;
}

.vm-left,
.vm-right {
  width: 50%;
}

.vm-left {
  height: 300px;
}

.vm-left img {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.vm-right {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 25px;
}

.vm-right h4 {
  font-size: 22px;
  line-height: 1.2;
  text-transform: capitalize;
  font-weight: 600;
  color: var(--white-color);
}

.vm-right ul li {
  font-size: 15px;
  font-weight: 400;
  color: var(--white-color);
  line-height: 25px;
  margin-top: 15px;
  position: relative;
  padding-left: 20px;
}

.vm-right ul li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 16px;
  color: var(--white-color);
  font-weight: bold;
}

.about-why-choose-us {
  background-color: var(--background);
}

.about-why-choose-us .our-services-block {
  background-color: #fff;
}


.our-services-block:hover {
  background-color: var(--dark-blue);
}

/* Product detail */

.product-detail-page-main {
  padding-top: var(--padding-top);
  padding-bottom: var(--padding-bottom);
	background-color:var(--background);
}

.product-detail-page-flex {
  display: flex;
  flex-wrap: wrap;
	align-items:center;
}

.product-detail-page-left,
.product-detail-page-right {
  width: 50%;
}

.product-detail-page-left {
  height: 450px;
}

.product-detail-page-left img {
  border-radius: 12px;
}

.product-detail-page-main .container-main {
  max-width: 1020px;
}

.product-detail-page-right-content p {
  font-size: 16px;
  color: var(--black-color);
  font-weight: 500;
  margin-bottom: 20px;
}

.product-detail-page-right-content h3 {
  font-size: 22px;
  color: var(--dark-blue);
  font-weight: 600;
  margin-bottom: 20px;
}

.product-detail-page-right-content ul {
  margin-bottom: 20px;
}

.product-detail-page-right-content li {
  font-size: 16px;
  font-weight: 500;
  color: var(--black-color);
  line-height: 25px;
  position: relative;
  padding-left: 20px;
}

.product-detail-page-right-content li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 16px;
  color: var(--black-color);
  font-weight: bold;
}

.product-detail-page-right {
  padding-left: 50px;
}

.contact-page-main .right-form-inner {
  background-color: unset;
  box-shadow: unset;
}

.contact-page-main .right-form-inner .form-heading h3 {
  color: var(--dark-blue);
}

.contact-page-main .right-form-inner .form-flex .form-field input,
.form-flex .form-field textarea {
  background-color: #fff;
  border: 1px solid #ccc;
  color: var(--black-color);
}

.contact-page-main .right-form-inner .submit-button input[type="submit"] {
  background-color: var(--dark-blue);
  border: 2px solid var(--dark-blue);
  color: var(--white-color);
}

.contact-page-main .right-form-inner .submit-button input[type="submit"]:hover {
  background-color: transparent;
  border: 2px solid var(--dark-blue);
  color: var(--dark-blue);
}


li.menu-item-has-children {
    position: relative;
    padding-right: 15px !important;
}

li.menu-item-has-children::before {
    position: absolute;
    content: "";
    background-image: url(../images/down_arrow.webp);
    background-repeat: no-repeat;
    background-size: cover;
    width: 12px;
    height: 8px;
    right: -3px;
    top: 5px;
    filter: invert(1);
}




li.menu-item-has-children .sub-menu{
    display: none;
    flex-flow: column;
    position: absolute;
    background-color: #fff;
    border-top: 2px solid var(--dark-blue);
    width: max-content;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 10;

}
li.menu-item-has-children:hover .sub-menu {
    display: block;
}

li.menu-item-has-children .sub-menu{
    flex-flow: column;
    align-items: unset;
    gap: 0 !important;
}

.dropdown-content-inner ul {
    min-width: 200px;
}

li.menu-item-has-children .sub-menu li {
    padding: 0px !important;
    color: var(--dark-blue) !important;
}

li.menu-item-has-children .sub-menu li a {
    display: block;
    color: var(--dark-blue) !important;
}

li.menu-item-has-children .sub-menu li a{
    padding: 11px 25px !important;
    border-bottom: 1px solid #eeeeee;
}

li.menu-item-has-children .sub-menu li:hover {
    background-color: var(--dark-blue)!important;
}
li.menu-item-has-children .sub-menu li:hover a{
  color: var(--white-color) !important;
}



