/* Primary Font (Headings and Titles) */
/* Default styles for headings */
h1,
h2,
h3,
h4,
h5 {
  font-family: "Roboto Slab", serif;
  font-weight: bold;
  /* Make headings bold */
  margin-bottom: 10px;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

/* Default styles for paragraphs */
p {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
}


/* Responsive adjustments for headings and paragraphs - Small screens */
@media screen and (max-width: 576px) {
  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 20px;
  }

  h3 {
    font-size: 18px;
  }

  h4 {
    font-size: 16px;
  }

  h5 {
    font-size: 14px;
  }

  p {
    font-size: 14px;
  }
}

/* Responsive adjustments for headings and paragraphs - Medium screens */
@media screen and (min-width: 577px) and (max-width: 992px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 24px;
  }

  h4 {
    font-size: 20px;
  }

  h5 {
    font-size: 18px;
  }

  p {
    font-size: 16px;
  }
}

:root {
  --color-dark: #030303;
  --color-primary: #91d7fd;
  --color-secondary: #dee9ff;
}

/*-- Banner --*/
.banner-area {
  position: relative;
  min-height: 60vh;
  color: #fff;
  background-position: 50% 50%;
  background-size: cover;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.banner-area .container {
  position: relative;
  padding-top: 96px;
}

.banner-title {
  color: #fff;
  margin: 0;
  padding: 0;
  margin-bottom: 30px;
}

.banner-heading {
  width: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
  min-height: inherit;
}

.breadcrumb {
  left: 45%;
  top: 55%;
  padding: 0;
  background: none;
  font-size: 16px;
  font-weight: 300;
}

.breadcrumb li:not(:last-child):after {
  content: "/";
  margin: 0 5px;
}

.breadcrumb a {
  color: #fff;
}

/* banner responsive*/
.banner-area {
  min-height: 300px;
}

.banner-heading {
  min-height: 300px;
  padding: 0px;
}

/*** Section Title ***/
.section-title {
  position: relative;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
}

.section-title::before {
  position: absolute;
  content: "";
  width: 50%;
  height: 2px;
  bottom: 0;
  left: 0;
  background: var(--color-primary);
}

.section-title::after {
  position: absolute;
  content: "";
  width: 28px;
  height: 28px;
  bottom: -13px;
  left: calc(25% - 13px);
  background: var(--color-dark);
  border: 10px solid #FFFFFF;
  border-radius: 28px;
}

.section-title.text-center::before {
  left: 25%;
}

.section-title.text-center::after {
  left: calc(50% - 13px);
}

/* section header style */
.section-header h1 {
  text-align: center;
  padding-bottom: auto;
  font-weight: 600;
  position: relative;
  color: #2e3135;
}

.section-header h1:before,
.section-header h1:after {
  content: "";
  width: 100px;
  height: 2px;
  background: var(--color-primary);
  display: inline-block;
}

/* Responsive adjustments for section header - Small screens */
@media screen and (max-width: 750px) {

  .section-header h1::before,
  .section-header h1::after {
    width: 35px;
    /* Adjust the width as needed */
    height: 2px;
    /* Adjust the height as needed */
  }
}

.section-header h1:before {
  margin: 0 15px 10px 0;
}

.section-header h1:after {
  margin: 0 0 10px 15px;
}





/* -------------- scope of calibration style -------------------- */
.display-6 {
  font-size: calc(0.875rem + 1vw);
  font-weight: 300;
  line-height: 1.2;
}


.accordion-item {
  background-color: #e7e7e7;
}

.accordion-button {
  font-weight: 600;
  font-size: 20px;
}

/*----------------- service page style-------------------------*/
.service .card {
  display: inline-block;
  position: relative;
  width: 100%;
  margin-bottom: 30px;
  border-radius: 6px;
  color: rgba(0, 0, 0, 0.87);
  background: #fff;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}

.service .card .card-image {
  height: 60%;
  position: relative;
  overflow: hidden;
  margin-left: 15px;
  margin-right: 15px;
  margin-top: -30px;
  border-radius: 6px;
  box-shadow: 0 16px 38px -12px rgba(0, 0, 0, 0.56), 0 4px 25px 0px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
}

.service .card .card-image img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  pointer-events: none;
}

.service .card .card-image .card-caption {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: #fff;
  font-size: 1.3em;
  text-shadow: 0 2px 5px rgba(33, 33, 33, 0.5);
}

.service .card img {
  width: 100%;
  height: auto;
}

.service .table {
  margin-bottom: 0px;
  height: auto;
}

.service .card .table {
  padding: 30px 30px 10px;
}

@media (min-width: 980px) {
  .service .table {
    height: 415px;
    /* Set fixed height for screens larger than 768px */
  }
}

.service .card-description p {
  color: #9b9b9b;
}

.container-service {
  padding-left: 150px;
  padding-right: 150px;
}

.container-xxl {
  max-width: 1440px;
  /* Adjust max width as needed */
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 990px) {

  /* Adjust the breakpoint as needed */
  .container-service {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.service ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service ul i {
  font-size: 15px;
  margin-right: 4px;
}

/* Define a custom style for the button */
.custom-btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  background-color: #91d7fd;
  color: #fff;
  border: none;
  border-radius: 6px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

/* On hover, change background color and add a slight scale effect */
.custom-btn:hover {
  background-color: #82bffc;
  transform: scale(1.05);
}



/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about h2 {
  font-size: 48px;
  font-weight: 700;
  font-family: var(--font-secondary);
  margin: 30px 0;
}

@media (min-width: 991px) {
  .about h2 {
    max-width: 65%;
    margin: 0 0 20px 0;
  }
}

.about .our-story {
  padding: 40px;
  background-color: #ececec;
  border-radius: 20px;
}

@media (min-width: 991px) {
  .about .our-story {
    padding-right: 25%;
  }
}


.about .our-story h1 {
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-dark);
}

.about .our-story p:last-child {
  margin-bottom: 0;
}

.about ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.about ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.about ul i {
  font-size: 20px;
  margin-right: 4px;
  color: var(--color-primary);
}

.about .watch-video:hover a {
  color: var(--color-primary);
}

.about .about-img {
  min-height: 80vh;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
}

@media (min-width: 992px) {
  .about .about-img {
    position: absolute;
    top: 0;
    right: 0;
  }
}

.quote-container {
  position: relative;
  text-align: center;
}

.quote-icon {
  color: #000000;
  position: absolute;
  font-size: 24px; /* Adjust the icon size */
}

.quote-left {
  top: 0;
  left: 0;
}

.quote-right {
  bottom: 0;
  right: 0;
}

.quote-text {
  font-style: italic;
  font-weight: 600; /* Use font-weight: bold; if you want bold text */
  color: #45abe6;
  padding: 20px; /* Add padding for spacing */
}


/* project page style */
.project h3 {
  padding-top: 15px;
}

.project .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  padding: 20px;
}

.project .card {
  border: 1px solid #ccc;
  width: 300px;
  min-height: 400px;
  position: relative;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0px 0px 25px 2px #0000003f;

}

.project .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s, background-color 0.9s;
}

.project .card:hover .card-overlay {
  opacity: 1;
}


.project .card:hover{
  box-shadow: 0px 0px 20px 1px #0000003f;
  border: 3px solid rgba(142, 191, 255, 0.223);
}

.project .card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.project .card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.8s;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.project .card:hover .card-content {
  opacity: 1;
}

.project .cardDetails {
  padding-left: 10px;
  padding-right: 10px;
}

.project .button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.project .button-container button {
  padding: 10px;
  background-color: #a3cbf5;
  border: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.project .button-container button:hover {
  background-color: #82b3ed;
}

.project .slideshow {
  padding-top: 96px;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.project .slideshow img {
  max-height: 80vh;
  max-width: 80vw;
  object-fit: contain;
}

.project .slideshow #closeButton {
  position: absolute;
  top:96px;
  right: 10px;
  font-size: 50px;
  color: white;
  cursor: pointer;
}

.project .slideshow #prevButton,
.project .slideshow #nextButton {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: white;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.3);
  border: none;
  padding: 5px 10px;
  border-radius: 3px;
}

.project .slideshow #prevButton {
  left: 10px;
}

.project .slideshow #nextButton {
  right: 10px;
}


/*Whatsapp btn*/
#whatsapp{
  display: flex;
  justify-content: center;
  position: fixed; /* Fixed/sticky position */
  bottom: 120px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: #25D366; /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 0px; /* Some padding */
  border-radius: 50%; /* Rounded corners */
  font-size: 45px; /* Increase font size */
  width:70px;
  height:70px;
  text-decoration: none;
}
#whatsapp i{
  display: flex;
  align-items: center;
}

/*Back-to-Top*/
#myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 40px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: #78bbe6; /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 0px; /* Some padding */
  border-radius: 50%; /* Rounded corners */
  font-size: 37px; /* Increase font size */
  width:70px;
  height:70px;
}

#myBtn:hover {
  background-color: #2a45f8; /* Add a dark-grey background on hover */
}