@import "./variables.css";

/* Header */
.header {
  width: 100%;
  position: sticky;
  top: 0;
  background: var(--light);
  padding: 10px 0;
  z-index: 9;
}
.header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .header-inner .logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.header .header-inner .logo img:first-child {
  width: 70px;
}
.header .header-inner .logo img:last-child {
  width: 100px;
}
.header .header-inner .actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.header .header-inner .actions p {
  font-size: 16px;
  font-weight: 600;
  margin-right: 20px;
}
.header .header-inner .actions p i {
  font-size: 14px;
  color: var(--primary);
  margin-right: 5px;
}
.header .header-inner .actions p a {
  color: var(--primary);
  transition: 0.5s ease all;
}
.header .header-inner .actions p a:hover {
  color: var(--primary);
}
.header .header-inner .actions p span {
  display: inline-block;
  margin: 0 10px;
  color: var(--dark-alt);
}
.header .header-inner .actions .navbar-toggle {
  width: 35px;
  height: 35px;
  background: var(--light);
  color: var(--primary);
  outline: none;
  border: 1px solid var(--primary);
  border-radius: 5px;
  text-align: center;
  line-height: 35px;
  transition: 0.5s ease all;
}
.header .header-inner .actions .navbar-toggle:hover {
  background: var(--primary);
  color: var(--light);
}
.header .header-inner .actions .whatsapp {
  width: 35px;
  height: 35px;
  background: rgb(76, 173, 76);
  color: var(--light);
  line-height: 35px;
  text-align: center;
  border-radius: 5px;
  margin-right: 20px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: -100px;
  width: 100%;
  height: 100%;
  z-index: 9;
  overflow-y: auto;
  background: var(--light);
  align-items: flex-start;
  display: block;
  opacity: 0;
  pointer-events: none;
  transition: 0.5s ease all;
}
.navbar.show {
  left: 0;
  opacity: 1;
  pointer-events: all;
}
.navbar .navbar-toggle {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--primary);
  color: var(--light);
  width: 40px;
  height: 40px;
  border: 0;
  outline: 0;
  text-align: center;
  line-height: 40px;
  border-radius: 0 0 0 5px;
}
.navbar .navbar-nav {
  position: static;
  inset: auto;
}
.navbar .navbar-nav .nav-item {
  margin: 0 0 10px 0;
}
.navbar .navbar-nav .nav-link {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--dark-alt);
  transition: 0.5s ease all;
}
.navbar .navbar-nav .nav-link:hover {
  color: var(--primary);
}
.navbar .navbar-nav .dropdown-menu {
  border: 0;
  border-radius: 0;
  border-left: 3px solid var(--primary);
  padding: 0;
}
.navbar .navbar-nav .dropdown-menu .dropdown-item {
  color: var(--dark-alt);
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  margin: 5px 0;
  transition: 0.5s ease all;
}
.navbar .card {
  border: 0;
  border-radius: 5px;
  overflow: hidden;
  background: var(--light-alt);
}
.navbar .card .card-body {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
}
.navbar .card .icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  text-align: center;
  line-height: 50px;
  border-radius: 50px;
  outline: 5px solid #b48a443b;
  color: var(--light);
}
.navbar .card .text {
  width: calc(100% - 70px);
}
.navbar .card .text p {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
}
.navbar .card .text a {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: var(--dark-alt);
  line-height: 150%;
  transition: 0.5s ease all;
}
.navbar .card .text a:hover {
  color: var(--primary);
}
.navbar .card .text span {
  display: block;
  margin-top: 20px;
  background: var(--light);
  padding: 10px 20px;
  border-radius: 5px;
}
.navbar .card .text span i {
  display: inline-block;
  background: var(--primary);
  margin-right: 10px;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  color: var(--light);
  border-radius: 3px;
}
.navbar .card .text span i.fa-whatsapp {
  margin-left: 30px;
  background: rgb(76, 173, 76);
}

/* Hero Section */
.hero {
  margin-top: 30px;
}
.hero .overlay {
  position: relative;
  width: 100%;
  max-height: 80vh;
  min-height: 400px;
  overflow: hidden;
  border-radius: 10px;
  transition: 0.5s ease all;
}
.hero .overlay .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  width: 80%;
  transition: 0.5s ease all;
}
.hero .overlay .content h1 {
  font-size: 40px;
  font-weight: 800;
  color: var(--light);
  text-transform: capitalize;
  text-shadow: 0 7px 3px #0000004a;
  transition: 0.5s ease all;
  opacity: 0;
  pointer-events: none;
}
.hero .overlay.active .content h1 {
  opacity: 1;
  pointer-events: all;
}
.hero .overlay .content .video-btn {
  width: 70px;
  height: 70px;
  border-radius: 70px;
  text-align: center;
  line-height: 70px;
  border: 0;
  outline: 7px solid #fff5;
  background: var(--light);
  color: var(--primary);
  font-size: 20px;
  transition: 0.5s ease all;
  margin: 70px 0 50px 0;
  opacity: 0;
  pointer-events: none;
}
.hero .overlay.active .content .video-btn {
  opacity: 1;
  pointer-events: all;
}
.hero .overlay:hover .content .video-btn {
  opacity: 1;
  pointer-events: all;
}
.hero .overlay .content .video-btn:hover {
  background: var(--dark);
}
.hero .overlay .content p {
  font-size: 16px;
  font-weight: 600;
  color: var(--light);
  text-shadow: 0 7px 3px #0000004a;
  text-transform: capitalize;
  opacity: 0;
  pointer-events: none;
  transition: 0.5s ease all;
}
.hero .overlay.active .content p {
  opacity: 1;
  pointer-events: all;
}
.hero .overlay .content .scroll {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: var(--light);
  position: relative;
  margin: 50px auto 20px;
  opacity: 0;
  pointer-events: none;
  transition: 0.5s ease all;
}
.hero .overlay.active .content .scroll {
  opacity: 1;
  pointer-events: all;
}
.hero .overlay .content .scroll::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 50px;
  background: var(--light);
  animation: scrollAnim 1s infinite;
}
@keyframes scrollAnim {
  from {
    height: 50px;
  }
  to {
    height: 0;
  }
}
.hero .overlay .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transition: 0.5s ease all;
}
.hero .overlay .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.hero .overlay.active .image {
  opacity: 1;
  pointer-events: all;
}
.hero .overlay .image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  z-index: 1;
  background: linear-gradient(var(--primary), var(--secondary));
  opacity: 0.4;
}
.hero .overlay video {
  position: relative;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
.hero .overlay video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* About */
.about .image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 5px;
}
.about .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Mission */
.mission .item {
  background: var(--light-alt);
  padding: 20px;
  border-radius: 10px;
}
.mission .item h4 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
.mission .item h4 i {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--light);
  text-align: center;
  line-height: 40px;
  font-size: 16px;
  border-radius: 40px;
}
.mission .item h4 span {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
}
.mission .item ul li {
  margin-bottom: 15px;
}
.mission .item ul li:last-child {
  margin-bottom: 0;
}
.mission .item ul li b {
  color: var(--primary);
}

/* Points Section */
.points .card {
  border: 0;
  background: var(--primary);
}
.points .card .item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.points .card .item .icon {
  width: 70px;
}
.points .card .item .text h5 {
  font-size: 20px;
  font-weight: 500;
  color: var(--light);
  line-height: 150%;
}

/* Core Values */
.core-values .items {
  background: url("../images/value.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 100px 0;
  position: relative;
  margin-top: 50px;
}
.core-values .items::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(var(--primary), var(--secondary));
  opacity: 0.5;
}
.core-values .items .card {
  border: 0;
  height: 100%;
  box-shadow: var(--shadow);
}
.core-values .items .card .card-body {
  padding: 30px;
}
.core-values .items .card h6 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
}

/* Testimonials Section */
.testimonial-carousel {
  margin-top: 30px;
}
.testimonial-carousel .owl-nav {
  margin-top: 20px;
}
.testimonial-carousel .owl-nav button {
  margin: 0 5px !important;
  padding: 0 !important;
  width: 40px !important;
  height: 40px !important;
  background: var(--primary) !important;
  border-radius: 5px !important;
  color: var(--light) !important;
}
.testimonial-carousel .owl-item.active {
  transform: scale(0.9);
}
.testimonial-carousel .owl-item.active.center {
  transform: scale(1);
}
.testimonial-carousel .item {
  padding-top: 50px;
  transition: 0.5s ease all;
}
.testimonial-card {
  position: relative;
  border: 0;
  background: var(--light-alt);
  text-align: center;
  transition: 0.5s ease all;
}
.owl-item.active.center .testimonial-card {
  background: var(--primary);
}
.testimonial-card .icon {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: var(--light);
  text-align: center;
  line-height: 60px;
  border-radius: 60px;
  outline: 3px solid #247cb066;
}
.owl-item.active.center .testimonial-card .icon {
  background: var(--light);
  color: var(--primary);
}
.testimonial-card .card-body {
  padding: 50px 30px 30px;
}
.testimonial-card .card-body h5 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 20px;
}
.owl-item.active.center .testimonial-card .card-body h5 {
  color: var(--light);
}
.testimonial-card .card-body p {
  font-size: 14px;
  color: var(--dark-alt);
}
.owl-item.active.center .testimonial-card .card-body p {
  color: var(--light-alt);
}

/* FAQ Section */
.faq .image {
  position: sticky;
  top: 100px;
}
.faq .accordion {
  border-radius: 10px;
  overflow: hidden;
}
.faq .accordion-item {
  border: 0;
  background: var(--light);
}
.faq .accordion-item .accordion-button {
  outline: 0;
  box-shadow: none;
  padding: 20px 30px;
  border-radius: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--light);
  background: var(--primary);
  border-radius: 10px 10px 0 0;
  border-bottom: 0;
}
.faq .accordion-item .accordion-button::after {
  filter: invert(1);
}
.faq .accordion-item .accordion-button.collapsed {
  background: var(--light);
  color: var(--dark-alt);
  border-radius: 0;
  border-bottom: 1px solid #247cb066;
}
.faq .accordion-item .accordion-button.collapsed::after {
  filter: invert(0);
}
.faq .accordion-item.show {
  background: var(--primary);
}
.faq .accordion-item .accordion-collapse {
  background: var(--primary);
  border-radius: 0 0 10px 10px;
  border-bottom: 2px solid var(--secondary);
  padding: 0 20px 20px 20px;
}
.faq .accordion-item .accordion-collapse p {
  color: var(--light);
  font-size: 14px;
  font-weight: 400;
}

/* Footer */
.footer {
  background-color: var(--secondary);
  background-image: url(../images/footer-bg.png);
  background-position: bottom center;
  background-size: contain;
  background-repeat: no-repeat;
}
.footer .content {
  height: 100%;
  border-right: 1px solid var(--light);
}
.footer h6 {
  font-size: 20px;
  font-weight: 600;
  color: var(--light);
  margin-bottom: 20px;
}
.footer ul li {
  margin-bottom: 7px;
}
.footer ul li:last-child {
  margin-bottom: 0;
}
.footer ul li a {
  font-size: 14px;
  font-weight: 400;
  color: var(--light);
}
.footer .item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
  margin-bottom: 10px;
}
.footer .item .icon {
  width: 20px;
  text-align: center;
  font-size: 18px;
  color: var(--light);
}
.footer .item .text {
  width: calc(100% - 40px);
  padding-right: 30px;
}
.footer .item .text a {
  font-size: 14px;
  font-weight: 400;
  color: var(--light);
}
.footer .social {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
}
.footer .social a {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  border: 0;
  outline: 0;
  color: var(--light);
  text-align: center;
  line-height: 30px;
  font-size: 14px;
  transition: 0.5s ease all;
}
.footer .social a.facebook {
  background: #3b5998;
}
.footer .social a.instagram {
  background: #e4405f;
}
.footer .social a.youtube {
  background: #c4302b;
}
.footer .social a.linkedin {
  background: #0077b5;
}
.footer .social a.facebook:hover {
  background: var(--light);
  color: #3b5998;
}
.footer .social a.instagram:hover {
  background: var(--light);
  color: #e4405f;
}
.footer .social a.youtube:hover {
  background: var(--light);
  color: #c4302b;
}
.footer .social a.linkedin:hover {
  background: var(--light);
  color: #0077b5;
}
.footer-bottom {
  padding: 20px 0;
  background: var(--secondary);
}
.footer-bottom p {
  font-size: 14px;
  font-weight: 400;
  color: var(--light-alt);
}
.footer-bottom p a {
  color: var(--light);
}

/* Banner Section */
.banner .card {
  background: var(--primary);
  border-radius: 10px;
  border: 0;
  box-shadow: 0;
  margin: 30px 0 0;
  padding: 20px 30px;
}
.banner .card .title {
  font-size: 20px;
  font-weight: 600;
  color: var(--light);
}
.banner .card .breadcrumb {
  margin: 0;
  justify-content: flex-end;
}
.banner .card .breadcrumb .breadcrumb-item {
  font-size: 14px;
  font-weight: 400;
  color: var(--light);
}
.banner .card .breadcrumb .breadcrumb-item a {
  color: var(--light);
}
.banner .card .breadcrumb-item + .breadcrumb-item::before {
  color: var(--light);
}

/* Gallery */
.gallery a {
  display: inline-block;
  width: 100%;
  height: 300px;
  border-radius: 5px;
  overflow: hidden;
}
.gallery a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Career */
.career .image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
}
.career .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Contact */
.contact .map {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 10px;
  overflow: hidden;
}
.contact .map iframe {
  width: 100%;
  height: 100%;
  border: 0 !important;
  outline: 0 !important;
}
.contact .item {
  padding: 40px 20px 20px;
  background: var(--light-alt);
  height: 100%;
  text-align: center;
  border-radius: 5px;
  position: relative;
  box-shadow: 5px 5px 0 0 #247cb054;
}
.contact .item .icon {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  border-radius: 60px;
  text-align: center;
  line-height: 60px;
  background: var(--primary);
  color: var(--light);
  font-size: 18px;
}
.contact .item .text a {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-alt);
}
.contact .item .text h6 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* Projects */
.project-card {
  position: relative;
}
.project-card .image {
  position: relative;
  width: 90%;
  /* height: 200px; */
  border-radius: 5px;
  overflow: hidden;
  margin: auto;
  top: 10px;
}
.project-card .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 0.5s ease all;
}
.project-card:hover .image img {
  transform: scale(1.1);
}
.project-card .text {
  background: var(--light);
  padding: 20px;
  border-radius: 5px;
  box-shadow: var(--shadow);
}
.project-card .text h5 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  margin: 10px 0 5px;
}
.project-card .text p {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}
.project-card .text h6 {
  margin: 5px 0 10px;
}
.project-card .text h6 i {
  color: var(--primary);
  display: inline-block;
  margin-right: 10px;
}
.project-card .text h6 span {
  font-size: 14px;
  font-weight: 600;
}
.project-card .text a {
  display: inline-block;
  padding: 7px 15px;
  background: var(--primary);
  color: var(--light);
  font-size: 14px;
  font-weight: 600;
  border-radius: 5px;
}

/* Responsive */
@media (min-width: 1400px) {
}
@media (max-width: 1300px) {
}
@media (max-width: 1199px) {
  p {
    font-size: 14px;
  }
  .header .header-inner .logo img:first-child {
    width: 40px;
  }
  .header .header-inner .logo img:last-child {
    width: 60px;
  }
  .header .header-inner .actions p,
  .header .header-inner .actions p i {
    font-size: 12px;
  }
  .header .header-inner .actions .navbar-toggle {
    width: 25px;
    height: 25px;
    line-height: 25px;
    font-size: 14px;
  }
  .hero .overlay .content h1 {
    font-size: 30px;
  }
  .heading {
    font-size: 25px;
  }
  .heading::before {
    font-size: 80px;
  }
  .footer .content {
    border: 0;
  }
  .footer-bottom p {
    text-align: center;
  }
}
@media (max-width: 992px) {
}
@media (max-width: 767px) {
  .g-5,
  .gx-5 {
    --bs-gutter-x: 0 !important;
  }
  .section {
    padding: 50px 0;
  }
  .heading {
    font-size: 20px;
  }
  .heading::before {
    font-size: 50px;
  }
  .header .header-inner {
    flex-direction: column;
  }
  .banner .card .breadcrumb {
    justify-content: flex-start;
  }
  .hero {
    margin-top: 30px;
  }
  .hero .overlay {
    height: auto;
    min-height: auto;
    max-height: auto;
  }
  .hero .overlay .content {
    position: relative;
    inset: auto;
    transform: translate(0);
    width: 100%;
    opacity: 1 !important;
    pointer-events: all !important;
  }
  .hero .overlay .content h1 {
    opacity: 1 !important;
    pointer-events: all;
    color: var(--primary);
    margin-bottom: 20px;
  }
  .hero .overlay .content button,
  .hero .overlay .content i,
  .hero .overlay .content i.scroll,
  .hero .overlay .content p {
    display: none;
  }
  .hero .overlay .image {
    position: relative;
    inset: auto;
    border-radius: 5px;
    overflow: hidden;
  }
  .hero .overlay video {
    display: none;
  }
}
/* code added by ankita 12-12-2024 */
.privacy-content h5 {
  font-size: 24px !important;
  padding: 20px 0px !important;
}
.privacy-content h6 {
  font-size: 18px;
  font-weight: 600;
  margin: 25px 0px 10px 0px;
}
.privacy-content ul {
  margin-left: 20px;
  margin-top: 10px;
}
.privacy-content ul li {
  list-style-type: disc;
}
