<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@font-face {
    font-family: "Segoe UI";
    src: url('../fonts/Segoe-UI.ttf');
}
@font-face {
    font-family: "Aptos";
    src: url('../fonts/aptos.ttf');
}
@font-face {
  font-family: "Dancing Script";
  src: url('../fonts/DancingScript-Regular.ttf');
}
@font-face {
  font-family: "Aptos SemiBold";
  src: url('../fonts/aptos-semibold.ttf');
}
:root {
    --theme-main-blue-color : hsla(210, 60%, 23%, 1);
    --theme-light-blue-color : hsla(223, 64%, 37%, 1);
    --theme-dark-blue-color : hsla(223, 97%, 14%, 1);
    --theme-main-black-color : hsla(0, 0%, 0%, 1);
    --theme-main-gray-color : hsla(0, 0%, 63%, 1);
    --theme-main-white-color : hsla(0, 0%, 100%, 1);
}
* {
    box-sizing: border-box;
}
html {
    min-height: 100%;
    position: relative;
    padding: 0;
    margin: 0;
}
body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    font-family: 'Aptos',sans-serif;
    font-size: 1.25rem;
}
h1,h2,h3,h4,h5,h6 {
    font-family: 'Aptos',sans-serif;
    font-weight: 500;
}
.dancing-script {
  font-family: "Dancing Script",sans-serif;
}
.fs-115rem {
  font-size: 1.15rem;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--theme-main-white-color);
  transition: all 0.3s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--theme-dark-blue-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}
#courseBtn {
    right:20px;
    text-align:right;
}
/*--------------------------------------------------------------
# Search Icon button
--------------------------------------------------------------*/

#search-btn-area {
    position: fixed;
    bottom: 11%;
    right: 0px;
    border: 2px solid var(--theme-dark-blue-color);
    border-radius: 50%;
    display: inline-flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 995;
  background: var(--theme-dark-blue-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.4s;
  text-decoration:none;
}

.scroll-top i {
  font-size: 24px;
  color: var(--theme-main-white-color);
  line-height: 0;
}

.scroll-top:hover {
  background: var(--theme-main-blue-color);
  opacity: 0.85;
  color: var(--theme-main-white-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/* Common Css */
#main-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}
section {
  padding: 60px 0;
  overflow: hidden;
}
.form-select {
  background-position: right -0.02rem center;
  background-image: url('../img/arrow-down.png');
  background-size: 14px 14px;
}
.theme-dark-blue-color {
  background-color: var(--theme-dark-blue-color);
  color: #F5F4E9;
}
.theme-blue-btn {
    background-color: var(--theme-main-blue-color);
    color: var(--theme-main-white-color);
    border: 2px solid var(--theme-main-blue-color);
    font-weight: bold;
}
.theme-blue-btn:hover {
    color: var(--theme-main-blue-color);
    background-color: var(--theme-main-white-color);
    border: 2px solid var(--theme-main-blue-color);
    font-weight: bold;
}
.theme-black-btn {
    background-color: var(--theme-main-black-color);
    color: var(--theme-main-white-color);
    border: 2px solid var(--theme-main-white-color);
}
.theme-black-btn:hover {
    color: var(--theme-main-black-color);
    background-color: var(--theme-main-white-color);
    border: 2px solid var(--theme-main-white-color);
}
.theme-btn-white {
    background-color: var(--theme-main-white-color);
    color: var(--theme-main-blue-color);
    border: 2px solid var(--theme-main-white-color);
    font-size: 1.2rem;
}
.theme-btn-white:hover {
    color: var(--theme-main-white-color);
    background-color: var(--theme-main-blue-color);
    border: 2px solid var(--theme-main-white-color);
}
.theme-btn-gray {
    background-color: var(--theme-main-gray-color);
    color: var(--theme-main-black-color);
    border: 2px solid var(--theme-main-gray-color);
}
.theme-btn-gray:hover {
    background-color: var(--theme-main-white-color);
    color: var(--theme-main-blue-color);
    border: 2px solid var(--theme-main-gray-color);
}
.border-gray {
    border: 2px solid var(--theme-main-gray-color);
}
.theme-bg-gray {
    background-color: var(--theme-main-gray-color);
}
.theme-bg-blue {
  background-color: var(--theme-dark-blue-color);
  color: var(--theme-main-white-color);
}
.theme-text-gray {
    color: var(--theme-main-gray-color);
}
.theme-text-blue {
    color: var(--theme-main-blue-color);
}
.gray-bg {
    background-color: #F5F4E9;
}
.authentication-card {
    background-color: var(--theme-main-black-color);
}
.fs-1-25 {
  font-size: 1.25rem;
}
form {
    padding: 0;
    margin: 0;
    display: inline;
}
.signutra-login-register .authentication-wrap {
    position: relative;
    overflow: hidden;
}
.signutra-login-register .authentication-wrap .authentication-bg.authentication-bg-scroll {
    background-attachment: scroll;
}
.signutra-login-register .authentication-wrap .authentication-bg {
    z-index: 0;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    transition: background-image 300ms ease-in 200ms;
}
.signutra-login-register .authentication-wrap .authentication-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}
.signutra-login-register .authentication-wrap .authentication-content {
    position: relative;
    z-index: 2;
}
.signutra-login-register .form-dark .form-control,
.signutra-login-register .form-dark .form-select {
    border-color: #212325;
    background-color: #212325;
    color: var(--theme-main-white-color);
}
.signutra-login-register .form-control,
.signutra-login-register .form-select {
    border-color: #dae1e3;
    box-shadow: inset 0 0;
}
/* .signutra-login-register .form-select {
  background-image:
    linear-gradient(45deg, transparent 50%, gray 50%),
    linear-gradient(135deg, gray 50%, transparent 50%),
    radial-gradient(#ddd 70%, transparent 72%);
  background-position:
    calc(100% - 8px) calc(1em + 0px),
    calc(100% - 4px) calc(1em + 0px),
    calc(100% - .01em) .6em;
  background-size:
    5px 5px,
    5px 5px,
    1rem 1rem;
  background-repeat: no-repeat;
}
.signutra-login-register .form-select:focus {
  background-image:
    linear-gradient(45deg, white 50%, transparent 50%),
    linear-gradient(135deg, transparent 50%, white 50%),
    radial-gradient(gray 70%, transparent 72%);
  background-position:
    calc(100% - 6px) calc(1em + 0px),
    calc(100% - 11px) calc(1em + 0px),
    calc(100% - .2em) .6em;
  background-size:
    5px 5px,
    5px 5px,
    1rem 1rem;
  background-repeat: no-repeat;
  border-color: green;
  outline: 0;
} */
.signutra-login-register .form-dark .input-group span {
    color: #A0A0A0;
    background-color: #212325;
    border-radius: 0;
    border: 0;
}
.signutra-login-register .form-dark .input-group span,
.signutra-login-register .form-dark .input-group input {
    height: 50px;
}
.signutra-login-register .form-dark .input-group .password-show:hover {
    cursor: pointer;
}
.small-circle {
  position: relative;
  padding-left: 20px;
  color: #011446;
}
.small-circle:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0px;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #011446;
}
.checkbox-bg-grayblue {
    background: #232A31;
}
.checkbox-padding {
    padding: 0.25rem 0.75rem;
}
/* .customCheckbox input {
    background-color: #A0A0A0;
} */
.customCheckbox label {
    color: #A0A0A0;
}
.customCheckbox .form-check-input:checked {
    background-color: #000000;
    border-color: var(--theme-main-white-color)fff;
}
.step-container {
    position: relative;
    text-align: center;
    transform: translateY(-43%);
}
.step-circle {
    width: 60px;
    height: 10px;
    border-radius: 6px;
    background-color: #878787;
    /* border: 2px solid #007bff; */
    line-height: 0px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    cursor: pointer; /* Added cursor pointer */
}

.step-circle {
    background-color: var(--theme-main-gray-color);
}
.step-circle.current {
    background-color: var(--theme-main-white-color);
}
.step-circle.visited {
    background-color: var(--theme-main-blue-color);
}
#multi-step-form{
    overflow-x: hidden;
}
.cloneBtn {
    background-color: var(--theme-main-blue-color);
    color: var(--theme-main-white-color);
    cursor: pointer;
}
.removeBtn {
    background-color: #f31313;
    color: var(--theme-main-white-color);
    cursor: pointer;
}

/* Header Css  */
.home-header {
  background-color: transparent;
}
.navbar .nav-link.active {
  font-weight: bold;
}
.home-header #stickyTopNav .nav-item .nav-link {
  color: #000000;
}
.header #stickyTopNav .nav-item a.theme-blue-btn {
  color: var(--theme-main-white-color);
  background-color: var(--theme-dark-blue-color);
}
.header.sticked {
  background-color: var(--theme-dark-blue-color);
}
.header.sticked #stickyTopNav .nav-item .nav-link {
  color: var(--theme-main-white-color);
}
.header.sticked #stickyTopNav .nav-item a.theme-blue-btn {
  background-color: var(--theme-main-blue-color);
}
#header,#logo,a {
  transition: all 0.4s ease;
}
#header .navbar {
  padding: 0.45rem 2rem;
  font-family: 'Segoe UI', sans-serif;
}
#header.sticked .navbar {
  padding: 0.25rem 2rem;
}
#stickyTopNav .nav-item .nav-link {
  color: var(--theme-main-white-color);
  font-size: 1.3rem;
}
.mobile-nav {
  list-style-type: none;
}
.mobile-nav a {
  font-size: 1.5rem;
  text-decoration: none;
}

/* Header Css  */
.home-search-btn {
  background-color: rgba(245, 244, 233, 1);
}
.home-search-btn input {
  background-color: transparent;
}
.home-search-btn input.form-control:focus {
  box-shadow: none;
  outline: transparent;
  background-color: rgba(245, 244, 233, 1);
}
.shape-change {
  background-image: url('../img/home-go.png');
  background-repeat: no-repeat;
  background-size: cover; /* Adjust as needed */
  background-position: center; /* Adjust as needed */
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  width: 100%;
  max-width: 100px;
  border: 0;
  background-color: transparent;
  color: #fff;
}
/* .home-header.sticked button.navbar-toggler i{
  color: #fff;
} */
.home-header .menuBtn,
.header .menuBtn {
  border: 2px solid #000;
  background-color: #fff;
}
  .banner {
    padding-top: 100px; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-main-white-color);
    position: relative; /* Required for positioning the clip-path shape */
    overflow: hidden; /* Ensure the clip-path shape is contained within the banner */
    padding: 6.25rem 2rem 0;
    height: 100vh;
  }
  .doctor-image {
    max-width: 100%;
    height: auto;
    position: relative; /* Required for stacking the doctor image above the clip-path shape */
    z-index: 1; /* Ensure the doctor image stays above the clip-path shape */
  }
  .clip-path-shape {
    position: absolute;
    top: 0;
    right: 0; /* Align clip-path shape to the right side */
    width: 50%; /* Set width to 50% to overlap only on the right side */
    height: 100%;
    clip-path: polygon(45% 0, 100% 0%, 100% 100%, 0% 100%);
    -webkit-clip-path: polygon(45% 0, 100% 0%, 100% 100%, 0% 100%);
    background-color: var(--theme-main-blue-color); /* Adjust background color as needed */
    z-index: 0; /* Ensure the clip-path shape stays behind the doctor image */
  }
  @media (max-width: 767px) {
    .clip-path-shape {
      display: none; /* Hide clip-path shape on mobile screens */
    }
  }
  .text-border-left {
    border-left: 5px solid var(--theme-main-blue-color);
    padding-left: 10px;
  }

  .see-more-btn img {
    transition: transform 0.3s ease-in-out;
  }
  .see-more-btn:hover img{
    transform: translateX(10px);
  }
  .bg-light-blue {
    background-color: #173A5C;
    width: 100%;
    position: relative;
  }
  .home-registration-area {
    height: 12rem;
  }
  .home-registration-area:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    height: 100%;
    margin: 0 auto;
    background-color: #011446;
    transform: skewX(-30deg);
    transition: transform 0.3s ease-in-out;
  }
  .home-registration-area:hover:after {
    transform: skewX(30deg);
  }

  .z-index-1 {
    z-index: 1;
  }
  .triangle {
    text-align: right;
    padding: 8px;
    background-position: center;
    position: absolute;
    top: 0;
    right: 0;
    width: 4.5rem;
    height: 4.5rem;
    background-repeat: no-repeat;
    background-image: url(../img/img-triangle.svg);
  }
  .card-overlay {
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(23, 59, 94, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .blog-card:hover .card-overlay {
    visibility: visible;
  }
  /* Heart Icon */
.heart-icon,.share-nodes {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-color: var(--theme-main-white-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  text-decoration: none;
}

.heart-icon i, .share-nodes i {
  font-size: 24px;
  color: var(--theme-main-blue-color); /* Initial color */
  transition: color 0.3s ease; /* Smooth color transition */
}

/* Heart Icon Hover Effect */
.heart-icon:hover i {
  color: var(--theme-main-blue-color); /* Change color on hover */
  animation: fa-beat 0.5s infinite alternate; /* Make the icon beat */
  transition: font-weight 0.3s ease-in-out;
}

/* Heart Beat Animation */
@keyframes fa-beat {
  from {
    transform: scale(1);
    font-weight: 100;
  }
  to {
    transform: scale(1.1);
    font-weight: 900;
  }
}
.icon-area {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: var(--theme-main-gray-color);
  color: var(--theme-main-white-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  text-decoration: none;
}
.contact-form {
  border: 2px solid var(--theme-main-gray-color);
}
.map-area iframe {
  width: 100%;
  height: 100%;
  min-height: 445px;
}
.banner-img-area {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 40vh;
    position: relative;
    margin-top: 5rem;
}
.blue-overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(1, 20, 70, 0.75);
 }
 .topic-search .form-control:focus,
 .select2-container--default .select2-selection--single {
     box-shadow: none;
     border-color: #ced4da;
 }
 .topic-search .search-box,
 .topic-search .search-btn-area,
 .select2-container .select2-selection--single,
 .select2-container--default .select2-selection--single .select2-selection__arrow {
     height: 40px;
 }
 .topic-search .search-box {
     border-right: 0;
 }
 .topic-search .search-btn-area {
     padding: .375rem 0;
     background-color: transparent;
     border-left: 0;
 }
 .select2-container--default .select2-selection--single .select2-selection__rendered {
     line-height: 40px;
 }
 .select2-container--default .select2-selection--single {
     border-radius: 0.375rem;
 }

 /* About Us Page */
 .corner-card-title {
  top: 0;
  left: 0;
  transform: translate(50%, 50%);
}
.corner-card-image {
  transform: translate(-20px, -20px);
}
.corner-card-content {
  background-color: #fff;
  color: #000;
  height: 100%;
  padding: 4rem 1.5rem;
  border-radius: 0 20px 20px 0;
}

.our-values-card {
  border-radius: 20px;
}
.our-values-card .title-border-bottom:after {
  content: "";
  margin: 5px auto;
  display: block;
  width: 30%;
  border-bottom: 2px solid #878787;
}

.our-values-card .card-footer{
  padding: 0;
  background-color: transparent;
  border: 0;
  text-align: right;
}

.what-offer-card {
  border: 0;
  border-radius: 30px;
  background: rgb(220,221,228);
  background: linear-gradient(229.27deg, #DCDDE4 -0.72%, #FFFFFF 95.93%);
  background: -webkit-linear-gradient(229.27deg, #DCDDE4 -0.72%, #FFFFFF 95.93%);
  background: -moz-linear-gradient(229.27deg, #DCDDE4 -0.72%, #FFFFFF 95.93%);
  background: -o-linear-gradient(229.27deg, #DCDDE4 -0.72%, #FFFFFF 95.93%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#dcdde4",endColorstr="#ffffff",GradientType=1);
}

.what-offer-card-content {
  border: 4px solid #fff;
  border-radius: 20px;
  background: linear-gradient(50.59deg, #DCDDE4 -3.58%, #FFFFFF 101.24%);
  background: rgb(220,221,228);
  background: linear-gradient(50.59deg, #DCDDE4 -3.58%, #FFFFFF 101.24%);
  background: -webkit-linear-gradient(50.59deg, #DCDDE4 -3.58%, #FFFFFF 101.24%);
  background: -moz-linear-gradient(50.59deg, #DCDDE4 -3.58%, #FFFFFF 101.24%);
  background: -o-linear-gradient(50.59deg, #DCDDE4 -3.58%, #FFFFFF 101.24%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#dcdde4",endColorstr="#ffffff",GradientType=1);
}

.what-offer-card-number-area {
  border-radius: 50%;
  padding: 8px;
  top: -15px;
  left: -15px;
  background: rgb(220, 221, 228);
  background: linear-gradient(325deg, #DCDDE4 -0.02%, #FFFFFF 100%);
  background: -webkit-linear-gradient(325deg, #DCDDE4 -0.02%, #FFFFFF 100%);
  background: -moz-linear-gradient(325deg, #DCDDE4 -0.02%, #FFFFFF 100%);
  background: -o-linear-gradient(325deg, #DCDDE4 -0.02%, #FFFFFF 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#dcdde4",endColorstr="#ffffff",GradientType=1);
}

.what-offer-number {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

/* Custom CSS to ensure equal height */
.card.what-offer-card {
display: flex;
flex-direction: column;
justify-content: space-between;
}

.card-body.what-offer-card-content {
flex: 1;
display: flex;
flex-direction: column;
justify-content: space-between;
}

 .flex-item {
  flex: 0 0 calc(50% - 10px); /* Adjust 10px to match the gap */
  box-sizing: border-box;
}

.why-sni-icon-area {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bg-girl {
  background-image: url('../img/about-banner.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  width: 100%;
  height: 100%;
}
.overlay {
  z-index: 0;
  background-color: var(--theme-dark-blue-color);
  opacity: 0.4;
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.theme-blue-gradient {
  background: linear-gradient(180deg, #0840AC 0%, #011446 100%);
  background: -webkit-linear-gradient(180deg, #0840AC 0%, #011446 100%);
  background: -moz-linear-gradient(180deg, #0840AC 0%, #011446 100%);
}

@media (min-width: 767px) {
  .about-carousel-area {
    margin-left: -25px;
  }
}

@media (max-width: 1199px) {
  .banner {
    padding: 6.25rem 0.5rem 0;
    height: auto;
  }
}

@media (max-width: 767px) {
  #header .navbar {
    padding: 0.45rem 0.5rem;
  }
  #header.sticked .navbar {
    padding: 0.25rem 0.5rem;
  }
}
 /* About Us Page End */


</pre></body></html>