@charset "UTF-8";
@keyframes rotateMandala {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}
/* RESET STYLES */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  font-family: "Lato", sans-serif;
}

body {
  overflow-x: hidden;
}

/* TYPOGRAPHY STYLES */
h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
  color: #333;
  line-height: 1.3;
}

p {
  font-family: "Lato", sans-serif;
  color: #333;
  line-height: 1.6;
  font-size: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  margin-block-start: 0;
  margin-block-end: 0;
  padding-inline-start: 0;
  color: #333;
}
ul li, ol li {
  list-style: none;
  line-height: 28px;
  font-size: 1rem;
  color: #333;
}

/* UTILITIES */
.common-heading {
  font-size: 1.3rem;
  font-weight: 700;
  color: #3B3C86;
  text-shadow: 0 0 10px rgba(255, 196, 0, 0.25);
}

.paragraph {
  font-size: 1rem;
}

blockquote {
  font-weight: 600;
  background: #FAF8F5;
  border-left: 2px solid #3B3C86;
  padding: 15px;
  margin-top: 10px;
  color: #333;
  line-height: 1.6;
  font-size: 1rem;
}

@media only screen and (min-width: 767.98px) {
  .common-heading {
    font-size: 2.5rem;
  }
}
@media only screen and (min-width: 1199.98px) {
  .paragraph {
    font-size: 1.2rem;
    width: 75%;
    margin: 0 auto;
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -40px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-size: 30px;
  line-height: 20px;
  text-align: center;
  color: #3B3C86;
  opacity: 0.3;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  color: #3B3C86;
  opacity: 1;
} 
.btn {
  padding: 0.75rem 1.2rem;
  border-radius: 40px;
  font-size: 1.3rem;
  box-shadow: 0 0 15px rgba(255, 196, 0, 0.4);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(245, 197, 66, 0.3);
  border: none;
  font-weight: 600;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn i {
  margin-right: 5px;
}

.btn-warning {
  background: #FFC400;
  color: #333;
}
.btn-warning:hover {
  background: #e6b800;
  box-shadow: 0 6px 16px rgba(245, 197, 66, 0.4);
}
.btn-warning:active {
  background: #FFC400 !important;
}

.btn-primary {
  background: #3B3C86;
  padding: 0.75rem 0.9rem;
}
.btn-primary:hover {
  background: #0F132D;
  box-shadow: 0 6px 16px rgba(59, 60, 134, 0.4);
}
.btn-primary:active {
  background: #3B3C86 !important;
}

@media only screen and (min-width: 767.98px) {
  .btn {
    padding: 0.75rem 2rem;
  }
}
.navbar {
  background-color: #0F132D;
}
.navbar .nav-link {
  font-weight: 500;
  margin: 0 0.5rem;
  color: #fff;
}
.navbar .nav-link:hover, .navbar .nav-link.active {
  color: #FFC400;
  border-bottom: 1px solid #FFC400;
}
.navbar .navbar-toggler {
  border: none;
}
.navbar .navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

@media only screen and (max-width: 480px) {
  .navbar .navbar-brand {
    width: 60%;
  }
  .navbar .navbar-brand img {
    width: 100%;
    height: auto;
  }
}
.hero-section {
  background-color: #e9e3f4;
  min-height: 80vh;
  color: #3B3C86;
  padding: 3rem 1rem;
  position: relative;
  overflow: hidden;
}
.hero-section .mandala {
  display: block;
  position: absolute;
  top: 10%;
  width: 400px;
  height: 400px;
  background: url("../images/mandala-bg.png") no-repeat center center;
  background-size: contain;
  opacity: 0.15;
  animation: rotateMandala 10s linear infinite;
  transform: translateY(-50%);
  z-index: 0;
}
.hero-section .mandala.mandala-left {
  left: 0;
  transform: translateY(-50%) translateX(-30%);
}
.hero-section .mandala.mandala-right {
  right: 0;
  transform: translateY(-50%) translateX(30%);
  display: none;
}
.hero-section .hero-content {
  position: relative;
  z-index: 1;
}
.hero-section .hero-content .hero-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #3B3C86;
  text-shadow: 0 0 10px rgba(255, 196, 0, 0.25);
}
.hero-section .hero-content .hero-title span {
  font-style: italic;
  font-weight: 700;
  background: linear-gradient(90deg, #F5C542, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
}
.hero-section .hero-content .hero-subtitle {
  font-size: 0.8rem;
  color: #333;
  background: #FAF8F5;
  display: inline-block;
  border-radius: 10px;
  padding: 10px 20px;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(245, 197, 66, 0.2);
  border: 1px solid rgba(245, 197, 66, 0.2);
}

@media only screen and (min-width: 767.98px) {
  .hero-section {
    min-height: 40vh;
  }
  .hero-section .hero-content .hero-title {
    font-size: 2rem;
  }
  .hero-section .hero-content .hero-title span {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 1199.98px) {
  .hero-section {
    min-height: 70vh;
  }
  .hero-section .mandala.mandala-right {
    display: block;
  }
  .hero-section .hero-content .hero-title {
    font-size: 3.5rem;
  }
  .hero-section .hero-content .hero-title span {
    font-size: 3.5rem;
  }
  .hero-section .hero-content .hero-subtitle {
    font-size: 1.25rem;
  }
}
/* service scss start */
#services {
  background: #FAF8F5;
}

.divine_service_box {
  background-color: #fff;
  padding: 2rem;
  margin-top: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 0 transparent;
  border-radius: 5px;
  box-shadow: rgba(59, 60, 134, 0.2) 0px 0px 20px 0px;
}
.divine_service_box .divine_icon {
  width: 80px;
  background-color: #3B3C86;
  height: 80px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  position: relative;
  transition: all 0.3s linear;
}
.divine_service_box .divine_icon:after {
  border: 1px dashed rgba(255, 255, 255, 0.08);
  content: "";
  position: absolute;
  left: -10px;
  top: -10px;
  bottom: -10px;
  right: -10px;
  border-radius: 100%;
}
.divine_service_box:hover {
  transform: translateY(-10px);
  box-shadow: rgba(59, 60, 134, 0.5) 0px 10px 30px 0px;
}
.divine_service_box:hover .divine_icon {
  background-color: #daae01;
}
.divine_service_box:hover .divine_icon:after {
  border-color: #FFC400;
  animation: spin 9s infinite linear;
  -webkit-animation: spin 9s infinite linear;
  -moz-animation: spin 9s infinite linear;
}
.divine_service_box .service_subheading {
  margin: 10px 0;
  padding-bottom: 16px;
  position: relative;
  color: #0F132D;
  font-size: 1.4rem;
  font-weight: 600;
}
.divine_service_box .service_subheading:after {
  width: 70px;
  height: 2px;
  background-color: #FFC400;
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.divine_service_box p {
  color: #333;
}

/* service scss end */
#testimonials {
  background: #FAF8F5;
}
#testimonials .stars {
  color: #FFC400;
  margin: 0 auto;
  font-size: 1.2rem;
  gap: 5px;
}

.testimonial-section {
  background: #fff;
  padding: 30px 0 50px;
}

.testimonial-slider {
  margin-top: 35px;
}
.testimonial-slider p {
  font-size: 0.9rem;
}

.choose-inner {
  background: #fff;
  border-radius: 5px;
  margin: 10px;
  height: 295px;
  padding: 20px 15px 55px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 0px 10px;
}

x .choose-inner p {
  font-size: 15px;
  line-height: 24px;
}

.slide-in img {
  margin: 0 auto;
}

.choose-inner i {
  opacity: 0.3;
  color: #333;
  font-size: 24px;
  text-align: center;
  display: block;
}

.slide-in .clientIMg {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-top: -40px;
  position: relative;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 0px 10px;
  border: 2px solid #fff;
}

.slide-in span {
  display: block;
  text-align: center;
  text-transform: capitalize;
  margin: 0 auto;
  color: #333;
  font-weight: 500;
  margin: 10px 0 5px;
}

.slide-in small {
  color: #737086;
  font-weight: 400;
}

@media only screen and (min-width: 767.98px) {
  .testimonial-slider {
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
  }
  .testimonial-slider .slide-in {
    width: 33%;
  }
  .slick-slider.testimonial-slider {
    display: flex;
    overflow: initial;
    max-height: auto;
    vertical-align: middle;
  }
}
@media only screen and (min-width: 1199.98px) {
  .testimonial-slider .slide-in {
    transition: transform 0.3s ease;
  }
  .slide-in.slick-center .choose-inner {
    transform: scale(1.1);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 0px 20px;
    margin-top: 14px;
    background: #0F132D;
  }
  .slide-in.slick-center .choose-inner p {
    color: #fff;
  }
  .slide-in.slick-center .choose-inner i {
    color: #fff;
    opacity: 0.6;
  }
  .choose-inner {
    transition: transform 0.3s ease;
    height: 250px;
  }
}
.faq-section .accordion-item {
  margin-bottom: 1rem;
  box-shadow: rgba(59, 60, 134, 0.2) 0px 0px 10px 0px;
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: #FAF8F5;
}
.faq-section .accordion-item .accordion-header .accordion-button {
  font-weight: 500;
  font-family: "Lato", sans-serif;
  color: #2d2d2d;
  font-size: 1rem;
  background: #FAF8F5;
}
.faq-section .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background-color: #3B3C86;
  color: #fff;
}
.faq-section .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  background-image: url("../../assets/images/icons/down-arrow.svg");
}
.faq-section .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none;
}
.faq-section .accordion-item .accordion-header .accordion-button:focus-visible {
  outline: none;
}
.faq-section .accordion-item .accordion-header .accordion-body {
  padding: 1rem;
  color: #333;
  background-color: #FAF8F5;
}

#footer {
  background: #FAF8F5;
}
#footer .socialLinks span {
  margin-right: 10px;
}
#footer .socialLinks a {
  background: #3B3C86;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  font-size: 18px;
  line-height: 18px;
  text-align: center;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
#footer .fa-arrow-up {
  color: #3B3C86;
  font-size: 20px;
}
#footer .footer-bottom {
  border-top: 1px solid #9c9ab6;
}

@media only screen and (max-width: 768px) {
  .backToTop {
    display: none;
  }
  p {
    margin-top: 10px;
  }
}
#about {
  padding: 2rem 0 0;
}
#about .about-content img {
  margin-right: 10px;
}
#about .divine_image {
  margin-bottom: 0;
}
#about .divine_image img {
  width: 100%;
  margin-top: 15px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.why-choose-us .why-point {
  background: #fff;
  box-shadow: rgba(59, 60, 134, 0.2) 0px 0px 20px 0px;
  border-radius: 5px;
  padding: 1rem;
}
.why-choose-us .why-point h3 {
  font-weight: 600;
  color: #0F132D;
  font-size: 1rem;
}
.why-choose-us .why-point img {
  margin-right: 5px;
}
.why-choose-us .why-point p {
  margin-bottom: 10px;
}
.why-choose-us .mandala-block {
  display: none;
}

.portfolio-section .nav-pills {
  gap: 10px;
  overflow-x: auto;
  white-space: nowrap;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}
.portfolio-section .nav-pills .nav-link {
  border-radius: 30px;
  padding: 0.4rem 1.5rem;
  color: #3B3C86;
  border: 1px solid #3B3C86;
  transition: 0.3s ease-in-out;
}
.portfolio-section .nav-pills .nav-link.active {
  background-color: #3B3C86;
  color: #fff;
}
.portfolio-section .nav-pills .nav-link:hover {
  background-color: #4b4ca9;
  color: #fff;
}
.portfolio-section .portfolio-box {
  border-radius: 5px;
  background: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 0px 20px 0px;
  transition: transform 0.3s;
  overflow: hidden;
  display: block;
}
.portfolio-section .portfolio-box .portfolio-link {
  font-size: 1.2rem;
  color: #333;
}
.portfolio-section .portfolio-box .previewWeb {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s;
  border-radius: 5px 5px 0 0;
}
.portfolio-section .portfolio-box .previewWeb:hover {
  transform: scale(1.03);
}
.portfolio-section .lead {
  color: #3B3C86;
}

@media only screen and (min-width: 1199.98px) {
  #about {
    padding: 2rem 0;
  }
  #about .divine_image img {
    margin-top: 0;
  }
  .why-choose-us .mandala-block {
    display: block;
  }
  .why-choose-us .mandala-wrapper {
    width: 250px;
    height: 250px;
    margin: 0 auto;
    animation: rotateMandala 18s linear infinite;
    opacity: 0.6;
  }
  .why-choose-us .mandala-wrapper .mandala-img {
    width: 100%;
    height: auto;
    display: block;
  }
  .why-choose-us .why-point {
    background: #fff;
    box-shadow: rgba(59, 60, 134, 0.2) 0px 0px 20px 0px;
    border-radius: 5px;
    padding: 1rem;
  }
  .why-choose-us .why-point h3 {
    font-size: 1.2rem;
  }
}
.blogDetail-hero {
  background-color: #e9e3f4;
  color: #3B3C86;
  padding: 3rem 0 8rem;
}
.blogDetail-hero .hero-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #3B3C86;
}

.blogPost p {
  font-size: 1.1rem;
}
.blogPost h2 {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 600;
}
.blogPost h3 {
  font-size: 1.3rem;
  line-height: 1.6rem;
  font-weight: 600;
}
.blogPost ul, .blogPost ol {
  padding-left: 15px;
  margin-bottom: 20px;
}
.blogPost ul li, .blogPost ol li {
  font-size: 1.1rem;
  padding: 0.5rem 0;
}
.blogPost ul li {
  list-style-type: none;
}
.blogPost ol li {
  list-style-type: number;
}
.blogPost article section {
  border-bottom: 1px solid #ddd;
  padding: 1.5rem 0;
}
.blogPost article .fa-check-circle {
  color: #3B3C86;
  padding-right: 5px;
}
.blogPost article .fa-times-circle {
  color: red;
  padding-right: 5px;
}
.blogPost article .general_points li {
  list-style-type: disc;
}
.blogPost article a {
  color: #3B3C86;
  font-weight: 600;
}
.blogPost table {
  width: 100%;
  margin: 15px 0;
  overflow-x: auto;
  display: block;
}
.blogPost table td, .blogPost table th {
  border: 0.5px solid #888;
  padding: 10px;
}
.blogPost table td {
  font-size: 1rem;
  font-weight: 400;
}
.blogPost table td a {
  font-size: 12px;
  color: #3B3C86;
  font-weight: 400;
}
.blogPost table th {
  background: #3B3C86;
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
}
.blogPost table p {
  text-align: left;
}
.blogPost table tr:nth-child(even) {
  background-color: #FAF8F5;
}
.blogPost table img {
  width: unset;
  vertical-align: middle;
  margin: 0 2px;
}

.blog_banner {
  position: relative;
  z-index: 1;
  margin-top: -100px;
}
.blog_banner img {
  border-radius: 5px;
  width: 100%;
  height: auto;
}

@media only screen and (min-width: 767.98px) {
  .blogDetail-hero .hero-title {
    font-size: 2.1rem;
  }
  .blogPost h2 {
    font-size: 2rem;
    line-height: 2.5rem;
  }
  .blogPost h3 {
    font-size: 1.6rem;
    line-height: 2rem;
  }
  .blogPost p, .blogPost ul, .blogPost ol li {
    font-size: 1.25rem;
  }
  .blogPost table {
    display: table;
  }
}
@media only screen and (min-width: 1199.98px) {
  .blogDetail-hero {
    padding: 3rem 0 10rem;
  }
  .blogDetail-hero .hero-title {
    font-size: 3.5rem;
  }
  .blog_banner {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .blog_banner img {
    width: 94%;
    height: auto;
    margin: 0 auto;
  }
  .blogPost article {
    max-width: 1200px;
  }
  .blogPost table {
    overflow-x: visible;
    white-space: normal;
  }
  .blogPost table th {
    font-size: 1.5rem;
  }
  .blog_mainarea .contactus .ctaHeading {
    font-size: 2.2rem;
  }
  .blog_mainarea .contactus .cta-content {
    width: 80%;
  }
  .blog_mainarea .contactus p {
    font-size: 1.25rem;
  }
}
.contactus {
  background: linear-gradient(to right, #e6e3f4, #f9f0db);
}
.contactus .ctaHeading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0F132D;
}
.contactus img {
  position: relative;
  top: 15px;
}
.contactus .ctaButtons {
  gap: 15px;
}

@media only screen and (min-width: 767.98px) {
  .contactus .ctaHeading {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 1199.98px) {
  .contactus {
    background: url("../../assets/images/bg.png") no-repeat;
    background-size: cover;
  }
  .contactus .ctaHeading {
    font-size: 2.5rem;
  }
  .contactus .cta-content {
    width: 75%;
    margin: 0 auto;
  }
  .contactus p {
    font-size: 1.5rem;
  }
}/*# sourceMappingURL=main.css.map */