@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

body {
  font-family: "Roboto", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

ul {
  padding: 0px;
  margin: 0;
}

ul li {
  list-style: none;
}

p {
  margin-bottom: 0px;
}

h1 {
  margin-bottom: 0px;
}

h2,
h3,
h4 {
  margin-bottom: 0px;
}

:root {
  --black: #000;
  --white: #fff;
  --blue: #066c90;
  --light-blue: #046b6d;
  --yellow: #be9356;
}

/* section css */
section {
  padding: 50px 0px;
}

/* universal btn start ===== */
.universal-btn {
  display: inline-block;
  padding: 8px 12px;
  background-color: var(--blue);
  color: var(--white);
  border-radius: 8px;
  transition: 0.3s ease-in-out;
  border: 1px solid var(--blue);
}

.universal-btn:hover {
  background: transparent;
  color: var(--blue);
}

/* universal btn end===== */

/* heading style start */
.heading h1,
.heading h2 {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--blue);
}

.heading span {
  letter-spacing: 2px;
  font-weight: 500;
  color: var(--yellow);
}

.heading {
  margin-bottom: 30px;
}

/* heading style end */
@media screen and (max-width: 767px) {
  p {
    font-size: 12px;
  }

  section {
    padding: 20px 0px;
  }
  .heading {
    margin-bottom: 20px;
  }

  .heading h1,
  .heading h2 {
    font-size: 1.5rem;
  }
}

/* section css */

/* fixed icon start */
.fixed-icon {
  position: fixed;
  right: 0;
  bottom: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.fixed-icon a {
  display: inline-block;
}

.fixed-icon a img {
  height: 50px;
  filter: drop-shadow(rgba(0, 0, 0, 0.35) 0px 5px 15px);
}

/* fixed icon end */

/* top button css start here */

.top {
  display: none;
  color: gray;
  font-size: 24px;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 99999999;
}

.top:hover {
  color: var(--yellow);
}

/* top button css end here */

/* ---------- top-bar css start ---------- */
.top-bar {
  background: var(--blue);
}

.top-bar .top-bar-text {
  display: flex;
  justify-content: space-between;
  padding: 4px 0px;
}

.top-bar .top-bar-text .info {
  display: flex;
  gap: 10px;
}

.top-bar .top-bar-text li {
  line-height: 1.2;
  font-size: 14px;
  color: #fff;
}

.top-bar .top-bar-text li a {
  color: #fff;
}

.top-bar .top-bar-text .top-icon {
  display: flex;
  gap: 20px;
}

.top-bar .top-bar-text .top-icon li a {
  color: var(--white);
}

/* responsive css */

@media screen and (max-width: 767px) {
  .top-bar .top-bar-text .top-icon {
    display: none;
  }

  .top-bar .top-bar-text {
    display: flex;
    justify-content: center;
  }

  .top-bar .top-bar-text .info li {
    font-size: 10px;
    font-weight: 500;
  }
}

@media screen and (max-width: 575px) {
  .top-bar {
    display: none;
  }
}

/* responsive css */

/* ---------- top-bar css end ----------- */

/* ----------- navbar css start here ----------- */

.navbar {
  padding: 5px 0px;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.navbar .logo {
  width: 180px;
}

.navbar .navbar-nav .nav-item .nav-link {
  color: var(--blue);
  font-weight: 400;
}

.navbar .navbar-nav .nav-item .nav-link:hover {
  color: var(--yellow);
}

.navbar .navbar-nav .nav-item {
  position: relative;
}

.navbar .navbar-nav .nav-item::after {
  content: "";
  position: absolute;
  width: 0%;
  left: 0;
  bottom: 0%;
  height: 2px;
  background: var(--yellow);
  opacity: 0;
  transition: 0.5s ease-in-out;
}

.navbar .navbar-nav .nav-item:hover::after {
  opacity: 1;
  width: 100%;
  transition: 0.5s ease-in-out;
}

.navbar .call-btn {
  display: inline-block;
  background: var(--blue);
  padding: 5px 20px;
  border-radius: 20px;
}

.navbar .call-btn a {
  color: var(--white);
}

.navbar-toggler {
  padding: 0px !important;
}
.navbar-light .navbar-toggler {
  border-color: var(--light-blue) !important;
}

/* responsive css */
@media screen and (max-width: 991px) {
  .navbar .navbar-nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .navbar .navbar-nav {
    display: flex;
    flex-direction: column;
  }
}

/* responsive css */

/* ------- dropdown css start ------- */
.dropdown:hover .dropdown-menu {
  display: block;
  transition: 0.5s ease-in-out;
  padding: 50px 6% 0px;
}
.dropdown-menu {
  right: 0% !important;
  left: 0% !important;
  top: 60px !important;
  overflow-x: auto !important;
  max-width: 100% !important;
  background: rgb(240, 238, 238);
  border: none !important;
}

.nav-product .product-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}
.nav-product .product-img img {
  transition: 0.5s ease-in-out;
}
.nav-product .product-img img:hover {
  transform: scale(1.2);
  transition: 0.2s ease-in-out;
}

.dropdown .dropdown-menu .nav-product {
  margin-bottom: 40px;
}

.dropdown .dropdown-menu .nav-product .product-name p {
  color: var(--blue);
  font-size: 18px;
}
.dropdown .dropdown-menu .nav-product:hover .product-name p {
  color: var(--yellow);
}

/* responsive dropdown start */

@media screen and (max-width: 991px) {
  .over-f {
    height: 400px;
    overflow-y: scroll;
  }

  .dropdown:hover .dropdown-menu {
    padding: 15px 2% 0px;
  }

  .dropdown .dropdown-menu .nav-product {
    margin-bottom: 20px;
  }
  .nav-product .product-img {
    margin-bottom: 5px;
  }
  .dropdown .dropdown-menu .nav-product .product-name p {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .dropdown .dropdown-menu .nav-product .product-name p {
    font-size: 14px;
  }
}

/* responsive dropdown end */

/* ------------ dropdown css ends here ----------- */

/* ---------------- end of dropdown css here ------------------- */

.head-icons {
  /* background: rgb(14, 13, 13); */
  padding: 8px 10px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.head-icons img {
  width: 25px;
  border-radius: 10px;
}

.navbar-light .navbar-toggler {
  font-size: 1rem;
  border-color: black;
}

.navbar-light .navbar-toggler:focus {
  border: 1px solid var(--yellow);
  box-shadow: none;
}

/* responsive navbar */

@media screen and (max-width: 767px) {
  .navbar .logo {
    width: 120px;
  }
}

/* --------------- end of navbar css here ------------- */

/* Banner style start======================================================================== */
.left-text-overlay-parent {
  position: relative;
}

.left-text {
  position: absolute;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  height: 100%;
  width: 100%;
  background: linear-gradient(to right, #000000e3, #00000054);
  padding: 0px 0px 0px 60px;
}

.left-text span {
  display: inline-block;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 3.4rem;
}

.left-text span.blinds-name {
  color: var(--yellow);
}

.left-text .content {
  color: var(--white);
  font-size: 17px;
  letter-spacing: 3px;
}

/* right align banner content---- */
.right-text-overlay-parent {
  position: relative;
}

.right-text {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
  background: linear-gradient(to left, #000000e3, #00000077);
  padding: 0px 50px 0px 0px;
}

.right-text span {
  display: inline-block;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 3.4rem;
  text-align: end;
}

.right-text span.blinds-name {
  color: var(--yellow);
}

.right-text .content {
  color: var(--white);
  font-size: 17px;
  letter-spacing: 3px;
  text-align: end;
}

.contact-us {
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 25px;
  background: transparent;
  color: var(--white) !important;
  border: 2px solid var(--blue);
  display: inline-block;
  margin-top: 1rem;
  font-weight: 400;
  letter-spacing: 2px;
  transition: 0.3s ease-in-out;
}

.contact-us:hover {
  background-color: var(--blue);
  border: 2px solid var(--blue);
}

/* responsive part start============================================ */
@media (max-width: 991px) {
  .right-text span,
  .left-text span {
    letter-spacing: 1px;
    font-size: 2rem;
  }

  .right-text .content,
  .left-text .content {
    font-size: 12px;
    letter-spacing: 2px;
  }
}

@media (max-width: 768px) {
  .right-text span,
  .left-text span {
    font-size: 1rem;
  }

  .left-text .content,
  .right-text .content {
    font-size: 10px;
    letter-spacing: 2px;
  }

  .contact-us {
    padding: 5px 10px;
    font-size: 12px;
  }

  .left-text {
    padding: 0px 0px 0px 10px;
  }

  .right-text {
    padding: 0px 10px 0px 0px;
  }
}

@media (max-width: 500px) {
  .right-text .content,
  .left-text .content {
    display: none;
  }

  .right-text span,
  .left-text span {
    font-size: 0.8rem;
  }

  .contact-us {
    margin-top: 10px;
    padding: 2px 7px;
    font-size: 10px;
    letter-spacing: 0.5px;
  }
}

/* Banner style end =============================================================================================*/

/* -------------------- sub banner css start here ------------------- */
.sub-banner video {
  height: 300px;
}

.sub-banner .sub-banner-start {
  position: relative;
  overflow: hidden;
}
.sub-banner .sub-banner-start video {
  position: relative;
}

.sub-banner .sub-banner-start .banner-text {
  position: absolute;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  height: 100%;
  width: 100%;
  background: linear-gradient(to right, #000000cb, #00000054);
  padding-left: 6%;
  color: var(--white);
}
.sub-banner .sub-banner-start .banner-text a {
  color: var(--white);
}

@media screen and (max-width:991px) {
   .sub-banner video {
    height: 200px;
  }
}

@media screen and (max-width: 767px) {
  .sub-banner video {
    height: 150px;
  }
  .sub-banner .sub-banner-start .banner-text{
    padding-left: 4%;
  }
  .sub-banner .sub-banner-start .banner-text h1{
    font-size: 24px;
  }
}
@media screen and (max-width: 575px) {
  .sub-banner video {
    height: 100px;
  }
}

/* -------------------- sub banner css ends here --------------------- */

/* about us start=========================================================================================== */
.product-cat-btn a {
  text-decoration: none;
  color: var(--white);
  background-color: var(--blue);
  border-radius: 20px;
  border: 1px solid var(--blue);
  padding: 10px 0px;
  font-size: 18px;
  display: inline-block;
  width: 100%;
  text-align: center;
  transition: 0.3s ease;
}

.product-cat-btn a:hover {
  background: transparent;
  color: var(--blue);
}

.about-content {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  height: 100%;
}
.about-img {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  height: 100%;
}

.about-content h2 {
  font-size: 24px;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 10px;
}

.about-content h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.about-content p {
  margin-bottom: 2px;
  text-align: justify;
}

.counter-div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.counter-div span {
  font-size: 40px;
  font-weight: 700;
  color: var(--blue);
}

.counter-div p {
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--light-blue);
  font-weight: 600;
}

.steps-container {
  position: relative;
  margin-bottom: 30px;
}

/* Connector line between steps */
.connector-line {
  border-top: 2px dashed #ccc;
  position: absolute;
  top: 40px;
  left: 12%;
  /* Start a bit after the first icon */
  right: 12%;
  /* End a bit before the last icon */
  z-index: -1;
}

.step-icon {
  width: 80px;
  height: 80px;
  background-color: #e6f0fb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 32px;
  color: var(--blue);
}

.step-title {
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.step-text {
  color: #666;
  font-size: 14px;
}

.btn-expert {
  background-color: #003b73;
  color: white;
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 6px;
}

.btn-expert:hover {
  /* background-color: #002a59; */
  color: var(--blue);
}

/* responsive css */

@media screen and (max-width: 991px) {
  .counter-div {
    margin-bottom: 20px;
  }
  .counter-div span {
    font-size: 28px;
  }

  .counter-div p {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .product-cat-btn a {
    padding: 5px 0px;
    font-size: 14px;
  }

  .counter-div span {
    font-size: 24px;
  }

  .counter-div p {
    font-size: 14px;
  }

  .about-content h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .about-content p {
    font-size: 12px;
    text-align: justify;
  }
}

@media screen and (max-width: 575px) {
  .counter-div span {
    font-size: 20px;
  }

  .counter-div p {
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 500;
  }
}

/* responsive css */

/* about us end =========================================================================================== */

/* ======================================== product section start======================================= */
/* ======= Projects style ======= */
.projects .item {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.projects .item:hover img {
  -webkit-filter: none;
  filter: none;
  -webkit-transform: scale(1.09, 1.09);
  transform: scale(1.09, 1.09);
  -webkit-filter: brightness(70%);
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
}

.projects .item:hover .con {
  bottom: 0;
}

.projects .item img {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.projects .item .con {
  padding: 30px 15px;
  position: absolute;
  bottom: -58px;
  left: 0;
  width: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  z-index: 20;
  height: auto;
  box-sizing: border-box;
  background: -moz-linear-gradient(
    top,
    transparent 0,
    rgba(0, 0, 0, 0.233) 2%,
    rgba(0, 0, 0, 0.75) 90%
  );
  background: -webkit-linear-gradient(
    top,
    transparent 0,
    rgba(0, 0, 0, 0.301) 2%,
    rgba(0, 0, 0, 0.75) 90%
  );
  background: linear-gradient(
    to bottom,
    transparent 0,
    rgba(0, 0, 0, 0.01) 2%,
    rgba(0, 0, 0, 0.75) 90%
  );
}

.projects .item .con h4,
.projects .item .con h4 a {
  position: relative;
  /* color: #ffffff; */
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
  margin-top: 0px;
  text-shadow: rgba(0, 0, 0, 0.979) 0px 5px 15px;
  margin-bottom: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.projects .item .con p {
  color: #fff;
  font-size: 20px;
}

.projects .item .con i {
  color: #fff;
  font-size: 20px;
}

.projects .item .con i:hover {
  color: #b19777;
}

.projects .item .con .butn-light {
  margin-left: 0;
  border-radius: 30px;
  border-color: #999;
  padding: 11px 30px;
}

.projects .item .con .butn-light:hover {
  border-color: #b19777;
}

/* line animation */
.projects .item .line {
  text-align: center;
  height: 1px;
  width: 60px;
  background-color: rgba(255, 255, 255, 0.2);
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  margin: 0 auto 30px;
}

.projects .item:hover .line {
  width: 100%;
  transition-property: all;
  transition-duration: 0.8s;
  transition-timing-function: ease-in-out;
}

.resproduct {
  display: none;
}

@media (max-width: 991px) {
  .desproduct {
    display: none;
  }

  .resproduct {
    display: block;
  }
}

/*======================================== product section end ========================================= */

/* ======================================== why choose us start ======================================== */
.why-choose-nsv {
  background-color: #f9fafc;
}

.why-choose-nsv .content small {
  color: var(--blue);
  font-size: 16px;
}
.why-choose-nsv .content h2 {
  font-size: 24px;
}
.why-choose-nsv .content .why-para {
  text-align: justify;
}

.why-choose-nsv .highlight {
  background: var(--blue);
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
}

.why-choose-nsv .image-wrapper img {
  object-fit: cover;
}

.why-choose-nsv .fa-solid {
  background: #e8f0ff;
  border-radius: 50%;
  padding: 10px;
}

@media (max-width: 1200px) {
  .why-choose-nsv .content .points p {
    font-size: 12px;
  }
}

@media (max-width: 991px) {
  .why-choose-nsv .content {
    text-align: center;
  }
  .why-choose-nsv .content h2 {
    font-size: 20px;
  }
  .why-choose-nsv .content .points p {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .why-choose-nsv .content h2 {
    font-size: 14px;
  }
  .why-choose-nsv .col-6 {
    width: 100%;
  }

  .why-choose-nsv .fa-solid {
    margin: 0 auto 10px auto;
  }
}

/* ======================================== why choose us end======================================== */

/* ======================================= blog start ============================================ */
.blog-item {
  border-radius: 10px;
  border: 2px solid var(----light-blue);
  padding: 20px;
  transition: all 0.3s ease-in-out;
  background-color: #f5eaea;
}

.blog-item:hover {
  border-color: var(--blue);
  background-color: #e9d5d5;
}

.blog-item:hover .blog-img img {
  transform: scale(1.1);
}

.blog-item .blog-text h4 {
  font-size: 24px;
}

.blog-text p {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-item:hover .blog-text .text--base {
  color: var(--blue) !important;
}

.blog-item:hover .blog-text a {
  color: var(--blue);
}

.blog-item .blog-text a {
  color: #000;
}

.blog-item .blog-img {
  overflow: hidden;
  border-radius: 10px;
}

.blog-item .blog-img img {
  transition: all 0.3s ease-in-out;
}

.blog-item .blog-text .fs-16 {
  padding: 20px 0 10px;
}

/* responsive css */

@media screen and (max-width: 1200px) {
  .blog-item .blog-text h4 {
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  .blog-item .blog-text h4 {
    font-size: 16px;
  }
}

/* responsive css */

/* ======================================= blog end ============================================ */

/* ========================================= footer css start======================================== */

.footer {
  background-color: var(--blue);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  padding: 50px 0px;
}

.footer-about .footer-logo {
  margin-bottom: 30px;
}

.footer-about .footer-logo img {
  width: 100%;
}

.footer-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  font-size: 30px;
}

.footer-icon a {
  color: var(--white);
}

.footer-icon a:hover {
  color: var(--yellow);
}

.links .links-heading {
  margin-bottom: 20px;
}

.links .links-heading h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
}

.links .links-ul ul li {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
  font-size: 18px;
}

.links .links-ul ul li a {
  color: #fff;
}

.links .links-ul ul li a:hover {
  color: var(--yellow);
}

.links .links-ul ul li i {
  color: var(--yellow);
}

@media screen and (max-width: 1200px) {
  .links .links-ul ul li {
    font-size: 12px;
  }
  .links .links-heading h3 {
    font-size: 18px;
  }
}

@media screen and (max-width: 991px) {
  .footer .part {
    margin-bottom: 20px;
  }

  .footer-about .footer-logo {
    margin-bottom: 10px;
  }

  .links .links-heading {
    margin-bottom: 10px;
  }
  .links .links-heading h3 {
    font-size: 22px;
  }

  .links .links-ul ul li {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .footer {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 20px 0px;
  }

  .footer-about .footer-logo {
    margin-bottom: 5px;
  }
  .footer-icon {
    font-size: 20px;
  }

  .footer-about .footer-para {
    margin-bottom: 12px;
  }

  .links .links-heading {
    margin-bottom: 5px;
  }

  .links .links-heading h3 {
    font-size: 18px;
    font-weight: normal;
  }

  .links .links-ul ul li {
    font-size: 14px;
    gap: 5px;
  }
}

/* copyright css start */
.copyright-section {
  background-color: var(--blue);
  border-top: 1px solid #fff;
}

.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;
  }

  .logo-icon {
    margin-bottom: 20px;
  }

  .right-side p,
  .left-side p {
    color: #fff;
    font-size: 12px;
    margin-bottom: 0px;
  }
}

/* copyright css end */

/* ========================================= footer css end ======================================== */

/* --------------- contact us section start here -------------- */

.contact-us-sec .sub-head {
  margin-bottom: 20px;
}

.contact-info .icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--yellow);
}

.contact-info .icon i {
  color: var(--white);
}

.contact-info h3 {
  font-size: 18px;
}
.contact-info h3 a {
  color: var(--black);
}

.contact-us-sec .contact-form .form-control:focus {
  border-color: var(--yellow);
  box-shadow: none;
}

.contact-us-sec .contact-form .btn {
  box-shadow: none;
  border: 1px solid #ced4da !important;
}

.contact-us-sec .contact-form .send {
  background: var(--yellow);
  border: 1px solid var(--yellow);
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  transition: 0.4s ease-in-out;
}

.contact-us-sec .contact-form .send:hover {
  background: none;
  color: var(--yellow);
}

/* responsive css start here */

@media screen and (max-width: 767px) {
  .contact-us-sec .sub-head {
    margin-bottom: 10px;
  }
  .contact-us-sec .sub-head h3 {
    font-size: 16px;
  }

  .contact-info .icon {
    width: 35px;
    height: 35px;
  }

  .contact-us-sec .contact-info h3 {
    font-size: 12px;
  }
}

/* end of responsive css here */

/* --------------- end of contact us section here --------------- */

/* video section css start here */

.video-section {
  width: 100%;
  padding: 0;
  margin: 0;
}

.full-video {
  width: 100%;
  height: 600px;
  display: block;
  object-fit: cover;
}

@media screen and (max-width: 991px) {
  .full-video {
    height: auto;
  }
}
/* video  section css ends here */

/* ------------------- gallery section css start here --------------------- */

/* Style the images inside the grid */
.gallery .column img {
  opacity: 0.8;
  cursor: pointer;
}

.gallery .column img:hover {
  opacity: 1;
}

/* Expanding image text */

/* Closable button inside the expanded image */

.gallery .container {
  position: relative;
  display: block;
  width: 100%;
  height: 500px; /* your desired height */
  /* background: rgba(243, 241, 241, 0.925); */
  margin-bottom: 10px;
}

.gallery #expandedImg {
  width: 100%;
  height: 100%;
  object-fit: contain; /* FULL width & height - no empty space */
  display: block;
}

@media screen and (max-width: 991px) {
  .gallery .column {
    padding: 5px;
  }
  .gallery .container {
    height: auto;
  }
}

/* ------------------- gallery section css ends here ----------------------- */

/* ===================================================================================================== */
/* ===================================================================================================== */

/* ==================== about page css start here ==================== */

.about-page .more-content p {
  text-align: justify;
}

/* mis-vis section css start here */

.about-page .mis-vis {
  text-align: justify;
}
.about-page .mis-vis .mis-vis-img {
  margin-bottom: 10px;
}
.about-page .mis-vis h3 {
  margin-bottom: 5px;
  color: var(--blue);
}

@media screen and (max-width: 991px) {
  .mis-vis-card {
    margin-bottom: 20px;
  }
  .about-page .mis-vis .mis-vis-img {
    margin-bottom: 5px;
  }
  .about-page .mis-vis h3 {
    font-size: 18px;
    margin-bottom: 2px;
  }
}

/* mis-vis section css ends here */

/* ==================== about page css ends here ==================== */

/* ========================================================================================================= */
/* ========================================================================================================= */

/* =================== contact page css start =================== */

.map-location,
.map-location iframe {
  width: 100%;
  height: 100%;
  height: 400px;
  border: 1px solid #bdbbbb80;
}

@media screen and (max-width: 767px) {
  .map-location,
  .map-location iframe {
    height: 200px;
  }
}

/* ======================== contact page css end ======================== */

/* ========================================================================================================= */
/* ========================================================================================================= */

/* =================== blog detail page css start =================== */

.blog-detail-page .date p {
  margin: 5px 0px 10px 0px;
}

.blog-detail-page .blog-text-start h2,
h3 {
  margin-bottom: 5px;
}

.blog-detail-page .blog-text-start p {
  margin-bottom: 30px;
  text-align: justify;
}

/* responsive css start */

@media screen and (max-width: 991px) {
  .blog-detail-page .blog-text-start h2,
  h3 {
    font-size: 22px;
  }
}

@media screen and (max-width: 767px) {
  .blog-detail-page .date p {
    margin: 2px 0px 5px 0px;
    font-size: 14px;
  }

  .blog-detail-page .blog-text-start h2,
  h3 {
    font-size: 18px;
  }
  .blog-detail-page .blog-text-start p {
    margin-bottom: 20px;
  }
}

/* responsive css end */

/* =================== blog detail page css ends here ===================== */

/* ========================================================================================================= */
/* ========================================================================================================= */

/* =================== product detail page css start start =================== */

.product-detail-page .product-detail .detail p {
  text-align: justify;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.product-detail-page .product-detail .detail .para {
  margin-bottom: 20px;
}

.product-detail-page .product-detail .detail-text h3 {
  margin-bottom: 5px;
}
.product-detail-page .product-detail .detail-text p {
  margin-bottom: 30px;
  text-align: justify;
}

.product-detail-page .product-detail .detail-text ul li {
  margin-bottom: 5px;
}

/* responsive css start */

@media screen and (max-width: 991px) {
  .product-detail-page .product-detail .heading h2 {
    font-size: 22px;
  }
  .product-detail-page .product-detail .product-img img {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 767px) {
  .product-detail-page .product-detail .heading h2 {
    font-size: 18px;
  }

  .product-detail-page .product-detail .detail-text p {
    margin-bottom: 15px;
  }
  .product-detail-page .product-detail .detail-text ul li {
    font-size: 12px;
    margin-bottom: 2px;
  }
}

/* responsive css ends */

/* =================== product detail page css end here ================ */
