@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Serif:ital,opsz,wght@0,8..144,100..900;1,8..144,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Roboto+Serif:ital,opsz,wght@0,8..144,100..900;1,8..144,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  transition: all 0.3s ease-in-out;
}

html,
body {
  min-height: 100vh;
  max-width: 100vw;
  overflow-x: none;
  scroll-behavior: smooth;
}

.service-heading-text.text-center.montserrat-semibold {
  font-size: 42px !important;
}
.top-nav-contact-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-nav-contact-container .contact-info {
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  padding-left: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-right: 1rem;
}

.top-nav-contact-container .contact-info .contact-icon {
  border-radius: 50%;
  background: #ebebeb;
  color: black;
  padding: 1rem;
  height: 100%;
}

.top-nav-contact-container .contact-info .contact-content .contact-heading {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.custom-navbar {
  background: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.custom-btn-primary {
  background:#000 !important;
  color: #fff;
  padding: 16px 24px !important;
  border-radius: 4px !important;
  border: 2px solid #000 !important;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
}
.custom-btn-secondary {
  background: #06101a;
  color: #ffffff !important;
  padding: 16px 24px !important;
  border-radius: 0 !important;
  border: 0 !important;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
}

.custom-btn-primary-outline {
  background: transparent !important;
  color: #ffffff !important;
  padding: 16px 24px !important;
  border-radius: 0 !important;
  border: 2px solid #ffffff !important;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
}

.inter-regular {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
  font-variation-settings: "slnt" 0;
}

.inter-medium {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "slnt" 0;
}

.inter-semibold {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-variation-settings: "slnt" 0;
}
.inter-bold {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "slnt" 0;
}
.montserrat-regular {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
}
.montserrat-medium {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.montserrat-semibold {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}
.montserrat-bold {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.custom-navbar {
  box-shadow: 0 10px 10px rgb(28, 28, 28);
  padding: 20px;
  position: relative;
  z-index: 1000;
}

.custom-navbar ul {
  list-style: none;
}

section.hero-section {
  height: 60vh;
  min-height: 600px;
  max-width: 100vw;
  background: url("../images/waves.gif");
  background-position: center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -50px;
}


.hero-tagline {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 10px;
}

section.about-section {
  max-width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem;
  min-height: 600px;
}

.about-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  height: 100%;
}
.about-tagline,
.service-heading-tagline {
  font-size: 0.8rem !important;
}

.about-box-icon {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
}

ul.about-box-list {
  padding: 0 2rem;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
img.about-img {
  max-height: 500px !important;
}

section.services-section {
  max-width: 120vw;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem;
  min-height: 600px;
  background: #ffffff;
  color: white;
}


.service-card {
  margin-bottom: -200px;
  background: white;
  position: relative;
  z-index: 1000;
  box-shadow: 0 4px 24px 11px rgba(0, 0, 0, 0.25);
}

section.testimonial-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  margin-top: 80px;
  overflow: hidden;
  width: 100%;
  background-color: #fff !important;
}

.testimonial-container {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
  background-color: #fff !important;
}

.testimonial-card {
  background: #fff !important;
  padding: 45px 0 80px;
  text-align: center;
  transition: transform 0.5s ease;
  width: 100% !important; /* Change from 180vw to 100% */
  flex: 0 0 100%; /* Each card takes 100% of the container width */
}

.testimonial-card .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 30px;
}

.testimonial-content {
  font-family: "Roboto Serif", serif;
  font-weight: 700;
}

.testimonial-img-container {
  position: relative;
}

.testimonial-img-container .mini-avatar-img {
  position: absolute;
  height: 50px !important;
  bottom: 0;
  left: 100px;
}

.testimonial-author-name {
  font-family: "Roboto Serif", serif;
  font-weight: 600;
}
.testimonial-author-designation {
  font-family: "DM Sans", sans-serif;
}

.testimonial-control-container {
  position: relative;
  top: -120px;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.testimonial-control {
  cursor: pointer;
  height: 44px;
  width: 44px;
  color: #06101a;
  border: 2px solid #06101a;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0s ease-in-out;
}

.testimonial-control:hover {
  background: transparent;
  background: #06101a;
  color: white;
}

section.contact-section {
  background: url("../images/Contact\ Us\ Image\ 1.png");
  background-size: cover;
}

section.showcase-section {
  padding: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding-top: 250px;
}

.showcase-top-margin {
  padding-top: 150px;
}

.form-control {
  border-radius: 0 !important;
}

.logo-img {
  width: 100px;
  object-fit: cover;
}
.avatar-img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 50%;
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 50px !important;
  }
  .testimonial-heading-text.text-center.montserrat-semibold {
    font-size: 38px;
  }
  .top-nav-contact-container .contact-info {
    padding-right: 0 !important;
  }
  .service-heading-text.text-center.montserrat-semibold.dark-text.dark-sec-text.aos-init.aos-animate {
    font-size: 38px !important;
    margin-top: 38px;
  }  
  .hero-heading.text-white.inter-medium.aos-init.aos-animate{
    margin-top: 48px;
  }
  .sub-heading.hero-sub-heading {
    font-size: 20px !important;
  }
  .hero-btn.btn-lg.my-2.my-sm-0.aos-init.aos-animate button {
    font-size: 14px !important;
    padding: 8px !important;
  }
  .hero-btn.btn-lg.my-2.my-sm-0.aos-init.aos-animate{
    padding: 0;
    position: relative;
    left: 0;
  }
  .service-heading-text.montserrat-semibold.text-dark {
    font-size: 26px !important;
  }
  .service-heading-text.text-center.montserrat-semibold.text-dark.aos-init.aos-animate {
    font-size: 38px !important;
  }
  .service-heading-text.text-center.montserrat-semibold.dark-text.dark-sec-text.aos-init.aos-animate {
    font-size: 38px !important;
  }
  .card-header img {
    width: 165px !important;
    height: 178px !important;
    margin-top: -1px;
  }
  .team-card {
    width: 159px !important;
    max-width: 159px;
    margin: 12px 0 !important;
  }
  .team-card {
    flex: 1 1 100% !important;  /* 1 testimonial per row on very small screens */
  }
  .card-header img {
    width: 163px !important;
  }
  section.about-section {
    padding: 1rem;
  }
  section.about-section .row {
    gap: 20px;
  }
  section.services-section {
    padding: 1rem;
  }
  .custom-navbar {
    text-align: center;
    font-size: smaller;
    padding: 10px 0px;
    display: flex;
    justify-content: center;
  }
  .custom-navbar ul {
    justify-content: center;
  }

  .nav-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .nav-link {
    padding: 5px !important;
    font-family: 12px !important;
  }
  section.showcase-section {
    padding: 1rem;
    padding-top: 250px;
  }

  .showcase-top-margin {
    padding-top: 10px;
  }

  .contact-tagline {
    font-size: 0.8rem;
  }
  .top-nav-contact-container {
    flex-direction: row;
    align-items: flex-start;
  }
  .header-container h1 {
    font-size: 22px;
    text-align: center;
    padding: 8px;
}
.list-unstyled.d-flex.justify-content-center.justify-content-md-end.align-items-center.mb-0 {
  margin-bottom: 22px !important;
}
}
@media screen and (max-width: 390px) {
  .hero-btn.btn-lg.my-2.my-sm-0.aos-init.aos-animate button {
    font-size: 12px !important;
  }
  .hero-btn.btn-lg.my-2.my-sm-0.aos-init.aos-animate button img {
    margin-right: 5px !important;
    width: 22px !important;
  }
}

/* Code added by Ariyan */
.row.aos-init.aos-animate {
  display: flex;
  justify-content: center;
}

.service-box.extra-space {
  margin-top: 15px;
}
.col-md-4.order-0.order-md-1 .img-fluid {
  width: 336px;
  height: 200px !important;
}
.col-md-8.p-3.p-md-5.order-1.order-md-0 .sub-heading {
  font-weight: 600;
  color: rgba(0, 0, 0, 0.7);
  font-size: 22px;
}
.team-section {
  text-align: center;
  padding: 20px;
}

.team-section h1 {
  font-size: 24px;
  margin-bottom: 30px;
}

.team-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.team-card {
  width: 120px !important;
  height: 330px !important;
  border: 1px solid #ffffff;
  border-radius: 5px;
  flex-direction: column;
  text-align: center;
  margin-top: 40px;
  margin-left: 15px;
  margin-right: 15px;
  margin-bottom: 30px;
  background-color: #fff;
}
.card-header img {
  margin-left: -1px !important;
}
.align-items-center.team-sec {
  display: flex;
  align-items: center !important;
  justify-content: center;
  margin-top: 0px;
}
.team-sec-head {
  display: block !important;
  width: 1000px;
  /* margin-bottom: 40px; */
}

.card-header img {
  width: 119px !important;
  height: 119px !important;
  border: 2px solid #fffbfb;
  margin-bottom: 15px;
  margin-top: 0px;
}


  .card-body {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 10px !important;
  }

.card-body h3 {
  font-size: 16px !important;
  margin-bottom: 5px;
  font-weight:600 !important;
}

.card-body hr {
  width:100px;
  border: 1px solid #000000;
  margin: 10px auto;
}

.card-body p {
  font-size: 12px;
  margin-bottom: 5px;
  color: rgb(92, 91, 91);
}

.card-footer {
  /* margin-top: 15px; */
  background-color: #fff !important;
  border: 0px !important;
}

.icons {
  display: flex;
  justify-content: center;
  gap: 10px;
  /* margin-bottom: 10px; */
}

.icons .icon {
  height: 30px;
  /* background-color: #ffffff; */
  border-radius: 4px;
  display: flex;
  font-size: 12px;
  text-decoration: none;
  color: #fff;
  /* filter: invert(100%); */
  
}
.icons {
  display: flex;
  justify-content: left;
  padding-left: 12px;
}
.mail-icon {
  width: 20px !important;
  height: 20px !important;
}
.card-header {
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0) !important;
  border: 1px solid rgba(0,0,0,.0);
  padding: 0 !important;
  border-bottom: 0px !important;
}
.card-header img {
  width: 300px;
  height: 300px;
  margin-bottom: 0px !important; 
}
.header-container {
  background: black;
  width: 100%;
  height: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}
.header-container h1 {
  color: white;
  font-weight: 600;
}
.card-body h3 {
  font-size: 22px;
  font-weight: 600;
}
.mail-icon:hover {
  width: 21px !important;
  height: 21px !important;
}
footer {
  border-top: 1px solid #bdbdbd;
}
/* .custom-testimonial {
  width: 100%;
  padding-right: 0px;
  margin-right: 120px !important;
  margin-left: auto;
} */

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header-container h1 {
    color: white;
    font-weight: 600;
    font-size: 32px !important;
}
#services.about-section{
  display: flex !important;
  justify-content: center !important;
}
#services.about-section .container {
  max-width: 100% !important;
}
.row.align-items-center {
  max-width: 1024px;
  display: flex;
  justify-content: center;
}
}
 .hero-heading {
  font-size: 70px;
  font-weight: 700;
}
.hero-heading-2 {
  font-size: 33px;
  font-weight: 800;
  color: #000000;
  font-family: poppins;
  margin-top: 2%;
}
.sub-heading.hero-sub-heading {
  color: #fff;
  font-weight: 500;
  font-size: 24px;
}


.hero-btn.btn-lg.my-2.my-sm-0.aos-init.aos-animate button {
  font-size: 18px;
  font-family: Inter;
  padding: 12px;
  background-color: #fff !important;
  border-radius: 4px;
  border: 0px;
  position: relative;
}
.contact-tagline.mb-0.pl-1 {
  font-size: 14px;
  font-family: Inter;
  font-weight: 500;
}

.hero-btn.btn-lg.my-2.my-sm-0.aos-init.aos-animate button img {
  margin-right: 5px;
} 
.custom-btn-primary-outline {
  color: #151515 !important;
  padding: 16px 24px !important;
  border-radius: 4px !important;
  border: 2px solid #4A4A4A!important;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
}
.service-heading-tagline.text-center.mx-auto.montserrat-regular.w-75.text-dark.aos-init.aos-animate {
  font-size: 14px !important;
  font-weight: 500;
  color: #151515 !important;
  margin-top: 18px;
}
.service-heading-text.text-center.montserrat-semibold.text-dark.aos-init.aos-animate {
  font-size: 42px !important;
  font-weight: 700;
  font-family: inter;
  color: #000 !important;
}
.dark-sec-text{
  color: #fff !important
}
.service-heading-tagline.montserrat-regular.text-muted.m-0{
  color: #151515 !important;
}
.text-muted.service-heading-tagline.montserrat-regular {
  color: #151515 !important;
}
.testimonial-heading-text.text-center.montserrat-semibold {
  font-size: 42px;
  font-weight: 700;
  font-family: inter;
  color: #151515 !important;
}
.testimonial-heading-tagline.text-center.mx-auto.montserrat-regular.w-75{
  font-size: 14px !important;
  font-weight: 500;
  color: #151515 !important;
  margin-top: 18px;
}
.col-md-6.text-white.order-1.order-md-0.py-2.aos-init.aos-animate h2{
  font-size: 42px;
  font-weight: 700;
  font-family: inter;
  color: #ffffff !important;
}
.btn.custom-btn-primary.w-100.form-btn {
  border-radius: 4px !important;
  color: white;
  font-size: 18px;
  font-weight: 500;
}
.team-header {
  font-size: 36px;
}
.testimonial-service-category{
  font-size: 16px;
  font-weight: 600;
}
li.text-muted.service-heading-tagline.montserrat-regular {
  font-size: 12px !important;
  font-weight: 600;
}
.btn.custom-btn-primary.w-100.form-btn {
  background-color: #01A1FF !important;
  border: 0px !important;
}
#our-team {
  background-color: rgb(0, 0, 0);
  margin-top: 200px;
}
.team-card {
  display: flex;
  flex-direction: column; /* Stack items vertically */
  width: 159px !important;
  height: 355px; /* Ensure the card takes the full height of the container */
  border: 1px solid #ffffff;
  border-radius: 0px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  /* padding: 2px; */
}

.card-header img {
  width: 178px !important;
  height: 178px !important;
  margin-top: -1px;
}

.card-body {
  padding: 16px;
  flex-grow: 1;
    text-align: left;
}

.card-footer {
  padding: 0px !important;
  background-color: #f8f9fa;
}


.icons .icon img {
  transition: transform 0.3s;
}

.icons .icon img:hover {
  transform: scale(1.1);
}
.team-card.team-left {
  margin-left: 61px;
}
.team-card.team-right {
  margin-right: 61px;
}
.service-heading-text.montserrat-semibold.text-dark {
  font-size: 33px !important;
}
.service-heading-text.montserrat-semibold.text-dark.transact {
  margin-top: -6px;
}
