@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");

body {
  font-family: "Jost", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green: #007347;
  --yellow: #fae800;
  --green-dark: #005f3a;
  --btn-shadow: 0 6px 18px rgba(0, 115, 71, 0.25);
  --black: #000;
  --white: #fff;
}

a {
  text-decoration: none;
  color: #000;
}

ul {
  padding: 0px;
  margin: 0;
}

ul li {
  list-style: none;
}

p {
  margin-bottom: 0px;
  text-align: justify;
}

h1,
h2,
h3,
h4 {
  margin-bottom: 0px;
}

/* section css */
section {
  padding: 50px 0px;
}

.section-head {
  text-align: center;
  margin-bottom: 50px;
}

.section-head .heading {
  font-size: 35px;
  /* text-transform: uppercase; */
  font-weight: 700;
  background: var(--black);
  -webkit-background-clip: text;
  color: transparent;
  position: relative;
  margin-bottom: 20px;
}

.section-head .heading::after {
  position: absolute;
  content: "";
  background: rgb(49, 175, 49);
  bottom: 0;
  left: 50%;
  width: 20%;
  transform: translateX(-50%);
  height: 3px;
  animation: head-border 2s infinite ease;
}

@keyframes head-border {
  0% {
    width: 0;
    opacity: 0.2;
  }

  50% {
    width: 20%;
    opacity: 1;
  }

  100% {
    width: 0;
    opacity: 0.2;
  }
}

@media screen and (max-width: 767px) {
  p {
    font-size: 12px;
  }

  section {
    padding: 20px 0px;
  }

  .section-head {
    margin-bottom: 20px;
  }

  .section-head .heading {
    font-size: 24px;
  }
}



/* section css */

/* footer css */
.footer {
  padding: 50px 0px;
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 20px 0px;
  }
}

/* footer css */

/* fixed-icon-start */
.whatsapp-fixed {
  position: fixed;
  right: 1%;
  bottom: 10%;
  z-index: 999;
}

.whatsapp-fixed img {
  height: 50px;
  filter: drop-shadow(rgba(0, 0, 0, 0.349) 0px 5px 15px);
}

@media (max-width: 768px) {
  .whatsapp-fixed {
    position: fixed;
    right: 1%;
    bottom: 5%;
    z-index: 999;
  }
}

/* fixed-icon-end */



/* subpage banner start */

.sub-page {
  background: url(../img/banner/bhatia-sub-banner.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.sub-page-heading {
  padding: 60px 0px;
  text-align: start;
}

.sub-page-heading h1 {
  color: #fff;
  font-size: 50px;
  font-weight: 600;
}

.sub-page-heading p a,
.sub-page-heading p i {
  text-decoration: none;
  color: #fff;
}

@media(max-width: 768px) {
  .sub-page-heading h1 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
  }

  .sub-page-heading {
    padding: 10px 0px;
    text-align: start;
  }

  .sub-page-heading p {
    font-size: 11px;
  }
}

/* sub page banner end */

/* navbar css start========================================================== */

.btn1 {
  display: inline-block;
  background: var(--green);
  padding: 10px 20px;
  border: none;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  transition: 0.4s ease-in-out;
}

.btn1:hover {
  background: var(--black);
  border: none;
  font-weight: 500;
  color: #fff;
}

/* btn end */

.dropdown:hover .dropdown-menu {
  display: block !important;
}

.dropdown-menu .dropdown-item {
  color: var(--dark) !important;
  font-size: 16px;
  font-weight: 600;
}

.dropdown-menu .dropdown-item:hover {
  background: var(--green);
  color: #fff !important;
}

.navbar {
  background-color: #fff !important;
}

.navbar-brand {
  font-weight: bold;
  font-size: 28px !important;
  /* font-style: italic; */
}

.nav-link {
  padding-bottom: 0px !important;
  color: var(--black) !important;
}

.nav-item .nav-link {
  font-weight: 600;
  font-size: 17px;
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
  position: absolute;
  top: 30px;
}

/* logo */
.logo {
  height: 90px;
}

@media (max-width: 767px) {
  .navbar-brand {
    padding: 0 !important;
  }

  .logo {
    height: 50px;
  }

  .btn1 {
    margin-top: 10px;
    padding: 5px 15px;
  }

  .navbar-toggler {
    padding: 5px;
    border: 3px solid var(--green);
  }

  .navbar-toggler-icon {
    height: 20px;
  }

  .nav-item .nav-link {
    font-size: 14px;
  }
}

.carousel-item img {
  width: 100% !important;
}

/* navbar css end ==================================================================*/

/* about css start========================================================= */

.about-details {
  margin-bottom: 20px;
}

.about-details h1 {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 18px;
}

.about-details h1 span {
  background: var(--green);
  color: var(--white);
  padding: 0px 3px;
  border-radius: 5px;
}

.bp-about-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.6rem 1.2rem;
  background: var(--green);
  color: var(--yellow);
  text-decoration: none;
  font-weight: 600;
  border-radius: 999px;
  box-shadow: var(--btn-shadow);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  cursor: pointer;
  border: none;
}

.bp-about-btn .bp-btn-icon {
  font-size: 1rem;
  line-height: 1;
}

.bp-about-btn:hover {
  transform: translateY(-3px);
  background: var(--green-dark);
  box-shadow: 0 10px 28px rgba(0, 95, 58, 0.28);
}

.bp-about-btn:active {
  transform: translateY(-1px) scale(0.98);
}

.bp-about-btn:focus-visible {
  outline: 3px solid rgba(250, 232, 0, 0.4);
  outline-offset: 3px;
}

@media screen and (max-width: 1200px) {
  .about-details {
    margin-bottom: 10px;
  }

  .about-details h1 {
    font-size: 22px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 991px) {
  .about-section-post {
    display: none;
  }
}

@media (max-width: 767px) {
  .about-details {
    margin-bottom: 10px;
  }

  .about-details h1 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .bp-about-btn {
    font-size: 12px;
  }
}

/* about css end======================================================================== */


/* about page css start====================================================== */

.purpose-principles {

  background: #f9f9f9;

}


.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0;
}

.grid-item {
  position: relative;
}

.grid-item.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.grid-item.text {
  padding: 40px 30px;
  color: #fff;
}

.grid-item.text h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.grid-item.text p {
  font-size: 15px;
  line-height: 1.6;
}

/* Background colors for text blocks */
.grid-item.text.mission {
  background: #007347;
}

.grid-item.text.values {
  background: #FAE800;
  color: #000;
}

.grid-item.text.company {
  background: #007347;
}

/* Responsive */
@media (max-width: 768px) {
  .grid-container {
    grid-template-columns: 1fr;
  }

  .grid-item.text {
    padding: 30px 20px;
  }

  .grid-item.text h3 {
    font-size: 18px;
  }
}

/* about page css end========================================================= */

/* ------------------ services section css start here ------------------- */

.services .service-card {
  position: relative;
  overflow: hidden;
}

.services .service-card .card-img {
  position: relative;
  overflow: hidden;
  transition: 0.5s ease-in-out;
}

.services .service-card:hover .card-img {
  transform: scale(1.1);
}

.services .card-text {
  text-align: center;
  background: var(--green);
  color: var(--white);
  letter-spacing: 2px;
  padding: 10px;
}

.services .card-text h3 {
  font-size: 24px;
  font-weight: 600;
}

.services .service-card .card-btn {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  font-weight: 600;
  opacity: 0;
  transition: 0.5s ease-in-out;
}

.services .service-card .card-btn p {
  display: inline-block;
  border: 2px solid var(--white);
  padding: 10px 15px;
  transition: 0.5s ease-in-out;
}

.services .service-card:hover .card-btn {
  opacity: 1;
  background: linear-gradient(rgba(0, 0, 0, 0.205),
      rgba(0, 0, 0, 0.37),
      #0000004b);
}

.services .service-card .card-btn p:hover {
  background: var(--green);
  color: var(--yellow);
  border: 2px solid var(--green);
}

/* responsive css start */

@media screen and (max-width: 1200px) {
  .services .card-text h3 {
    font-size: 18px;
  }
}

@media screen and (max-width: 991px) {
  .services .card-text {
    margin-bottom: 20px;
  }

  .services .card-text h3 {
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .services .card-text h3 {
    font-size: 18px;
  }
}

/* responsive css end */

/* -------------------- end of services section css here ------------------ */

/* -------------------- why-choose-us section css start here ------------------- */
.why-us {
  background-color: #f7f7f7;
}

.why-us .why-content {
  margin-bottom: 40px;
}

.why-us .why-content h3 {
  margin-bottom: 10px;
}

.why-us .why-points .point {
  margin-bottom: 20px;
}

.why-us .why-points .point p {
  color: rgb(122, 121, 121);
}

.why-us .why-points .point h4 i {
  color: var(--green);
}

.why-content-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

@media screen and (max-width: 1200px) {
  .why-us .why-points .point h4 {
    font-size: 18px;
  }

  .why-us .why-points .point p {
    font-size: 14px;
  }
}

@media screen and (max-width: 991px) {
  .why-us .why-points .point h4 {
    font-size: 22px;
  }
}

@media screen and (max-width: 767px) {
  .why-us .why-points .point {
    margin-bottom: 10px;
  }

  .why-us .why-points .point h4 {
    font-size: 18px;
  }

  .why-us .why-points .point p {
    font-size: 12px;
  }
}

/* -------------------- end of why-choose us section css here -------------------- */

/* contact css start ================================================== */

.contact-header {
  max-width: 600px;
}

.contact-section {
  background: linear-gradient(#090909a8, #000000b7),
    url(../img/contact/contact-bg-bhatia.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.contact-info .icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
}

.contact-info .icon {
  background: var(--green);
}

.contact-info .icon i {
  color: var(--yellow);
}

.contact-info h3 {
  font-size: 16px;
}

/* ======================  Call-to-action Section End  ======================*/
.contact-section__info {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.contact-section__item {
  border: 1px solid var(--green);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  width: 100%;
}

.contact-section__item:nth-child(2) i {
  background-color: var(--green);
}

.contact-section__item i {
  font-size: 24px;
  color: var(--white);
  background-color: var(--green);
  width: 50px;
  height: 50px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.contact-section__item .text p {
  color: var(--white);
}

.contact-section__item .text p a {
  color: var(--white);
}

.map-section {
  margin-bottom: -10px;
}

.map-section iframe {
  width: 100%;
  height: 350px;
}

@media screen and (max-width: 575px) {
  .map-section iframe {
    height: 400px;
  }
}

@media (max-width: 767px) {
  .contact-info h3 {
    font-size: 12px;
  }

  .contact-info {
    margin-bottom: 20px !important;
    padding: 10px !important;
  }
}

/* contact css end============================================================ */

/* ----------------------- testimonial section css start here ------------------------- */

.testimonial .testimonial-card {
  background: var(--green);
  text-align: center;
  color: var(--white);
  border-radius: 5px;
  padding: 20px 40px;
}

.testimonial .testimonial-card h3 {
  margin-bottom: 50px;
}

.testimonial .testimonial-card .testimonial-text {
  background: var(--white);
  color: var(--black);
  padding: 20px 40px;
  font-style: italic;
  font-size: 14px;
  border-radius: 5px;
}

.testimonial .testimonial-card .testimonial-text p {
  text-align: center;
}

.testimonial .testimonial-card .testimonial-text .star {
  margin: 20px 0px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: var(--yellow);
}

.testimonial .testimonial-card .testimonial-text h4 {
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  margin-top: 20px;
}

/* owl carousel dots css start */

/* Center the dots below the carousel */
.testimonial .owl-dots {
  text-align: center;
  margin-top: 20px;
}

/* Style for each dot */
.testimonial .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  background: #cbc8c8 !important;
  display: inline-block;
  border-radius: 50%;
  margin: 5px;
  transition: 0.3s;
}

/* Active dot style */
.testimonial .owl-dots .owl-dot.active span {
  background: var(--black) !important;
}

@media screen and (max-width: 767px) {
  .testimonial .owl-dots {
    display: none;
  }
}

/* owl carousel dots css end */

/* responsive css */

@media screen and (max-width: 991px) {
  .testimonial .testimonial-card {
    padding: 20px;
  }

  .testimonial .testimonial-card h3 {
    margin-bottom: 20px;
    font-size: 22px;
  }

  .testimonial .testimonial-card .testimonial-text {
    padding: 20px;
  }
}

@media screen and (max-width: 767px) {
  .testimonial .testimonial-card {
    padding: 10px;
  }

  .testimonial .testimonial-card h3 {
    font-size: 18px;
  }

  .testimonial .testimonial-card .testimonial-text {
    padding: 10px;
    font-size: 12px;
  }

  .testimonial .testimonial-card .testimonial-text .star {
    margin: 10px 0px 5px;
    gap: 5px;
  }

  .testimonial .testimonial-card .testimonial-text h4 {
    font-size: 18px;
    margin-top: 10px;
  }
}

/* responsive css */

/* ----------------------- end of testimonial section css here ------------------------- */

/* what does card css start====================================== */

.what-does-section {
  background: var(--green);
}

.what-does-card {
  background-color: #e0e0e0;
  padding: 20px;
  border-radius: 15px;
}

.what-does-post,
.what-does-card-name,
.what-does-card-para {
  margin-bottom: 10px;
}

.what-does-post img {
  border-radius: 15px;
}

.what-does-card-name h3 {
  font-size: 28px;
  font-weight: 600;
}

.what-does-card-name h3 {
  font-size: 22px;
}

@media screen and (max-width: 991px) {
  .what-does-card {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  .what-does-card-name h3 {
    font-size: 18px;
  }

  #does-btn {
    margin-bottom: 0px;
  }
}

/* what does css end ==============================================*/

/* blog css start ================================================*/

.blog-card {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 20px;
}

.blog-post {
  margin-bottom: 15px;
}

.blog-date {
  display: flex;
  gap: 25px;
  margin-bottom: 10px;
}

.blog-date span {
  font-size: 14px;
  color: var(--green);
}

.blog-card-name {
  margin-bottom: 15px;
}

.blog-card-name h3 {
  font-size: 25px;
  font-weight: 600;
}

.blog-para p {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.blog-post img {
  transition: transform 0.5s ease, box-shadow 0.3s ease;
  transform-origin: center;
}

.blog-card:hover .blog-post img {
  transform: rotate(3deg) scale(1.02);
}

@media screen and (max-width: 991px) {
  .blog-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .blog-card-name h3 {
    font-size: 20px;
    font-weight: 600;
  }
}

/* blog 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: #555555;
  font-size: 14px;
}

.blog-detail-heading h3 {
  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 {
  font-size: 16px;
  text-align: justify;
}



.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 {
  display: flex;
  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: #888;
  display: block;
  margin-bottom: 5px;
}

.recent-title {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  margin: 0;
}


@media(max-width: 767px) {
  .blog-detail-heading h1 {
    font-size: 19px;
  }

  .blog-detail-para h2 {
    font-size: 19px;
  }

  .blog-detail-para p {
    font-size: 14px;
  }

  .blog-detail-content {
    margin-bottom: 25px;
  }

}

/* blog-details 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(--green);
  color: var(--yellow);
  padding: 15px 20px;
  border-radius: 5px;
}

.enquire-content h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}

.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(--green);
  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(--green);
    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 ========================================================*/





/* success css start=============================================== */

.submit-form {
  padding: 50px 0;
}

.submit-form .submit-head {
  text-align: center;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 50px 10px;
}

.submit-form .submit-head i {
  color: #87BD48;
  font-size: 100px;
  border: 10px solid #87BD48;
  border-radius: 50%;
  padding: 15px 22px;
}

.submit-form .submit-head h2 {
  color: #155391;
  margin: 13px 0 0;
}

.submit-form .submit-head p {
  margin-bottom: 28px;
}

.submit-form .submit-head a {
  background: #15537E;
  color: #fff;
  padding: 10px 20px;
}

/* success css end ========================================================== */



/* ---------------- footer css start here --------------- */
.footer {
  background: #fafbfd;
  border-top: 1px solid rgba(228, 226, 226, 0.726);
}

.footer .part-1 .footer-logo img {
  height: 90px;
  margin-bottom: 10px;
}

.footer .part-1 .text {
  margin-bottom: 20px;
  color: #000;
}

.footer .part-1 .text p {
  font-size: 16px;
}

.footer .part-1 .social-icons {
  display: flex;
  gap: 20px;
}

.footer .part-1 .social-icons i {
  font-size: 20px;
  color: var(--green);
}

.footer .part .head {
  margin-bottom: 20px;
}

.footer .part .head h3 {
  font-size: 22px;
  font-weight: 600;
}

.footer .part ul li {
  margin-bottom: 10px;
  transition: 0.3s ease-in-out;
}

.footer .part ul li a {
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s ease-in-out;
}

.footer .part ul li:hover {
  transform: translateX(10px);
}

.footer .part ul li a:hover {
  color: var(--green);
}

.footer .contact-info p {
  margin-bottom: 10px;
  font-weight: 450;
  font-size: 16px;
}

.footer .contact-info p a {
  color: var(--black);
  font-weight: 450;
  font-size: 16px;

}

.footer .contact-info p i {
  color: var(--green);
}

.footer-widget {
  background: var(--green);
  /* margin-top: 30px; */
  color: var(--white);
  padding: 10px 0px;
}

.footer-widget p {
  text-align: center;
}

.footer-widget a {
  color: var(--white);
}

/* responsive css start here */

@media screen and (max-width: 1200px) {
  .footer .contact-info p a {
    font-size: 13px;
  }
}

@media screen and (max-width: 991px) {
  .footer .part {
    margin-bottom: 20px;
  }

  .footer .part-1 .footer-logo img {
    margin-bottom: 5px;
  }

  .footer .part-1 .text {
    margin-bottom: 5px;
  }

  .footer .part .head {
    margin-bottom: 10px;
  }

  .footer .contact-info p a {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .footer .part .head {
    margin-bottom: 5px;
  }

  .footer .part .head h3 {
    font-size: 18px;
  }

  .footer .part-1 .footer-logo img {
    height: 50px;
  }

  .footer .part-1 .social-icons {
    gap: 20px;
  }

  .footer .part ul li a {
    font-size: 12px;
  }

  .footer .contact-info p {
    font-size: 12px;
  }


  .footer .contact-info p a {
    font-size: 12px;
  }

  .footer .part-1 .text p {
    font-size: 12px;
  }

  .footer .part-1 .social-icons i {
    font-size: 18px;
    color: var(--green);
  }

  .footer .part ul li {
    margin-bottom: 5px;
  }
}

/* responsive css ends here */

/* ---------------- footer css ends here ---------------- */