@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

body {
  font-family: "montserrat", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


:root {
  --blue: #423988;
  --black: #737371;
}





a {
  text-decoration: none;
}

p {
  font-size: 16px;
  margin-bottom: 0px;
  text-align: justify;
}


ul {
  padding: 0px;
  margin: 0;
}

ul li {
  list-style: none;
}



section {
  padding: 50px 0px;
}

@media(max-width: 767px) {
  section {
    padding: 20px 0px;
  }

  p {
    font-size: 14px;
    text-align: justify;
  }
}



/* fixed icon css start */
.fixed-icons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fixed-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  color: #fff;
  border-radius: 50%;
  font-size: 22px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease-in-out;
  text-decoration: none;
}


.fixed-icons a:hover {
  transform: scale(1.1);
}

.call-icon {
  background-color: #007bff;
}

.whatsapp-icon {
  background-color: #25d366;
}

@media(max-width: 767px) {
  .fixed-icons a i {
    font-size: 12px;
  }

  .fixed-icons a {
    height: 30px;
    width: 30px;
  }
}

/* fixed icon css end */


/* sub-page start */
.sub-page {
  background-color: var(--blue);
  color: #fff;
  display: flex;
  padding: 100px 0px;
}

.sub-page-name {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sub-page-name h1 {
  font-size: 30px;
  font-weight: 600;
  text-transform: uppercase;
}

.sub-page-name p a {
  color: #fff;
  font-weight: 600;
}

@media(max-width: 767px) {
  .sub-page {
    background-color: var(--blue);
    color: #fff;
    display: flex;
    padding: 30px 0px;
  }

  .sub-page-name h1 {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
  }
}

/* sub-page css end */



/* topbar css start */
.topbar-div {
  background-color: var(--blue);
  padding: 7px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar a {
  color: #fff;
}

@media(max-width: 767px) {
  .topbar-div {
    padding: 3px;
  }

  .topbar {
    flex-direction: column;
    text-align: center;
  }

  .topbar a {
    color: #fff;
    font-size: 12px;

  }
}


/* topbar css end */






/* navbar css start */

.navbar {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  position: sticky;
}

.navbar-brand img {
  height: 80px;
}

.navbar-nav .nav-item .nav-link {
  color: #000;
  font-size: 17px;
  font-weight: 500;
  transition: 0.4s ease-in-out;
}

.navbar-nav .nav-item .nav-link:hover {
  color: var(--blue);
}


.active {
  color: var(--blue) !important;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 15px !important;
}

.carousel-item img {
  width: 100%;
}

.dropdown-menu .dropdown-item {
  font-weight: 500;
}

.dropdown-menu .dropdown-item:hover {
  background-color: var(--blue);
  color: #fff;
}

@media(max-width: 767px) {
  .navbar-brand img {
    height: 50px;
  }
}

/* navbar css end */


/* about css start */

.about-heading {
  margin-bottom: 25px;
}

.about-heading h1 {
  font-size: 20px;
  font-weight: 600;
  color: var(--blue);
}

.about-heading h2 {
  font-size: 30px;
  font-weight: 600;

}

.about-para {
  margin-bottom: 50px;
}

.about-btn a {
  border: 2px solid var(--blue);
  padding: 20px 40px;
  border-radius: 40px;
  color: var(--blue);
  font-size: 17px;
  font-weight: 500;
  transition: 0.5s ease-in-out;
}

.about-btn a:hover {
  background-color: var(--blue);
  color: #fff;
}

@media(max-width: 767px) {
  .about-heading {
    margin-bottom: 15px;
  }

  .about-heading h1 {
    font-size: 18px;
    font-weight: 600;
    color: var(--blue);
  }

  .about-heading h2 {
    font-size: 26px;
    font-weight: 600;

  }

  .about-para {
    margin-bottom: 25px;
  }

  .about-btn {
    margin-bottom: 25px;
  }

  .about-btn a {

    padding: 13px 25px;


    font-size: 14px;

  }
}

@media(max-width: 991px) {
  .about-btn {
    margin-bottom: 25px;
  }
}

/* about css end */


/* products css start */

.all-use-heading {
  margin-bottom: 50px;
}

.all-use-heading h2 {
  font-size: 30px;
  font-weight: 600;
  color: var(--blue);
}

.all-use-heading p {
  font-size: 18px;
  color: #000;
  font-weight: 500;
}


.product-cards {
  background-color: var(--blue);
  color: #fff;
  padding: 20px;
  border-radius: 7px;
  transition: 0.5s ease-in-out;
  overflow: hidden;
  margin-bottom: 20px;

}

.pro-card-post {
  margin-bottom: 25px;

}

.pro-card-post img {
  transition: 0.5s ease-in-out;
}

.pro-card-name h3 {
  font-size: 18px;
  font-weight: 700;
}

.pro-card-name p {
  font-size: 14px;
}

.pro-card-name {
  margin-bottom: 20px;
}

.product-cards:hover .pro-card-post img {
  transform: scale(1.1);
}

.discover-btn {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--blue);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  color: var(--blue);
}

.discover-btn span {
  padding: 8px 15px;
  background: #fff;
}

.discover-btn .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  background: #fff;
  border-left: 2px solid var(--blue);
  font-size: 16px;
  transition: transform 0.3s ease;
}

@media(max-width: 767px) {
  .all-use-heading {
    margin-bottom: 20px;
  }

  .all-use-heading h2 {
    font-size: 25px;
    font-weight: 600;
  }

  .product-cards {
    padding: 10px;

  }

  .pro-card-post {
    margin-bottom: 10px;

  }

  .pro-card-name h3 {
    font-size: 16px;
    font-weight: 700;
  }

  .discover-btn span {
    padding: 5px 10px;
    background: #fff;
  }

  .discover-btn .icon {
    padding: 5px 10px;
  }

  .all-use-heading p {
    font-size: 13px;
    color: #000;
    font-weight: 500;

  }
}

/* products css start */

/* blog css start */

.blog-card {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  transition: 0.5s ease-in-out;
  overflow: hidden;
  color: #000;
}

.blog-detail {
  padding: 20px;
}

.blog-span {
  margin-bottom: 13px;
}

.blog-span span {
  background-color: var(--blue);
  color: #fff;
  padding: 5px 8px;
  border-radius: 4px;
  font-size: 12px;
}

.blog-card-content {
  margin-bottom: 30px;
}

.blog-card-content h3 {
  font-size: 17px;
  font-weight: 600;
}

.blog-date span {
  font-size: 14px;
}

.blog-card-post img {
  transition: 0.5s ease-in-out;
  overflow: hidden;
}

.blog-card:hover .blog-card-post img {
  transform: scale(1.1);
  overflow: hidden;
}

@media(max-width: 767px) {
  .blog-card {
    margin-bottom: 20px;
  }

  .blog-detail {
    padding: 15px;
  }

  .blog-card-content h3 {
    font-size: 16px;
    font-weight: 600;
  }
}

@media(max-width: 991px) {
  .blog-card {
    margin-bottom: 20px;
  }
}

/* blog css end */


/* why choose css start */

.why-us-card {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  text-align: center;
  padding: 20px;
  border: 2px solid var(--blue);
  min-height: 230px;
  max-height: 230px;
}

.why-us-card:hover {
  background-color: var(--blue);
  color: #fff;
}

.why-us-card:hover .why-icon img {
  background-color: #fff;
  border-radius: 10px;
  padding: 5px;

}

.why-icon {
  margin-bottom: 13px;
}

.why-name h3 {
  font-size: 20px;
  font-weight: 600;
}

.why-name p {
  text-align: center;
}


@media(max-width: 767px) {
  .why-us-card {
    margin-bottom: 20px;
    padding: 15px;
  }

  .why-name h3 {
    font-size: 18px;
    font-weight: 600;
  }
}

@media(max-width: 991px) {
  .why-us-card {
    margin-bottom: 20px;
  }
}

/* why choose css end */


/* contact start */
.contact-section {
  background: linear-gradient(#423988e1), url(../img/about/aboutimg-oc.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 50px 0px;
}

.contact-heading h2 {
  font-size: 30px;
  color: #fff;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
}

.form {
  background-color: #00000056;
  border: 1px solid #fff;
  padding: 30px;
  border-radius: 5px;
}

@media(max-width: 768px) {
  .form {
    margin-bottom: 13px;
  }

  .get-address p {
    text-align: start;
    font-size: 15px;
  }

}

.form-head-dark input {
  padding: 10px;
}

.form-head-dark textarea {
  padding: 10px;
}



.submit-btn {
  padding: 10px;
  border: none;
  background-color: var(--blue);
  color: #fff;
  font-size: 17px;
  font-weight: 600;
}

/* captcha start */
.captchasep1 {
  display: flex;
}

.captchasep1 input {
  width: 100% !important;
  margin-top: 0 !important;
  height: 63px;
}

.captchasep1 .captcha-codes-sec {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100% !important;
  border-radius: 5px;
  border-top: 1px solid #ced4da;
  border-right: 1px solid #ced4da;
  border-bottom: 1px solid #ced4da;
  background: #fff;
  font-weight: bolder !important;
}

.captchasep1 .captcha-codes-sec p {
  margin-bottom: 0;
  letter-spacing: 9px;
  font-style: italic;
  font-size: 24px;
  padding: 10px;
  height: 100%;
  color: #000;
  font-weight: bolder !important;
}

@media (max-width: 768px) {
  .captchasep1 .captcha-codes-sec p {
    font-size: 24px;
  }

  .captchasep1 {
    margin-bottom: 10px;
  }
}

@media (max-width: 992px) {
  .captchasep1 .captcha-codes-sec p {
    font-size: 18px;
  }
}

.captchasep1 .captcha-codes-sec {
  margin-bottom: 10px;
}

.captchasep1 .captcha-codes-sec button {
  font-style: italic;
  font-size: 22px;
  outline: none;
  background: transparent;
  height: 100%;
  border: none;
  font-weight: bolder;
}

.captchasep1 .captcha-codes-sec button i {
  background: #000;
  color: #fff;
  padding: 10px;
  border-radius: 6px;
}

@media screen and (max-width: 600px) {
  .captchasep1 {
    display: flex;
    flex-direction: column !important;
  }

  .captchasep1 .captcha-codes-sec {
    border-left: 1px solid #ced4da;
    border-right: 1px solid #ced4da;
    border-bottom: 1px solid #ced4da;
    margin-top: 3px;
  }
}

/* contact end */


/* industries we serve start */
.industries .inustry-card {
  position: relative;
  overflow: hidden;
}

.industries .inustry-card .img-content img {
  transition: 0.6s ease-in-out;
}

.industries .inustry-card:hover .img-content img {
  transform: scale(1.06);
}

.overflow-text h4 {
  font-size: 20px;
  font-weight: 600;
}

.industries .inustry-card .overflow-text {
  position: absolute;
  transform: translateY(-100%);
  width: 100%;
  color: #fff;
  text-align: center;
  background-color: #423988d0;
  padding: 10px 20px;
}

/* industries we serve end */




/* missin vision css start */

.mission-vision {
  background-color: var(--blue);
}

.mv-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 25px;
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
  text-align: center;
}

.mv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.mv-icon {
  font-size: 50px;
  color: var(--blue);
  margin-bottom: 15px;
}

.mv-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #222;
}

.mv-text {
  line-height: 1.6;
}

@media(max-width: 767px) {
  .mv-card {
    padding: 10px 14px;
  }

  .mv-icon {
    font-size: 45px;
    color: var(--blue);
    margin-bottom: 0px;
  }

  .mv-title {
    font-size: 20px;
    margin-bottom: 10px;
  }
}

/* mission vision css end */

/* enq-page css start */

.enquire-post {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}

.enq-btn {
  display: flex;
  justify-content: end;

}

.enq-btn a {
  background-color: var(--blue);
  color: #fff;
  padding: 15px 20px;
  border-radius: 5px;
}

.enquire-content h2 {
  font-size: 24px;
  font-weight: 600;
}

.enquire-content h3 {
  font-size: 24px;
  font-weight: 600;
}

.enquire-content ul {
  padding-left: 0px;
}

.enquire-content ul li {
  list-style: disc;

}

.btn-red {
  background-color: var(--blue);
  color: #fff;
}

.btn-red:hover {
  background-color: var(--black);
  color: #fff;
}

@media(max-width: 767px) {
  .enquire-post {
    margin-bottom: 20px;
  }

  .enq-btn a {
    background-color: var(--blue);
    color: #fff;
    padding: 8px 14px;
    border-radius: 5px;
    margin-bottom: 10px;
  }

  .enquire-content h2 {
    font-size: 18px;
  }

  .enquire-content h3 {
    font-size: 18px;
  }

  .enquire-content ul li {
    font-size: 14px;
    list-style: disc;
  }
}

/* enq-page css end */

/* contact page css start */

.contact-page-card {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 20px 20px;
  max-height: 240px;
  min-height: 240px;
}

.details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.details p i {
  font-size: 30px;
  margin-bottom: 15px;
}

.details a {
  color: #000;
  line-height: 2;
}

.oc-map iframe {
  width: 100%;
  height: 450px;
}


@media(max-width: 767px) {
  .contact-page-card {
    margin-bottom: 20px;
  }

  .oc-map iframe {
    width: 100%;
    height: 200px;
  }
}

@media(max-width: 991px) {
  .contact-page-card {
    margin-bottom: 20px;
  }
}

/* contact css end */



/* blog-details css start */
.blog-detail-content {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 20px;
  border-radius: 5px;
}

.blog-detail-date {
  margin-bottom: 15px;
}

.blog-detail-date span {
  color: #333333;
  font-size: 14px;
}

.blog-detail-heading h2 {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 20px;
}

.blog-detail-post {
  margin-bottom: 15px;
}

.blog-detail-para h3 {
  font-size: 21px;
  font-weight: 600;
}

.blog-detail-para p {
  margin-bottom: 20px;
}



.main-recent-blog {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 20px;
  border-radius: 8px;
  background-color: #fff;
}

.recent-heading {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.recent-card a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}

.recent-card:last-child {
  border-bottom: none;
}

.recent-card-post img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
}

.recent-card-detail {
  flex: 1;
}

.recent-date {
  font-size: 13px;
  color: #363636;
  display: block;
  margin-bottom: 5px;
}

.recent-title {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  margin: 0;
}


@media(max-width: 767px) {
  .blog-detail-content {
    margin-bottom: 25px;
  }

  .blog-detail-heading h2 {
    font-size: 15px;
  }

  .blog-detail-para h3 {
    font-size: 18px;
  }

  .blog-detail-para p {
    font-size: 14px;
  }

  .recent-heading {
    font-size: 17px;
  }

  .recent-title {
    font-size: 12px;
  }
}

/* blog-details css end */


/* footer css start */
.footer-section {
  background-color: #fff;
  color: #000;
  padding: 50px 0px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.footer-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer-logo img {
  height: 100px;
}

.footer-logo {
  margin-bottom: 30px;
}

.footer-icon {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.footer-icon a img {
  width: 35px;
}

.footer-company-name h4 {
  font-size: 18px;
  font-weight: 700;
}

.footer-company-address {
  margin-bottom: 10px;
}

.footer-company-address p {
  text-align: center;
  line-height: 2;
}

.footer-company-no {
  display: flex;
  gap: 10px;
}

.footer-company-no a {
  color: #000;
}


@media(max-width: 767px) {
  .footer-section {
    background-color: #fff;
    color: #000;
    padding: 20px 0px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  }

  .footer-main {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    text-align: start;

  }

  .footer-company-no {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-company-no a {
    font-size: 12px
  }

  .footer-company-address p {
    font-size: 12px;
    text-align: justify;
  }

  .footer-logo {
    margin-bottom: 15px;
  }

  .footer-logo img {
    height: 80px;
  }

  .footer-icon {
    margin-bottom: 18px;
  }

  .footer-icon a img {
    width: 25px;
  }
}




/* copyright */
.copyright-section {
  background-color: var(--blue);
}

.main-copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.right-side p,
.left-side p {
  color: #fff;
  font-size: 16px;
  margin-bottom: 0px;
}

.left-side p a {
  text-decoration: none;
  color: #fff;
}

@media (max-width: 767px) {
  .footer-line {
    margin-bottom: 10px;
  }

  .main-copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .right-side p {
    text-align: center;
    font-size: 12px;
  }

  .logo-icon {
    margin-bottom: 20px;
  }

  .left-side p {
    font-size: 12px;
  }
}

/* footer css end */