@font-face {
  font-family: 'Space Grotesk';
  src: url('/fonts/SpaceGrotesk.ttf') format('truetype');
  font-style: normal;
  font-weight: normal;
}

@font-face {
  font-family: 'Debata';
  src: url('/fonts/Debata-Regular.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  font-family: 'Space Grotesk', sans-serif;
}


.container {
  max-width: 1250px !important;
  margin: 0 auto;
  padding: 0 20px;
}


:root {
  --theme-color: #23325b;
}

.text-theme {
  color: var(--theme-color);
}

.cta-button {
  display: inline-block;
  padding: 1.1rem 1.7rem;
  font-size: 1rem;
  color: white;
  background: linear-gradient(to right, #222e5b, #ea8424);
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
  transform: scale(1.0);
  cursor: pointer;
}


.icon-img {
  height: 24px !important;
  width: auto;
}

.icon-text {
  font-size: 1rem;
  line-height: 1;
}


.big-text {
  font-size: 42px !important;
  font-weight: 600 !important;
}

.stat-box {
  background: #EBDEB8;
  padding: 16px 20px;
  border-radius: 8px;
  flex: 1 1 45%;
  min-width: 260px;
}

.icon-circle {
  width: 70px;
  height: 70px;
  background-color: white;
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.icon-in-circle {
  width: 70%;
  height: auto;
  object-fit: contain;
}

.check-icon-circle {
  width: 35px;
  height: 35px;
  background-color: #EBDEB8;
  border-radius: 50%;
  padding: 8px;
}

.check-icon {
  width: 100%;
  height: auto;
  object-fit: contain;
}


.top-overlap-img {
  display: block;
  top: 25%;
  left: -80px;
  width: auto;
  height: auto;
  position: absolute;
  z-index: 2;
}

/* .image-bg {
  background-color: #EBDEB8;
  background: linear-gradient(143deg, rgba(235, 222, 184, 1) 66%, rgba(234, 132, 36, 1) 100%);
  padding: 20px;
  border-radius: 10px;
  height: 220px;
} */

/* .image-bg {
  background: linear-gradient(143deg, rgba(35, 50, 91, 1) 66%, rgba(15, 23, 42, 1) 100%);
  padding: 20px;
  border-radius: 10px;
  height: 220px;
} */

.image-bg {
  background: linear-gradient(143deg, rgba(59, 77, 125, 1) 66%, rgba(15, 23, 42, 1) 100%);
  padding: 20px;
  border-radius: 10px;
  height: 220px;
}



.product-img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.product-card {
  background-color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 460px !important;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}



.dropdown-container {
  position: relative;
}


.custom-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  padding: 0px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  min-width: 280px;
  opacity: 0;
  transform: translateX(-20px);
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  z-index: 999;
}

.dropdown-container:hover .custom-dropdown {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.custom-dropdown a {
  display: block;
  padding-left: 12px !important;
  color: #21305b;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
  height: 50px !important;
  border-bottom: 1px solid #f6d677;
}

.custom-dropdown a:hover {
  background-color: #ebdeb8;
}



.custom-dropdown2 {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  padding: 0px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  min-width: 220px;
  opacity: 0;
  transform: translateX(-20px);
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  z-index: 999;
}

.dropdown-container:hover .custom-dropdown2 {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.custom-dropdown2 a {
  display: block;
  padding-left: 12px !important;
  color: #21305b;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
  height: 50px !important;
  border-bottom: 1px solid #f6d677;
}

.custom-dropdown2 a:hover {
  background-color: #ebdeb8;
}


.animated-gradient-border {
  padding: 20px;
  border: 4px solid transparent;
  border-radius: 8px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(270deg, #ea8424, #202f5a, #ea8424) border-box;
  background-size: 200% 200%;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  animation: gradientBorderMove 5s ease infinite;
}

@keyframes gradientBorderMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.zoom-container {
  border-radius: 12px;
  padding: 4px;
  background: linear-gradient(135deg, #202f5a, #ea8424);
  overflow: hidden;
}

.zoom-container-inner {
  border-radius: 8px;
  overflow: hidden;
}

.zoom-container-inner img {
  width: 100%;
  transition: transform 0.4s ease;
  display: block;
}

.zoom-container-inner:hover img {
  transform: scale(1.06);
}

.other {
  font-family: 'Debata' !important;
}

.social-circle {
  width: 36px;
  height: 36px;
  background-color: #202f5a;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  text-decoration: none;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.social-circle:hover {
  background-color: #ea8424;
}


.add-circle {
  width: 42px !important;
  height: 42px !important;
  background-color: #202f5a;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  text-decoration: none;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.add-circle:hover {
  background-color: #ea8424;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.gallery-thumb {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 0px;
}



.footer-with-bg {
  position: relative;
  animation: footerZoom 20s ease-in-out infinite;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@keyframes footerZoom {
  0% {
    background-size: 100%;
  }

  20% {
    background-size: 120%;
  }

  50% {
    background-size: 145%;
  }

  100% {
    background-size: 168%;
  }
}


.border-connector {
  position: relative;
  padding-left: 20px;
}

.border-connector::before {
  content: "";
  position: absolute;
  top: -80px;
  right: 17px;
  width: 0.2px;
  height: 333px !important;
  background-color: white;
  opacity: 0.5;
}

.blue-brain-link {
  color: black;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blue-brain-link:hover {
  background: linear-gradient(90deg, #21305b, #dc2029, #ea8424);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 5s linear infinite;
  background-size: 200% auto;
}

@keyframes gradientMove {
  0% {
    background-position: 200% center;
  }

  100% {
    background-position: 0% center;
  }
}


.gradient-text-animated {
  background: linear-gradient(90deg, #21305b, #dc2029, #ea8424);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 5s linear infinite;
  background-size: 200% auto;
}

@keyframes gradientMove {
  0% {
    background-position: 200% center;
  }

  100% {
    background-position: 0% center;
  }
}



.form-control {
  background-color: #485071 !important;
  border: none;
  color: #fff !important;
  height: 50px;
  border-radius: 6px;
}

.form-control::placeholder {
  color: #cbd3e0 !important;
}

textarea.form-control {
  height: 150px;
  resize: none;
  padding-top: 15px;
}

.form-control:focus {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

input.form-control:-webkit-autofill,
input.form-control:-webkit-autofill:focus,
textarea.form-control:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #485071 inset !important;
  -webkit-text-fill-color: #fff !important;
  transition: background-color 5000s ease-in-out 0s;
}


.header-css {
  position: absolute;
  width: 100%;
  top: 4%;
  z-index: 999;
}


/* mobile-css */

@media screen and (max-width: 768px) {
  .header-css {
    position: absolute;
    width: 100%;
    top: -20px !important;
    z-index: 999;
  }
}


.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  height: 100vh;
  width: 100%;
  background-color: #fff;
  z-index: 2000;
  transition: left 0.3s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.mobile-menu.show {
  left: 0;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  max-width: 400px;
  text-align: left;
}

.mobile-menu-inner a {
  font-size: 1rem;
  color: #21305b;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid #f6d677 !important;
  padding: 10px 0;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

.dropdown-menu-mobile {
  display: flex;
  flex-direction: column;
  margin-top: 5px;
  padding-left: 10px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}


.dropdown-menu-mobile a {
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom: none;
  padding: 8px 0;
  color: #21305b;
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown-menu-mobile.show {
  max-height: 500px;
  opacity: 1;
}

.custom-90 {
  width: 90% !important;
}

.custom-p {
  padding: 45px 0 !important;
}

@media (max-width: 767.98px) {
  .zoom-container-inner img {
    max-width: 100%;
    height: auto;
  }

  .zoom-container {
    margin-bottom: 16px;
  }

  .border-connector {
    position: relative;
    padding-left: 20px;
  }

  .custom-90 {
    width: 100% !important;
  }

  .custom-p {
    padding: 65px 0 !important;
  }

  .border-connector::before {
    content: "";
    position: absolute;
    top: -80px;
    right: 17px;
    width: 0px;
    height: 0 !important;
    background-color: white;
    opacity: 0.5;
  }

}


/* mobile-css */


.sticky-offer {
  position: sticky;
  top: 100px;
  align-self: flex-start;
}

@media (max-width: 768px) {
  .sticky-offer {
    position: static;
  }
}

.hover-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}


.transition {
  transition: all 0.3s ease-in-out;
}

.transform-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.card-img-top {
  object-fit: cover;
  height: 180px;
}

.card h5 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.icon-img {
  width: 32px;
  height: 32px;
}

.dropdown-menu-mobile {
  display: none;
}

.dropdown-menu-mobile.show {
  display: block;
}


.blur-background {
  /* background: rgba(35, 50, 91, 0.4);  */
  /* backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  overflow: hidden; */
  background: transparent !important;
}


.carousel-fade .carousel-item {
  transition: opacity 0.5s ease-in-out;
}


.image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.main-image {
  width: 100%;
  display: block;
  transition: filter 0.3s ease;
}

.blur-overlay {
  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;
  z-index: 1;
}

.logo-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  width: 250px;
  max-width: 80%;
}

.image-wrapper:hover .main-image {
  filter: blur(4px);
}

.image-wrapper:hover .blur-overlay {
  opacity: 1;
}

.image-wrapper:hover .logo-overlay {
  opacity: 1;
}


.gallery {
  column-count: 3;
  column-gap: 15px;
}

.gallery img {
  width: 100%;
  margin-bottom: 15px;
  border-radius: 10px;
  display: block;
}

@media (max-width: 992px) {
  .gallery {
    column-count: 2;    
  }
}

@media (max-width: 576px) {
  .gallery {
    column-count: 1;     
  }
}

.responsive-img {
  width: 100%;        
  object-fit: contain;
}

@media (min-width: 992px) { 
  .responsive-img {
    width: 80%;        /* 80% width only on large screens */
    margin-left: auto; /* push to right */
    display: block;    /* ensure block for margin to work */
  }
}
