/* COLOR VARIABLES */
:root {
  --primary-purple: #25307F;
  --purple-subtle: #58619C;
  --purple-dark: #1b235b;
  --complement-peach: #25307f;
  --text-white: #ffffff;
  --btn-green: #198754;
}

/* Show dropdown on hover */
.navbar-nav .dropdown:hover>.dropdown-menu {
  display: block;
  margin-top: 0;
}

.contact-icons {
  position: fixed;
  top: 93%;
  right: 50px;
  transform: translateY(-50%);
  z-index: 999;    
  background-color:var(--text-white);
  border-radius: 50%;
  box-shadow: 4px 5px 10px rgba(0, 0, 0, 0.4);
}
/* Optional: right alignment for nested dropdowns */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu>.dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
  display: none;
  position: absolute;
}

.dropdown-submenu:hover>.dropdown-menu {
  display: block;
}

/* FONTS */
*,
body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Serif", serif;
}

a,
p,
li,
ul {
  font-family: "Montserrat", sans-serif;
}

ul li {
  list-style: none;
  text-decoration: none;
}

a {
  text-decoration: none !important;
}

.text-primary {
  color: #25307F !important;
}

.nav-link {
  font-weight: 600 !important;
  font-size: 16px !important;
}

.nav-link .active {
  font-weight: 600 !important;
  color: var(--primary-purple) !important;
}

/* .text-coral{
  color: var(--complement-peach);
} */
/** Hero Section **/
.heroSection img {
  height: 650px;
  /* object-fit: cover; */
}

.heroSection {
  position: relative;
}

.footer-cut-left {
  position: relative;
  clip-path: polygon(318px 0%, 100% 0%, 100% 100%, 18% 100%);
  z-index: 1;
}
.navbar-brand {
  position: absolute;
  top: -55px;
  left: 49px;
  z-index: 1050;
}

.navbar-brand img {
  width: 130px; /* increase logo size */
}

@media (max-width: 768px) {
  .navbar-brand {
    position: relative;
    top: 0;
    left: 0;
  }
  .navbar-brand img {
    width: 80px;
  }
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.feature>span {
  font-size: 25px;
  font-family: Jost, sans-serif !important;
}

.feature>i {
  font-size: 85px;
}

.feature>img {
  width: 180px !important;
}

.logos-slide-wrapper {
  display: flex;
  overflow: hidden;
}

.logos-slide {
  display: flex;
  flex-shrink: 0;
}

.feature,
.feature2 {
  flex: 0 0 auto;
  min-width: 200px;
  text-align: center;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
  margin: 0 20px;
}

@keyframes slide-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.logos-slide-wrapper .logos-slide {
  animation: 20s linear infinite slide-left;
}

.caption {
  position: absolute;
  top: 40%;
  left: 40%;
  transform: translate(-50%, -50%);
  max-width: 650px;
  color: var(--text-white);
}

.caption h2 {
  font-size: 45px;
  line-height: 65px;
  margin-bottom: 10px;
}

.caption p {
  font-size: 16px;
  margin-bottom: 10px;
  width: 200px;
}

.bg-purple-subtle {
  background-color: var(--complement-peach) !important;
}

.text-purple {
  color: var(--primary-purple) !important;
}

.btn-success {
  background-color: var(--primary-purple) !important;
  border: 2px solid var(--complement-peach) !important;
}

.bg-purple {
  background-color: #25307F;
}

.aboutUsImg {
  width: 80%;
  height: 100%;
  object-fit: cover;
  box-shadow: 100px 45px 0px -45px var(--complement-peach);
}

.bg-success2 {
  background-color: var(--primary-purple);
}
.owl-theme .owl-nav.disabled+.owl-dots {
margin-top: 45px;
}
.aboutusHeading {
  font-size: 38px;
  font-weight: 700;
}

.counterNumber {
  font-size: 45px;
  line-height: 36px;
  font-weight: 600;
}

.excellenceHeading {
  font-size: 40px;
}

.excellenceCard {
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}

.excellenceIcon {
  padding: 20px;
  font-size: 30px;
}

.excellenceIconContainer {
  margin: -40px 0px 0px 0px;
}

.excellenceContainer {
  display: grid;
  width: 100%;
  margin-top: 80px;
  grid-gap: 40px;
  grid-template-columns: auto auto auto;
}

.gradient-overlay {
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.6) 100%);
}

.image-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-wrapper {
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
}

.product-link {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-wrapper:hover .product-link {
  opacity: 1;
}

.contactUsContainer {
  background-image: url(./assets/images/contactus/contactus.webp);
  background-position: 0px 40%;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px 0px;
}

.overlay1 {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
}

.contactUsHeader {
  position: relative;
}

.image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.certficates img {
  width: 130px;
  display: flex;
}

.image-wrapper:hover::before {
  opacity: 1;
}

.commitments {
  gap: 3rem !important;
}

.counterIconsContainer {
  display: grid;
  grid-template-columns: auto auto auto auto;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .commitments {
    gap: 5rem !important;
  }

  .counterIconsContainer {
    grid-template-columns: auto auto;
  }
}

.counterIcon {
  font-size: 60px;
}

.grid1,
.grid2 {
  display: none;
}

.bento-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.bento-item {
  overflow: hidden;
  border-radius: 10px;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  grid-auto-rows: 150px;
  gap: 1rem;
  margin-bottom: 3rem;
}

.wide {
  grid-column: span 2;
}

.tall {
  grid-row: span 2;
}

.large {
  grid-column: span 2;
  grid-row: span 2;
}

@media (max-width: 576px) {

  .wide,
  .tall,
  .large {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }
}
.card-image img {
  height: 260px;
  width: 288.45px;
  object-fit: cover;
  /* border: 1px solid var(--primary-purple);
  border-radius: 15px;
  box-shadow: inset 8px 8px 10px #c3c3c3, inset -8px -8px 10px #cfcfcf; */
}

@media screen and (max-device-width: 480px) and (orientation: portrait) {
  .caption h2 {
    font-size: 25px;
    line-height: 40px;
    width: 100%;
    text-align: center;
  }
  .card-image img {
    height: 260px;
    width: 288.45px;
    object-fit: contain;
    /* border: 1px solid var(--primary-purple);
    border-radius: 15px;
    box-shadow: inset 8px 8px 10px #c3c3c3, inset -8px -8px 10px #cfcfcf; */
  }
  
  .feature>img {
    width: 95px !important;
  }

  .heroSection img {
    height: 250px;
    /* object-fit: contain; */
  }

  .feature,
  .feature2 {
    flex: 0 0 auto;
    min-width: 100px;
    text-align: center;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
    margin: 0 20px;
  }
  .caption {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    color: var(--text-white);
  }

  .certficates img {
    width: 100px;
  }

  .aboutusHeading {
    font-size: 30px;
  }

  .counterNumber {
    font-size: 30px;
  }

  .counterIcon {
    font-size: 40px;
  }

  .counterIconsContainer {
    grid-template-columns: auto auto;
  }

  .image-container {
    display: grid;
    grid-template-columns: auto;
  }

  .excellenceHeading {
    font-size: 30px;
  }

  .commitments {
    gap: 6rem !important;
  }
}

.card {
  padding: 25px;
  width: 330px;
  min-height: 370px;
  border-radius: 20px;
  background: #e8e8e8;
  box-shadow: 5px 5px 6px #dadada, -5px -5px 6px #f6f6f6;
  transition: 0.4s;
}

.card:hover {
  translate: 0 -10px;
}

.card-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--purple-dark);
  margin: 15px 0 0 0px;
}


.btn {
  font-family: "Montserrat", sans-serif !important;
}

.card-body {
  color: rgb(31, 31, 31);
  padding: 0 !important;
}

.btnDetail {
  width: 190px;
  font-family: "Montserrat", sans-serif;
}

.bg-peach {
  background-color: var(--complement-peach) !important;
}

.text-peach {
  color: var(--complement-peach) !important;
}