@import "./variables.css";

/* Header */
.header {
  position: fixed;
  top: 0;
  z-index: 9;
  min-height: 75px;
  width: 100%;
  background: transparent;
  transition: 0.5s ease all;
}

.header.sticky {
  background: var(--light);
  box-shadow: 0 5px 10px 1px rgba(0, 0, 0, 0.205);
}

.header .navbar {
  padding: 0;
  width: 100%;
  position: relative;
}
.header .navbar-brand {
  width: 140px;
  position: absolute;
  top: 0;
  padding: 10px;
  z-index: 1;
  background: var(--light);
  border-top: 0;
  border-radius: 0 0 10px 10px;
}
.header .navbar-nav {
  gap: 5px;
  min-height: 75px;
  padding-left: 55px;
}
.header .navbar-nav .nav-link {
  padding: 12px 14px;
  font-size: 16px;
  font-family: var(--cursive);
  color: var(--light);
  border-radius: 5px;
  font-weight: 600;
  transition: 0.5s ease all;
}
.header.sticky .navbar-nav .nav-link {
  color: var(--dark);
}
.header .navbar-nav .nav-link:hover {
  color: var(--primary);
}
.header .navbar-nav .nav-link.active {
  color: var(--dark-alt);
  background: #97c1ed;
}

.header .navbar .navbar-toggler {
  background: var(--light-alt);
  padding: 10px 12px;
  border: 0;
  outline: 0;
  position: absolute;
  top: 15px;
  right: 15px;
}

.header .navbar .navbar-toggler i {
  color: var(--primary);
}

.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: none;
}

/* Code By Manisha 12 April 2023  */

.header .contact-number {
  color: var(--dark-alt);
  /* min-height: 84px; */
  display: flex;
  justify-content: center;
  align-items: center;
  /* background: var(--light); */
  border-radius: 0 0 0 10px;
  min-height: 75px;
  /* border-left: 1px solid var(--primary);
  border-bottom: 1px solid var(--primary); */
  transition: 0.5s all ease;
}

.header .contact-number a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  font-weight: 600;
  font-size: 18px;
  transition: 0.5s all ease;
}

.header.sticky .contact-number a {
  color: var(--dark);
}

.header .contact-number:hover a {
  color: var(--primary);
}

.header .contact-number a i {
  color: var(--light);
  font-size: 18px;
  transition: 0.5s all ease;
}

.header.sticky .contact-number a i {
  color: var(--dark);
}

.header .contact-number a span {
  display: inline-block;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  border: 2px solid var(--light);
  background: transparent;
  margin-right: 10px;
  transition: 0.5s all ease;
}

.header.sticky .contact-number a span {
  border-color: var(--dark);
}

.header .contact-number:hover a span {
  border: 2px solid var(--light);
  color: var(--primary);
  background: var(--light);
}

.header .contact-number:hover a span i {
  color: var(--primary);
}

/* Code By Manisha 12 April 2023  */

/* Hero Carousel */
.hero {
  position: relative;
}

.hero .hero-text {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  z-index: 2;
  font-size: 50px;
  font-family: var(--cursive);
  color: var(--light);
}
.hero .hero-text b {
  color: var(--primary);
  display: block;
  margin-top: 20px;
}
.hero .text {
  position: absolute;
  top: 50%;
  left: 52px;
  z-index: 5;
  display: flex;
  max-width: 480px;
  flex-direction: column;
  justify-content: end;
  align-items: start;
  padding: 40px 0;
  transform: translateY(-50%) !important;
}

.hero .text h3 {
  font-size: 35px;
  font-family: var(--cursive);
  font-weight: 800;
  color: var(--light);
  margin-bottom: 20px;
}

.hero .text h6 {
  font-size: 18px;
  font-weight: 500;
  color: var(--light);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero .text p {
  font-size: 15px;
  font-weight: 500;
  color: var(--light);
  margin-bottom: 20px;
}

.hero .text .button span {
  color: var(--light);
  font-weight: bold;
}

.hero .text .heading {
  color: var(--light);
}

.hero .text .heading span {
  color: var(--primary);
}

.hero {
  width: 100%;
  min-height: 700px;
  height: 100vh;
  overflow: hidden;
}

.hero .carousel .carousel-inner,
.hero .carousel .carousel-inner .carousel-item {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero .hero-img {
  position: relative;
  height: 100%;
  width: 100%;
}

.hero .hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: relative;
}

.hero .hero-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
  background: #00000050;
}

.hero .carousel .carousel-inner .carousel-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #0c06009f;
}

.about {
  position: relative;
  z-index: 1;
}

.about::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 40%;
  top: 0;
  left: 0;
  background: url(../images/about2.png);
  background-size: cover;
  z-index: 0;
}

.about .img-div {
  position: relative;
  z-index: 2;
}

.about .img-div img {
  border-radius: 6px;
}

/* Stats Section */
.stats {
  background: var(--light-alt);
  position: relative;
}
.stats .pattern1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.stats .pattern1 img {
  width: 180px;
}
.stats .pattern2 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
}
.stats .pattern2 img {
  width: 200px;
}
.stats .info {
  position: relative;
  z-index: 4;
}
.stats .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 30px;
  background: var(--light);
  margin: 20px;
  border-radius: 10px;
  position: relative;
  z-index: 4;
}

.stats .item .text {
  text-align: center;
}
.stats .item .icon {
  width: 85px;
  height: 85px;
  background: var(--primary);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stats .item .icon img {
  width: 55px;
}
.stats .item .text h5 {
  font-size: 25px;
  font-weight: 600;
  font-family: var(--cursive);
}
.stats .item .text h5 span {
  font-size: 35px;
  margin-right: 5px;
}
.stats .item .text h6 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
  margin-top: 10px;
}

/* Clients Section */
.clients {
  position: relative;
  z-index: 2;
}
.clients .row {
  position: relative;
  z-index: 4;
}
.clients::after {
  content: "";
  position: absolute;
  background: url("../images/points-bg.jpg");
  background-size: cover;
  background-position: top;
  background-attachment: fixed;
  z-index: 0;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
}
.clients::before {
  content: "";
  position: absolute;
  background: #d3d3d360;
  background-size: cover;
  z-index: 2;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.clients .item img {
  max-width: 150px;
  width: 100%;
  /* margin: auto; */
}

.clients .item img {
  border-radius: 10px;
}

/* Points */
.points {
  position: relative;
  z-index: 4;
}
.points::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  height: 50%;
  width: 100%;
  background: var(--light-alt);
}
.points .point-tab {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  z-index: 6;
}

.points .tab-content {
  background: var(--light);
}

/* .points .card img {
  width: 100%;
  position: relative;
} */
/* .points .card .card-body {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
} */
.points .point-tab .nav {
  /* justify-content: center; */
  gap: 15px;
}
.points .point-tab button {
  width: 150px;
  height: 100px;
  background: var(--light);
  border-radius: 5px;
  color: var(--dark-alt);
  font-size: 16px;
  font-weight: 600;
  line-height: 130%;
  border: 0;
  outline: 0;
}
.points .point-tab button.active {
  background: var(--primary);
  color: var(--light);
}
.points .point-tab .tab-pane {
  width: 100%;
  max-width: 600px;
  /* margin: auto; */
  /* text-align: center; */
}
.points .point-tab p {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark-alt);
  margin-top: 30px;
}

/* Testimonials Section */
.testimonials {
  background: var(--light-alt);
  background-position: center;
  background-size: cover;
}

.testimonials .container {
  position: relative;
  z-index: 1;
}

.testimonials .testimonials-carousel .item {
  height: 100%;
}
.testimonials .testimonials-carousel {
  background-size: cover;
}

.testimonials .testimonials-carousel .owl-nav {
  position: absolute;
  top: -104px;
  right: 0;
}

.testimonials .testimonials-carousel .owl-nav button {
  background: var(--primary);
  color: var(--light);
  height: 45px;
  width: 45px;
  line-height: 45px;
  border-radius: 50%;
  font-size: 20px;
  transition: 0.5s all ease;
}

.testimonials .testimonials-carousel .owl-nav button:hover {
  background: var(--light);
  color: var(--primary);
}

.testimonials .card .heading {
  position: relative;
  z-index: 0;
}

.img-t img {
  height: 400px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}
.testimonials .card {
  border: 0;
  margin: auto;
  border-radius: 10px;
  min-height: 400px;
  margin-bottom: 20px;
  margin-top: 30px;
  position: relative;
  z-index: 0;
}
.testimonials .card i.fas {
  position: absolute;
  top: -25px;
  left: 20px;
  color: #ffffff;
  font-size: 20px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  z-index: 10;
  /* opacity: 0.5; */
}
.testimonials .card p {
  margin-top: 10px;
  font-weight: 500;
  font-size: 14px;
}
.testimonials .card h5 {
  margin-top: 20px;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: bold;
  font-family: var(--cursive);
  color: var(--primary);
}
.testimonials .card h6 {
  display: block;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--sans-serif);
  color: rgb(112, 111, 111);
  font-style: normal;
  margin-top: 5px;
  line-height: 130%;
}

/* Contact */
.contact {
  position: relative;
}

.contact .map {
  width: 100%;
  height: 100%;
  overflow: hidden;
  /* position: absolute;
  right: 0;
  width: 48%;
  top: 0;
  transform: translate(-50%); */
}

.contact .map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact .card {
  background: #fff9f7;
  border-radius: 0;
  padding: 20px;
}

.contact form label span {
  color: var(--primary);
}
.contact form .form-control {
  border: 1px solid #bbbbbb;
  outline: 0;
  background: var(--light);
  box-shadow: none;
  transition: 0.5s ease all;
}

.contact form .form-control:focus {
  box-shadow: 0 0 0 2px #fb855063;
  border: 1px solid var(--primary);
}

/* Footer */
.footer .logo {
  display: block;
  width: 200px;
  padding: 10px;
  background: var(--light);
  border-radius: 6px;
}
.footer h4 {
  font-size: 22px;
  font-weight: 700;
  font-family: var(--cursive);
  color: var(--primary);
  margin-bottom: 24px;
}

.footer ul {
  padding-left: 18px;
}

.footer ul li {
  color: var(--primary);
  list-style: disc;
  font-size: 25px;
}

.footer ul li:last-of-type:after {
  display: none;
}

.footer ul li a {
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
  color: var(--light);
  margin-bottom: 10px;
  transition: 0.5s ease all;
}

.footer ul li a:hover {
  color: var(--primary);
  transition: 0.5s ease all;
}
.footer .social {
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer .social a {
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  background: transparent;
  border-radius: 50%;
  transition: 0.5s all ease;
  border: 2px solid var(--light);
  color: var(--light);
}

.footer .social a:hover {
  background: var(--light);
  color: var(--primary);
}
.footer .item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  justify-content: flex-start;
  gap: 15px;
  transition: 0.5s all ease;
}
.footer .item .icon {
  width: 45px;
  height: 45px;
  background: var(--primary);
  color: var(--light);
  text-align: center;
  line-height: 45px;
  font-size: 20px;
  border-radius: 5px;
  transition: 0.5s all ease;
}
.footer .item:hover .icon {
  background: var(--light);
  color: var(--primary);
}
.footer .item .text {
  width: calc(100% - 85px);
}
.footer .item .text a {
  font-size: 16px;
  font-weight: 500;
  color: var(--light);
  line-height: 140%;
}
.footer .item .text b {
  color: var(--light);
}
.footer hr {
  height: 2px;
  width: 100%;
  opacity: 1;
  background: var(--dark-alt);
}

.clients.clients-p::before {
  background: var(--light);
}

.clients.clients-p::after {
  display: none;
}

/* Services Section */
.services {
  background: #fffcfb;
  position: relative;
  z-index: 1;
}

.services::after {
  content: "";
  position: absolute;
  height: 55%;
  width: 100%;
  top: 0;
  left: 0;
  background: url(../images/services/services-bg.jpg);
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.services::before {
  content: "";
  position: absolute;
  height: 55%;
  width: 100%;
  top: 0;
  left: 0;
  background: #ffffff8f;
  z-index: 1;
}

.services .heading {
  position: relative;
  z-index: 1;
}

.services .services-carousel .services-card {
  background: var(--light);
  overflow: hidden;
  height: 410px;
  transition: 0.5s all ease;
}

.services .services-carousel .services-card .card-img {
  height: 410px;
}

.services .services-carousel .services-card .card-img img {
  height: 410px;
  object-fit: cover;
  object-position: center;
}

.services .services-carousel .services-card .text {
  position: absolute;
  padding: 20px;
  overflow: hidden;
  /* height: 250px; */
  bottom: -225px;
  transition: 0.5s all ease;
}

/* .services .services-carousel .services-card:hover .text {
} */

.services .services-carousel .services-card:hover .text {
  height: auto;
  bottom: 0;
  transition: 0.5s all ease;
}

.services .services-carousel .services-card {
  position: relative;
  z-index: 2;
  transition: 0.5s all ease;
}

.services .services-carousel .services-card::after {
  content: "";
  /* background: #1f0a01a4; */
  background: linear-gradient(#1f0a0100, #1f0a01);
  position: absolute;
  z-index: 0;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  transition: 0.5s all ease;
}

.services .services-carousel .services-card:hover::after {
  background: rgba(0, 0, 0, 0.877);
}

.services .services-carousel .services-card h3 {
  font-size: 22px;
  color: var(--dark);
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  height: 40px;
  z-index: 2;
  transition: 0.5s all ease;
}

.services .services-carousel .services-card h3 {
  color: var(--light);
}

.services .services-carousel .services-card p {
  font-size: 14px;
  color: var(--dark-alt);
  position: relative;
  z-index: 2;
  transition: 0.5s all ease;
  color: var(--light);

  min-height: 210px;

  /* opacity: ; */
  /* visibility: hidden; */
  /* display: none; */
  /* text-align: center; */
}

/* .services .services-carousel .services-card:hover p {
  display: block;
} */

.services .services-carousel .services-card .icon i {
  /* background: var(--secondary); */
  /* height: 85px; */
  /* width: 85px; */
  /* border-radius: 50%; */
  /* line-height: 85px; */
  /* text-align: center; */
  /* margin: auto; */
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
  color: var(--dark);
  font-size: 45px;
  transition: 0.5s all ease;
}

.services .services-carousel .services-card .icon img {
  position: relative;
  width: 140px;
  margin-bottom: 30px;
  z-index: 2;
}

.services .services-carousel .services-card .icon i {
  color: var(--light);
}

/* .services .services-carousel .services-card:hover .icon {
  background: #f1743a;
} */

.services .services-carousel .services-card .icon img {
  width: 50px;
  display: inline-block;
}

.services .services-carousel .owl-dot span {
  display: inline-block;
  background: #9b9b9b;
  height: 15px;
  width: 15px;
}

.services .services-carousel .owl-dot.active span {
  background: var(--dark);
}

.services .services-carousel .owl-dot:hover span {
  background: var(--dark);
}

/* Goal & Mission */
.goal-mission {
  background: url(../images/goal-bg.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
}

.goal-mission::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background: #00000065;
}

.goal-mission .head {
  position: relative;
  z-index: 4;
}

.goal-mission .card {
  position: relative;
  z-index: 4;
  min-height: 170px;
  background: var(--light);
  padding: 35px;
}

.goal-mission .card .icon {
  color: var(--primary);
  font-size: 65px;
}

.goal-mission .card .card-text h4 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* .goal-mission .card:hover .card-text h4 {
  color: #97c1ed;
} */

.goal-mission .card .card-text p {
  margin: 0;
}

.goal-mission .card2 {
  position: relative;
  z-index: 4;
  background: var(--primary);
  padding: 30px;
}

.goal-mission .card2 .icon {
  color: var(--light);
  font-size: 65px;
}

.goal-mission .card2 .card-text h4 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--light);
  transition: 0.4s all ease;
}

/* .goal-mission .card2:hover .card-text h4 {
  color: #97c1ed;
} */

.goal-mission .card2 .card-text p {
  color: var(--light);
  margin: 0;
}

/* About Us Page */
.about-hero {
  background: url(../images/about/about-hero.jpg);
  height: 400px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
  position: relative;
}

.inner-hero::after {
  content: "";
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.527);
  height: 100%;
  width: 100%;
  position: absolute;
}

.inner-hero .heading {
  margin-bottom: 10px;
}

.inner-hero .breadcrumb li a {
  color: var(--primary);
  transition: 0.4s all ease;
}

.inner-hero .breadcrumb li a:hover {
  color: #fc7130;
}

.inner-hero .breadcrumb li {
  color: var(--light-alt);
  font-weight: 600;
  font-size: 18px;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--light);
}

.inner-hero .text {
  position: relative;
  z-index: 3;
  top: 60px;
}

.about-info {
  background-size: cover;
  background-position: center;
  position: relative;
  padding-bottom: 100px;
}

.about-info::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 70%;
  z-index: 0;
  background: var(--light-alt);
  background-size: cover;
  background-position: center;
  border-radius: 10px 0 0 10px;
}

.about-info .text {
  position: relative;
  z-index: 2;
  padding-left: 40px;
}

.about-info p {
  margin-bottom: 10px;
}

.about-info .info-box .img {
  height: 500px;
  position: relative;

  width: 620px;
  border-radius: 0 10px 10px 0;
  z-index: 4;
}

.about-info .info-box .img img {
  height: 100%;
  position: relative;
  left: -130px;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  border-radius: 0 10px 10px 0;
  z-index: 4;
  object-fit: cover;
}

/* .about-info .info-box .img img {
  width: 100%;
  height: 100%;
  border-radius: 0 10px 10px 0;
  object-fit: cover;
} */

/* .core-team .card {
  background: var(--light);
  padding: 15px;
  border: 0;
}

.core-team .card .image {
  height: 240px;
  overflow: hidden;
  border-radius: 10px;
}

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

.core-team .card .text {
  padding: 15px 0;
}

.core-team .card .text h4 {
  font-size: 26px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
  text-transform: capitalize;
}

.core-team .card .text p {
  height: 100px;
  overflow: hidden;
}

.core-team .card .text h5 {
  color: var(--primary);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
  text-transform: capitalize;
} */

.core-team .core-team-carousel .c-head {
  margin-bottom: 20px;
}

.core-team .core-team-carousel .c-head h4 {
  font-size: 26px;
  color: var(--dark);
  font-weight: 600;
  margin-bottom: 10px;
}

.core-team .core-team-carousel .c-head h5 {
  font-size: 18px;
  color: var(--primary);
  font-weight: 500;
}

.core-team .core-team-carousel .text p {
  text-align: justify;
  padding-right: 40px;
}

.core-team .core-team-carousel {
  background: var(--light);
  padding: 30px;
  border-radius: 10px;
}

.core-team .core-team-carousel .owl-dots {
  text-align: start;
}

.core-team .core-team-carousel .owl-dots .owl-dot span {
  background: var(--light-alt);
}

.core-team .core-team-carousel .owl-dots .owl-dot.active span {
  background: var(--primary);
}

.core-team .core-team-carousel .owl-dots .owl-dot:hover span {
  background: var(--primary);
}

.core-team .core-team-carousel .item {
  height: 300px;
}

.core-team .core-team-carousel .item .image {
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
}

.core-team .core-team-carousel .item .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.scenario {
  background: var(--light-alt);
}

.scenario p {
  text-align: justify;
}

.scenario .image {
  position: relative;
  transition: 0.5s all ease;
}

.scenario .image img {
  border-radius: 10px;
}

.scenario .image .img1 {
  position: relative;
  z-index: 5;
}

.scenario .image .img2 {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  transform: rotate(4deg);
  transition: 0.5s all ease;
}

.scenario .image:hover .img2 {
  transform: rotate(0);
}

.scenario .image .img3 {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  transform: rotate(-4deg);
  transition: 0.5s all ease;
}

.scenario .image:hover .img3 {
  transform: rotate(0);
}

/* Contact Us Page */
.contact-info {
  background: var(--light-alt);
  position: relative;
}

/* .contact-info::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  border-radius: 0 20px 20px 0;
  z-index: 0;
  background: #fcf9f6;
} */

.contact-info .info .card {
  background: none;
  border: 0;
  border-radius: 6px;
  position: relative;
  z-index: 5;
  /* padding: 20px; */
  margin-bottom: 25px;
  /* box-shadow: 0 0 10px 1px #9591921c !important; */
  transition: 0.5s all ease;
}

.contact-info .heading {
  position: relative;
  z-index: 5;
}

.contact-info .social {
  display: flex;
  position: relative;
  z-index: 5;
  gap: 20px;
  margin-top: 35px;
}

.contact-info .heading {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 30px !important;
}

.contact-info .social a {
  color: var(--primary);
  font-size: 20px;
}

.contact-info .info .card h5 {
  font-size: 16px;
  color: #666162;
  position: relative;
  z-index: 5;
  margin-bottom: 10px;
}

.contact-info .info .card h4 {
  font-size: 16px;
  position: relative;
  z-index: 5;
  color: var(--dark-alt);
}

.contact-info .info .card h4 a {
  color: var(--dark-alt);
  transition: 0.4s all ease;
}

/* .contact-info .info .card h4 a:hover {
  color: var(--primary);
} */

.contact-info .info .card .icon {
  /* height: 50px; */
  /* width: 50px; */
  /* line-height: 50px; */
  /* border-radius: 50%; */
  /* text-align: center; */
  color: var(--primary);
  font-size: 30px;
  /* background: #fff6f1; */
  /* margin-bottom: 10px; */
  /* border: 1px solid #fb85504f; */
  transition: 0.5s all ease;
}

/* .contact-info .info .card:hover {
  box-shadow: 0 0 30px 1px #95919246 !important;
} */

/* .contact-info .info .card:hover .icon {
  background: var(--primary);
  color: #fff6f1;
  border: 1px solid var(--primary);
} */

.contact-info .form-card {
  background: none;
  border: 0;
  position: relative;
  z-index: 4;
  padding: 15px;
  border-radius: 6px;
}

.contact-info .form-card form label {
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 16px;
  opacity: 0.7;
}

.contact-info form .form-control {
  border: 1px solid #bbbbbb;
  outline: 0;
  background: var(--light);
  box-shadow: none;
  height: 45px;
  transition: 0.5s ease all;
}

.contact-info form .form-control:focus {
  box-shadow: 0 0 0 2px #fb86502d;
  border: 1px solid var(--primary);
}

.contact-info .card {
  min-height: 640px;
  overflow: hidden;
  border: 0;
}

.contact-map {
  background: var(--light);
  height: 640px;
}

.contact-map .map iframe {
  width: 100%;
  height: 640px;
}

/* .card-info {
  background: #f8f5f3;
  padding: 50px 0 !important;
} */

.card-info .icon {
  background: var(--light);
  color: var(--primary);
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  border-radius: 50%;
}

/* Services Page */

.services-info .services-content-carousel {
  background: var(--light-alt);
  padding: 40px;
}

.services-info .services-content-carousel .icon img {
  width: 60px;
  filter: invert(1);
  margin-bottom: 20px;
}

.services-info .services-content-carousel .text h3 {
  margin-bottom: 20px;
  font-size: 26px;
  font-weight: 600;
}

.services-info .services-content-carousel .text p {
  margin-bottom: 10px;
}

.services-info .services-content-carousel .owl-nav {
  text-align: start;
}

.services-info .services-content-carousel .owl-nav button {
  height: 40px;
  width: 40px;
  background: var(--primary);
  line-height: 40px;
  color: var(--light);
  border-radius: 6px;
  transition: 0.5s all ease;
}

.services-info .services-content-carousel .owl-nav button:hover {
  background: #ff7434;
}

.services-info .services-box {
  border-radius: 10px;
  height: 500px;
  overflow: hidden;
  background: var(--light-alt);
}

.services-info .services-box .img {
  height: 500px;
  overflow: hidden;
}

.services-info .services-box .img img {
  height: 500px;
  object-fit: cover;
  object-position: center;
}

.services-info {
  background: var(--light-alt);
}

/* .services-info .text{
  display: flex;
} */

.services-info .card {
  padding: 30px;
  margin-bottom: 20px;
  min-height: 450px;
  border: 1px solid #cfcccb;
  transition: 0.5s all ease;
  text-align: center;
  position: relative;
}

.services-info .card .num {
  position: absolute;
  font-size: 60px;
  font-weight: 600;
  /* font-family: var(--sans-serif-alt); */
  color: var(--dark);
  opacity: 0;
  top: 30px;
  left: 30px;
  transition: 0.5s all ease;
}

.services-info .card:hover .num {
  opacity: 0.3;
  color: var(--light);
}

.services-info .card-u {
  min-height: 330px;
}

.services-info .card .icon {
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.services-info .card .icon .img1 {
  width: 65px;
  position: relative;
  transition: 0.5s all ease;
}

.services-info .card:hover .icon .img1 {
  opacity: 0;
}

.services-info .card .icon .img2 {
  width: 65px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  opacity: 0;
  transition: 0.5s all ease;
}

.services-info .card:hover .icon .img2 {
  opacity: 1;
}

.services-info .card .icon img {
  width: 65px;
  transition: 0.5s all ease;
}

.services-info .card:hover .icon img {
  width: 65px;
}

.services-info .card:hover {
  background: var(--primary);
  border: 1px solid var(--primary);
}

.services-info .card h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--dark-alt);
  margin-bottom: 20px;
  transition: 0.5s all ease;
}

.services-info .card:hover h3 {
  color: var(--light);
}

.services-info .card p {
  font-size: 15px;
  text-align: center;
  transition: 0.5s all ease;
}

.services-info .card:hover p {
  color: var(--light);
}

.services-area {
  background: #afacac59;
  position: relative;
  z-index: 2;
}

.services-area::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: url(../images/about/info-bg.jpg);
  background-position: center;
  background-size: cover;
  opacity: 0.1;
}

.services-area .heading {
  position: relative;
  z-index: 4;
}

.services-area .card {
  border: 0;
  padding: 20px;
  text-align: center;
  height: 150px;
  position: relative;
  z-index: 4;
}

.services-area .card .icon img {
  width: 60px;
  margin-bottom: 20px;
  opacity: 0.8;
}

.services-area .card h4 {
  font-size: 20px;
  color: var(--primary);
}

/* Testimonials Page */

.testimonials-p {
  background: #020202d5;
  position: relative;
  z-index: 2;
}

.testimonials-p .heading {
  position: relative;
  z-index: 3;
  color: var(--light);
}

.testimonials-p .item p {
  color: var(--light);
  position: relative;
}

.testimonials-p .item p i {
  font-size: 20px;
  opacity: 0.2;
}

.testimonials-p .item .head-text {
  color: var(--light);
}

.testimonials-p .item .head-text h5 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}

.testimonials-p .item .head-text h6 {
  font-size: 18px;
  font-weight: 500;
}

.testimonials-p .testimonials-p-carousel .item {
  text-align: center;
}

.testimonials-p .testimonials-p-carousel .item .icon {
  height: 100px;
  width: 100px;
  overflow: hidden;
  border-radius: 50%;
}

.testimonials-p .testimonials-p-carousel .item .icon img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.testimonial-p {
  background: var(--light-alt);
}

.testimonial-p hr {
  margin: 50px 0;
}

.testimonial-p .head {
  padding-left: 20px;
}

.testimonial-p .head h4 {
  font-size: 22px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}

.testimonial-p .head h5 {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-alt);
  margin-bottom: 10px;
}

.testimonial-p .head h6 {
  font-size: 15px;
  font-weight: 500;
  color: var(--primary);
}

.testimonial-p .card {
  padding: 25px;
}

.testimonial-p p i {
  color: var(--dark-alt);
  font-size: 16px;
  opacity: 0.5;
}

.testimonial-p .img {
  width: 80px;
  border-radius: 10px;
  overflow: hidden;
}

.testimonial-p .img img {
  width: 80px;
  border-radius: 50%;
  height: 80px;
  object-fit: cover;
  object-position: center;
}

.realtors .table thead {
  background: var(--light-alt);
}

.realtors .table tr td,
.realtors .table thead th {
  padding: 15px;
}
.realtors .table tr td:nth-child(1) {
  width: 20%;
  font-weight: bold;
}

.realtors .table tr td:nth-child(2) {
  width: 40%;
}

.realtors .table tr td:nth-child(3) {
  width: 40%;
}

.realtors .card {
  padding: 25px;
  border: 0;
}

.contact-info .information {
  padding: 50px 30px;
}

.contact-info .card-info {
  background: none;
  position: relative;
  border: 0;
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #c7c3c3;
  min-height: 120px;
}

.contact-info .card-info .icon {
  background: var(--primary);
  color: var(--light);
  border: 0;
  height: 50px;
  width: 50px;
  line-height: 50px;
  margin: auto;
  margin-bottom: 15px;
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
}

.contact-info .card-info h5 {
  font-size: 16px;
  color: #636060;
  margin: 15px 0 8px 0;
}

.contact-info .card-info h4 {
  font-size: 18px;
  color: var(--dark);
}

.contact-info .card-info h4 a {
  font-size: 18px;
  color: var(--dark);
  line-height: 30px;
  transition: 0.5s all ease;
}

.contact-info .card-info h4 a:hover {
  color: var(--primary);
}

.clients.clients-p::after {
  opacity: 0;
}

/* Projects */

.projects-p .logos {
  background: var(--light);
  /* border: 1px solid #cac4c2; */
  display: flex;
  background: var(--light-alt);
  align-items: center;
  justify-content: center;
  min-height: 380px;
  border-radius: 10px 0 0 10px;
  overflow: hidden;
}

.projects-p .logos img {
  width: 250px;
}

.projects-p .logos.advait {
  background: #4a4563;
}

.projects-p .logos.avighna {
  background: #e5eef5;
}

.projects-p .logos.gagan {
  background: #dff2c6;
}

.projects-p .logos.mariano {
  background: #181717;
}

.projects-p .logos.sai {
  background: #6eb8e5;
}

.projects-p .logos.sarvoday {
  background: #0f0f0f;
}

.projects-p .logos.patwardhan {
  background: #eeffdc;
}

.projects-p .logos.shivnath {
  background: var(--light);
}

.projects-p .logos.symphony {
  background: var(--light);
}

.projects-p .logos.symphony img {
  width: 350px;
}

.projects-p .text h4 {
  font-size: 24px;
  color: var(--primary);
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.projects-p .text a.button {
  display: inline-block;
  color: var(--light);
  font-weight: 600;
  margin-top: 20px;
}

.projects-p .text a.button:hover {
  color: var(--light);
}

.projects-p .card-p {
  margin-bottom: 30px;
  min-height: 380px;
  align-items: center;
  background: var(--light);
  padding: 0;
  border-radius: 10px;
}

.projects-p {
  background: var(--light-alt);
}

.projects-p .card-p .text {
  padding: 30px;
}

.projects-p .card-p.card-reverse .logos {
  border-radius: 0 10px 10px 0;
}

/* Responsive */
@media (max-width: 1280px) {
  .header .navbar-nav {
    padding-left: 100px;
  }
}
@media (max-width: 1200px) {
  .header .navbar-nav .nav-link {
    color: var(--dark);
  }

  .header .contact-number a {
    color: var(--dark);
  }

  .header .contact-number a i {
    color: var(--dark);
  }

  .header .contact-number a span {
    border-color: var(--dark);
  }

  .header .navbar-nav {
    margin-top: 85px;
  }

  .about-info .info-box .img {
    height: 440px;
  }

  .about-info .info-box .img img {
    left: -210px;
  }

  .projects-p .logos.symphony img {
    width: 280px;
  }

  .projects-p .card-p .text {
    padding: 10px 40px;
  }

  .services-info .info-row {
    align-items: start !important;
  }

  .services-info .info-row .card {
    height: 100% !important;
  }

  .header {
    background: var(--light);
    box-shadow: 0 5px 10px 1px rgba(0, 0, 0, 0.205);
  }
}
@media (max-width: 1199px) {
}
@media (max-width: 992px) {
  .header .navbar-nav {
    margin-top: 85px;
    padding-left: 0;
    text-align: center;
  }

  .header {
    background: var(--light);
    box-shadow: 0 5px 10px 1px rgba(0, 0, 0, 0.205);
  }

  .services-area .card h4 {
    font-size: 16px;
  }

  .services-area .card .icon img {
    width: 50px;
  }

  .projects-p .card-p .text {
    padding: 20px;
  }

  .projects-p .logos img {
    width: 250px !important;
  }

  .about-info::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    height: 60%;
    width: 100%;
    z-index: 0;
    display: none;
    background: #f9f6f5;
    background-size: cover;
    background-position: center;
    border-radius: 10px 10px 0 0;
  }

  .about-info .info-box .img {
    height: auto;
    width: auto;
    margin-bottom: 30px;
  }

  .about-info .info-box .img img {
    position: relative;
    top: 0;
    left: 0;
    border-radius: 10px;
    transform: none;
  }

  .about-info .text {
    padding-left: 0;
  }

  .projects-p .logos {
    min-height: 550px;
  }

  .header .navbar-nav .nav-link {
    color: var(--dark);
  }

  .header .contact-number a {
    color: var(--dark);
  }

  .header .contact-number a i {
    color: var(--dark);
  }

  .header .contact-number a span {
    border-color: var(--dark);
  }

  .testimonials .testimonials-carousel .owl-nav button {
    height: 40px;
    width: 40px;
    line-height: 40px;
  }

  .stats .item .text h5 {
    font-size: 20px;
  }

  .stats .item .icon {
    height: 60px;
    width: 60px;
  }

  .stats .item .icon img {
    width: 40px;
  }

  .card-text {
    padding-left: 25px;
  }
}
@media (max-width: 767px) {
  .g-5,
  .gx-5 {
    --bs-gutter-x: 0 !important;
  }
  .header .navbar-brand {
    width: 120px;
  }
}
@media (max-width: 600px) {
  .projects-p .card-p.card-reverse {
    flex-direction: column-reverse;
  }

  .projects-p .card-p.card-reverse .logos {
    border-radius: 10px 10px 0 0;
  }

  .section {
    width: 100%;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
  }

  .stats .info {
    margin-bottom: 40px;
  }

  .card-text {
    padding-left: 0px;
  }

  .heading {
    font-size: 28px;
  }

  .sub-heading {
    font-size: 18px;
  }

  .projects-p .logos img {
    width: 250px;
  }

  .about::after {
    content: "";
    position: absolute;
    height: 30%;
    width: 100%;
    top: 0;
    left: 0;
    background: url(../images/about2.png);
    background-size: cover;
    z-index: 0;
  }

  .testimonials .testimonials-carousel .owl-nav {
    position: static;
  }

  .goal-mission .card {
    min-height: auto;
    padding: 15px;
  }

  .goal-mission .card .icon {
    font-size: 52px;
  }

  .goal-mission .card .card-text h4 {
    font-size: 24px;
  }

  .contact .map iframe {
    height: 380px;
  }

  .footer .logo {
    width: 150px;
  }

  .footer .social a {
    height: 35px;
    width: 35px;
    line-height: 35px;
    font-size: 16px;
  }

  .footer ul {
    padding-left: 25px;
  }

  .core-team .core-team-carousel .item {
    height: auto;
  }

  .core-team .core-team-carousel .item .image {
    height: 210px;
  }

  .scenario .image {
    margin: 0 !important;
    margin-bottom: 30px !important;
  }

  .scenario .image img {
    margin: 0 !important;
  }

  .projects-p .card-p {
    margin: 0;
    margin-bottom: 60px;
  }

  .services-info .text {
    margin-bottom: 50px;
  }

  .projects-p .card-p .text {
    padding: 35px;
  }

  .projects-p .logos {
    min-height: 320px;
    border-radius: 10px 10px 0 0;
  }

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

  .contact-info .card-info {
    padding: 12px;
    margin-bottom: 38px;
    min-height: 110px;
  }

  .copyright {
    flex-direction: column;
    justify-content: start !important;
  }

  .core-team .core-team-carousel .text p {
    padding-right: 0;
    padding-bottom: 20px;
  }

  .services-info .card-u {
    height: auto;
  }

  .services-info .card {
    height: auto;
  }

  .services-info .card {
    padding: 15px;
    min-height: auto !important;
  }

  .contact-info .form-card {
    padding: 0;
  }

  .contact-info .information {
    padding: 25px 15px;
  }

  .contact .card {
    padding: 0;
  }
}

@media (max-width: 350px) {
  .goal-mission .card .icon {
    font-size: 42px !important;
  }

  .contact .card {
    padding: 0;
  }

  .heading {
    font-size: 26px;
  }

  /* .lens-mobile {
    display: none;
  } */
}

/* @media (max-width: 750px) and (min-width: 600px) {
  
} */
/* code added by ankita 12-06-2024 */
.privacy-policy p {
  margin-bottom: 12px;
}
.privacy-policy h4 {
  font-size: 26px;
  color: var(--dark);
  font-weight: 600;
  margin-bottom: 10px;
}
.privacy-policy h5 {
  font-size: 18px;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 10px;
}
.privacy-policy a {
  color: var(--primary);
}
.privacy-policy ul {
  margin-left: 20px;
}
.privacy-policy ul li {
  font-size: 16px;
  font-weight: 400;
  color: var(--dark-alt);
  line-height: 160%;
  list-style: square;
  margin-top: 10px;
}
.privacy-policy ul li::marker {
  color: var(--primary);
}
.footer-mid-text a {
  color: var(--light);
  font-weight: 300;
  font-size: 14px;
  transition: 0.5s ease-in-out;
}
.footer-mid-text a::hover {
  color: var(--primary);
}
