/*==============================
  Global Styles
==============================*/
a:link {
  color: #000;
  text-decoration: none;
}

a {
  color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
  text-decoration: none;
}
:root {
  --primary: #0C82C0;
  --theme-btn-bg-color: #2d9cfe;
  --theme-btn-hover-color: #fff;
  --theme-btn-hover1-color: #0581f4;
  --theme-btn-text-color: #fff;
  --theme-btn-hover-text-color: #035096;
  --theme-bg-color: #035096;
  --theme-text-color: #035096;
  --cream: #F9F6EE;
  --theme-dark-color: #035096;
}

/* Typography */
.playfair-font {
  font-family: 'Playfair Display', serif;
}

.cormorant-font {
  font-family: 'Cormorant Garamond', serif;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--black);
}

.text-darkred {
  color: var(--theme-text-color) !important;
}

/*==============================
  Image Containers
==============================*/

.three_col_img_div,
.three_col_img_div_contain {
  position: relative;
  width: 100%;
  padding-top: 75%;
  /* This creates a 3:2 aspect ratio (height auto-scales) */
  overflow: hidden;
}

.three_col_img_div img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
  object-position: top;
}

.three_col_img_div_contain img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 1s ease;
}

.wel_img_div {
  position: relative;
  width: 100%;
  /* height: 100%; */
  padding-top: 75%;
  /*This creates a 3:2 aspect ratio (height auto-scales) */
  overflow: hidden;
}

.wel_img_div img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}



/*==============================
  Icon & Circle Image Styles
==============================*/
.icon-container,
.rounded-circle-icon_size {
  width: 40px;
  height: 40px;
}

.rounded-circle-icon_size-5 {
  width: 45px;
  height: 45px;
}

.rounded-circle-image {
  width: 120px;
  height: 120px;
  overflow: hidden;
  flex-shrink: 0;
  /* Prevent resizing in flex container */
}

/*==============================
  Background Utilities
==============================*/
.bg-custome {
  background-color: var(--theme-bg-color) !important;
}

/*==============================
  Button Classes
==============================*/
.btn-custom {
  background-color: var(--theme-btn-bg-color) !important;
  color: var(--theme-btn-text-color) !important;
}

.btn-custom:hover {
  background-color: var(--theme-btn-hover-color) !important;
  color: var(--theme-btn-hover-text-color) !important;
}

.btn-custom-icm {
  background-color: var(--theme-btn-bg-color) !important;
  color: var(--theme-btn-text-color) !important;
}

.btn-custom-icm:hover {
  background-color: var(--theme-btn-hover1-color) !important;
  color: var(--theme-btn-text-color) !important;
}

.btn-custom-outline {
  background-color: transparent !important;
  color: var(--theme-dark-color) !important;
  border: 1px solid var(--theme-dark-color) !important;
}

.btn-custom-outline:hover {
  background-color: var(--theme-btn-bg-color) !important;
  color: var(--theme-btn-text-color) !important;
}

/* Floating CTA */
.slide-cta {
  display: inline-block;
  padding: 14px 35px;
  background: linear-gradient(90deg, #000, #2c0101);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 24px;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.slide-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(59, 130, 246, 0.4);
}




/* .service-tab-left p {
  margin: 25px 0;
} */

.service-btn {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 30px;
  background: transparent;
  border: 2px solid #398075;
  border-radius: 30px;
  position: relative;
  vertical-align: middle;
  display: inline-block;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
}

.service-btn:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #398075;
  border-radius: 30px;
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}

.service-btn:hover:before,
.service-btn:focus:before,
.service-btn:active:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.service-btn:hover,
.service-btn:focus,
.service-btn:active {
  color: #fff;
  border-color: #398075;
}


/*==============================
  Utility Classes
==============================*/
.text-custom-color {
  color: var(--theme-text-color) !important;
}

@media (min-width: 992px) {
  .h-lg-25 {
    height: 15% !important;
  }

  .h-lg-50 {
    height: 50% !important;
  }

  .h-lg-75 {
    height: 75% !important;
  }

  .h-lg-10 {
    height: 100% !important;
  }

  .section-title,
  .main-heading {
    display: inline-block;
    position: relative;
    /* padding: 0 1rem; */
  }

  .section-title::before,
  .section-title::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 50px;
    height: 1.5px;
    background-color:#035096;
    /* background-color: var(--theme-text-color); */
  }

  .section-title,
  .main-heading::before {
    /* left: -60px; */
  }

  .section-title::after {
    right: -60px;
  }


  .section-title::before {
    left: -60px;
  }
}

.hr-grey {
  width: 50px;
  background-color: rgba(255, 255, 255, 0.51);
  height: 1px;
  border: none;
}

.hr-default {
  border-color: rgba(255, 255, 255, 0.51);
}


.c_bullet ul {
  list-style: none;
  margin-left: 0px;
  margin-right: 20px;
  line-height: 30px;
  color: #000;
}

.c_bullet ul li::before {
  content: "\2713";
  /* position: absolute; */
  line-height: 30px;
  color: var(--theme-dark-color);
  font-weight: bolder;
  font-size: 18px;
  display: inline-block;
  width: 15px;
  padding-right: 1.2rem;
  /* margin-left: -30px; */
  /* display: block; */
}

.icm_bullet ul {
  list-style: none;
  margin-left: 0px;
  margin-right: 20px;
  line-height: 30px;
  color: #000;
}

.icm_bullet ul li::before {
  content: "\2713";
  /* position: absolute; */
  line-height: 30px;
  color: var(--theme-dark-color);
  font-weight: bolder;
  font-size: 18px;
  display: inline-block;
  width: 15px;
  padding-right: 1.2rem;
  margin-left: -30px;
  /* display: block; */
}

.focus-badge {
  background-color: var(--theme-text-color);
  color: white;
  margin-right: 10px;
  border-radius: 20px;
  padding: 5px 15px;
  font-size: 0.9rem;
}

.border-darkred {
  border-left: 2px solid var(--theme-text-color) !important;
}

.icon-bg {
  color: linear-gradient(to right, #0f7bcf, #035096);
}