@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
.video-card{

    border-radius:16px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.15);

}

.video-card video{

    width:100%;
    height:100%;
    aspect-ratio:16/9;
    display:block;
    object-fit:cover;

}
.hero-video-slide{

    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;

}

.hero-video-slide iframe{

    width:100%;
    height:100%;
    border:0;
    display:block;

}

@media(max-width:991px){

.hero-video-slide{

    height:70vh;

}

}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
}

.header-area {

  background: #fff;

  box-shadow: 0 3px 12px rgba(0, 0, 0, .08);

}
/*==================================
HEADER LOGO
==================================*/

.navbar-brand{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
}

.navbar-brand img{
    width:60px;
    height:60px;
    border-radius:50%;
    object-fit:cover;
}

.logo-text h2{
    margin:0;
    font-size:20px;
    font-family:Georgia,serif;
    font-weight:700;
    color:#2b1b18!important;
    line-height:1.1;
}

.logo-text span{
    display:block;
    margin-top:6px;
    color:#d4af37;
    font-size:11px;
    letter-spacing:2px;
    text-transform:uppercase;
}


@media(max-width:1200px){

.logo-text h2{
    font-size:18px;
}

.logo-text span{
    font-size:12px;
    letter-spacing:1px;
}

.navbar-brand img{
    width:50px;
    height:50px;
}
.nav-link {
    font-size: 14px !important;
    font-weight: 600 !important;
    padding: 10px 10px !important;
}
}
@media(max-width:991px){

.logo-text h2{
    font-size:18px;
}

.logo-text span{
    font-size:12px;
    letter-spacing:1px;
}

.navbar-brand img{
    width:50px;
    height:50px;
}

}

@media(max-width:576px){

.logo-text h2{
    font-size:15px;
}

.logo-text span{
    display:none;
}

.navbar-brand img{
    width:40px;
    height:40px;
}

}

.navbar {

  padding: 14px 0;

}

.navbar-brand img {
  max-width: 100%;
  transition: .4s;

}

.navbar-nav {

  gap: 12px;

}

.nav-link {

  color: #222;

  font-size: 18px;

  font-weight: 500;

  padding: 10px 18px;

  transition: .35s;

}

.nav-link:hover {

  color: #0b73d7 !important;

  transform: scale(1.12);

}

.nav-link.active {

  color: #0b73d7 !important;

  font-weight: 600;

}

@media(max-width:991px) {

  .navbar-nav {

    margin-top: 20px;
    align-items: flex-start !important;

  }

  .nav-link {

    padding: 12px 0 !important;

  }

}

.navbar-toggler {

  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  padding: 5px;
  font-size: 24px;
  color: #0b73d7;
}

.navbar-toggler:focus {

  border: none !important;
  box-shadow: none !important;
}

@media(max-width:991px) {

  .navbar-nav {

    gap: 0;
    margin-top: 15px;
  }

  .nav-item {

    width: 100%;
  }

  .nav-link {

    width: 100%;
    padding: 10px 18px !important;
    font-size: 14px;
    border-radius: 0;
    font-weight: 400;
  }

  .nav-link.active {

    background: #eaf3ff;
    color: #0b73d7 !important;
  }

  .nav-link:hover {

    background: #eaf3ff;
    transform: none;
  }

}
.dropdown{

    position:relative;

}

.dropdown-menu{

    margin-top:0;

    top:100%;

    left:0;

    display:block;

    opacity:0;

    visibility:hidden;

    transform:translateY(10px);

    transition:.35s;

    pointer-events:none;

}
.dropdown-menu {

  border: 0;

  border-radius: 10px;

  min-width: 230px;

  padding: 10px 0;

  box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
}
@media(min-width:992px){

.dropdown:hover>.dropdown-menu{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

    pointer-events:auto;

}

}

.dropdown-item {

  padding: 12px 22px;

  font-size: 16px;

  font-weight: 500;

  color: #222;

  transition: .3s;

}

.dropdown-item:hover {

  background: #0b73d7;

  color: #fff;

  padding-left: 28px;

}

.dropdown-toggle::after {

  margin-left: 8px;

  vertical-align: middle;

}

@media(min-width:992px) {

  .navbar .dropdown:hover .dropdown-menu {

    display: block;

    animation: dropDown .35s ease;

  }

}

@keyframes dropDown {

  from {

    opacity: 0;

    transform: translateY(15px);

  }

  to {

    opacity: 1;

    transform: translateY(0);

  }

}
/*==========================
SERVICE DROPDOWN
==========================*/

.nav-item.dropdown{

    position:relative;

}

.service-dropdown{

    list-style:none;

    padding:10px 0;

    margin:0;

    position:absolute;

    top:100%;

    left:0;

    width:240px;

    background:#fff;

    border-radius:10px;

    box-shadow:0 10px 30px rgba(0,0,0,.12);

    opacity:0;

    visibility:hidden;

    transform:translateY(15px);

    transition:.35s;

    z-index:999;

}

.service-dropdown li a{

    display:block;

    padding:12px 22px;

    color:#222;

    text-decoration:none;

    transition:.3s;

    font-weight:500;

}

.service-dropdown li a:hover{

    background:#0b73d7;

    color:#fff;

    padding-left:28px;

}

/* Desktop */

@media(min-width:992px){

.nav-item.dropdown:hover .service-dropdown{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

}

/* Mobile */

@media(max-width:991px){

.service-dropdown{

    position:static;

    width:100%;

    box-shadow:none;

    border-radius:0;

    background:#f8f9fa;

    opacity:1;

    visibility:visible;

    transform:none;

    display:none;

    padding-left:20px;

}

.service-dropdown.open{

    display:block;

}

.service-dropdown li a{

    padding:12px 0;

    font-size:15px;

}

}
@media(max-width:991px) {
  .dropdown-menu {

    position: static !important;

    transform: none !important;

    width: 100%;

    border: none;

    box-shadow: none;

    background: #f8f9fa;

    margin-top: 5px;

  }

  .dropdown-menu {

    border: none;

    box-shadow: none;

    padding-left: 18px;

    margin-top: 0;

  }

  .dropdown-item {

    padding: 10px 0;

    font-size: 15px;

  }

}

.footer-section {

  background: #0d739b;

  padding: 45px 0 30px;

  color: #fff;

}

.footer-logo {

  width: 100%;

  max-width: 290px;

  display: block;

  margin: auto;

}

.footer-text {

  margin-top: 25px;

  font-size: 14px;

  line-height: 2;

  color: #fff;

}

.footer-title {

  font-size: 1.5rem;

  font-weight: 700;

  margin-bottom: 25px;

}

.footer-links {

  padding: 0;

  margin: 0;

  list-style: none;

}

.footer-links li {

  margin-bottom: 10px;

}

.footer-links a {

  text-decoration: none;

  color: #fff;

  font-size: 15px;

  transition: .3s;

}

.footer-links a:hover {

  color: #ffd54d;

  padding-left: 8px;

}

.contact-info p {

  font-size: 15px;

  line-height: 2;

  color: #fff;

  margin-bottom: 0;

}

.contact-info strong {

  font-weight: 700;

}

.social-title {

  margin-top: 35px;

  margin-bottom: 20px;

  color: #1d2238;

  font-size: 23px;

  font-weight: 500;

}

.social-icons {

  display: flex;

  flex-wrap: wrap;

  gap: 22px;

}

.social-icons a {

  text-decoration: none;

  color: #ffb322;

  font-size: 15px;

}

.social-icons i {

  color: #fff;

  margin-right: 8px;

  font-size: 15px;

}

.copyright {

  background: #fff;

  padding: 22px 0;

  text-align: center;

  font-size: 18px;

}

.copyright a {

  color: #0d6efd;

  text-decoration: none;

}

@media(max-width:991px) {

  .footer-section {

    text-align: center;

  }

  .footer-logo {

    max-width: 240px;

  }

  .footer-text {

    font-size: 15px;

    line-height: 1.8;

  }

  .footer-title {
    font-size: 18px;
    margin-top: 20px;

  }

  .social-icons {

    justify-content: center;

  }

  .contact-info {

    text-align: center;

  }

}

@media(max-width:576px) {

  .footer-links a {

    font-size: 15px;

  }

  .contact-info p {

    font-size: 13px;

  }

  .social-title {

    font-size: 24px;

  }

  .copyright {

    font-size: 13px;

    line-height: 1.8;

    padding: 15px;

  }

  .social-icons {
    gap: 12px;
  }
}

.hero-slider {

  background: #0f739d;
  overflow: hidden;
}

.heroSwiper {

  width: 100%;
  height: 550px;

}

.heroSwiper .swiper-slide {

  height: 550px;

}

/*=====================================
Content
======================================*/

.hero-content {

  height: 550px;

  display: flex;
  flex-direction: column;

  justify-content: center;

  padding: 0 90px;

  color: #fff;

}

.hero-subtitle {

  font-size: 20px;

  font-weight: 600;

  color: #d6d6d6;

  margin-bottom: 30px;

}

.hero-content h1 {

  font-size: 25px;

  line-height: 1.2;

  font-weight: 800;

  margin-bottom: 40px;

  font-family: Georgia, serif;

}

.hero-content p {

  font-size: 18px;

  line-height: 1.8;

  color: #d9e3e8;

  max-width: 90%;

}

/*=====================================
Image
======================================*/

.hero-image {

  width: 100%;

  height: 550px;

  overflow: hidden;

}

.hero-image img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;

}

/*=====================================
Navigation Buttons
======================================*/

.swiper-button-next,
.swiper-button-prev {

  width: 54px;

  height: 54px;

  border: 1px solid rgba(255, 255, 255, .8);

  border-radius: 50%;

  color: #fff;

  background: transparent;

  transition: .3s;

}

.swiper-button-next:hover,
.swiper-button-prev:hover {

  background: #fff;

  color: #0f739d;

}

.swiper-button-next::after,
.swiper-button-prev::after {

  font-size: 20px;

  font-weight: bold;

}

/*=====================================
Pagination
======================================*/

.swiper-pagination-bullet {

  width: 16px;

  height: 16px;

  background: transparent;

  border: 2px solid #fff;

  opacity: 1;

}

.swiper-pagination-bullet-active {

  background: #ff4b72;

  border-color: #ff4b72;

}

/*=====================================
Desktop Position
======================================*/

@media(min-width:992px) {

  .swiper-button-next {

    right: 35px;

    bottom: 80px;

    top: auto;

  }

  .swiper-button-prev {

    right: 35px;

    left: auto;

    bottom: 150px;

    top: auto;

  }

  .swiper-pagination {

    right: 35px !important;

    left: auto !important;

    width: auto !important;

    top: 50% !important;

    transform: translateY(-50%);

  }

}

/*=====================================
Tablet
======================================*/

@media(max-width:991px) {

  .heroSwiper {

    height: auto;

  }

  .heroSwiper .swiper-slide {

    height: auto;

  }

  .hero-content {

    height: auto;

    padding: 70px 35px;

  }

  .hero-content h1 {

    font-size: 42px;

  }

  .hero-content p {

    max-width: 100%;

    font-size: 18px;

  }

  .hero-image {

    height: 500px;

  }

}

/*=====================================
Mobile
======================================*/

@media(max-width:576px) {

  .hero-content {

    padding: 50px 25px;

  }

  .hero-subtitle {

    font-size: 16px;

    margin-bottom: 15px;

  }

  .hero-content h1 {

    font-size: 18px;

    line-height: 1.3;

    margin-bottom: 20px;

  }

  .hero-content p {

    font-size: 14px;

    line-height: 1.8;

  }

  .hero-image {

    height: 320px;

  }

}

/*==============================
Vertical Pagination
==============================*/

.heroSwiper .swiper-pagination {

  position: absolute;

  right: 48px;

  top: 50%;

  transform: translateY(-50%);

  width: auto !important;

  left: auto !important;

  display: flex;

  flex-direction: column;

  gap: 16px;

  z-index: 20;

}

/* Dot */

.heroSwiper .swiper-pagination-bullet {

  width: 18px;

  height: 18px;

  background: transparent;

  border: 2px solid rgba(255, 255, 255, .8);

  opacity: 1;

  transition: .3s;

}

/* Active Dot */

.heroSwiper .swiper-pagination-bullet-active {

  background: #ff4b73;

  border-color: #ff4b73;

  transform: scale(1.15);

}

/*==============================
Next Button
==============================*/

.heroSwiper .swiper-button-next {

  width: 55px;

  height: 55px;

  right: 35px;

  bottom: 70px;

  top: auto;

}

/*==============================
Prev Button
==============================*/

.heroSwiper .swiper-button-prev {

  width: 55px;

  height: 55px;

  right: 35px;

  left: auto;

  bottom: 145px;

  top: auto;

}

/* Common */

.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev {

  border: 1px solid rgba(255, 255, 255, .9);

  border-radius: 50%;

  background: transparent;

  color: #fff;

  transition: .35s;

}

.heroSwiper .swiper-button-next:hover,
.heroSwiper .swiper-button-prev:hover {

  background: #fff;

  color: #0f739d;

}

.heroSwiper .swiper-button-next::after,
.heroSwiper .swiper-button-prev::after {

  font-size: 18px;

  font-weight: bold;

}

@media(max-width:991px) {

  .heroSwiper .swiper-pagination {

    right: 15px;

  }

  .heroSwiper .swiper-button-next {

    width: 45px;

    height: 45px;

    right: 15px;

    bottom: 20px;

  }

  .heroSwiper .swiper-button-prev {

    width: 45px;

    height: 45px;

    right: 15px;

    bottom: 80px;

  }

}

/*====================================
Media Logo Section
====================================*/

.media-section {

  background: #fff;

  padding: 40px 0;

  overflow: hidden;

  border-top: 3px solid #0d739b;

}

/* Swiper */

.leftLogoSwiper,
.rightLogoSwiper {

  width: 100%;

}

/* Slide */

.leftLogoSwiper .swiper-slide,
.rightLogoSwiper .swiper-slide {

  display: flex;

  justify-content: center;

  align-items: center;

  height: 150px;

}

/* Logo */

.leftLogoSwiper .swiper-slide img,
.rightLogoSwiper .swiper-slide img {

  max-width: 180px;

  max-height: 80px;

  width: auto;

  height: auto;

  object-fit: contain;

  transition: .35s;

  filter: grayscale(0);

}

/* Hover */

.leftLogoSwiper .swiper-slide img:hover,
.rightLogoSwiper .swiper-slide img:hover {

  transform: scale(1.08);

}

/* Remove Swiper Default Padding */

.swiper {

  padding: 0;

}

/*====================================
Desktop
====================================*/

@media(min-width:992px) {

  .leftLogoSwiper {

    padding-right: 20px;

  }

  .rightLogoSwiper {

    padding-left: 20px;

  }

}

@media(max-width:991px) {

  .media-section {

    padding: 50px 0;

  }

  .leftLogoSwiper .swiper-slide,
  .rightLogoSwiper .swiper-slide {

    height: 120px;

  }

  .leftLogoSwiper .swiper-slide img,
  .rightLogoSwiper .swiper-slide img {

    max-width: 140px;

    max-height: 65px;

  }

}

@media(max-width:576px) {

  .media-section {

    padding: 35px 0;

  }

  .leftLogoSwiper .swiper-slide,
  .rightLogoSwiper .swiper-slide {

    height: 90px;

  }

  .leftLogoSwiper .swiper-slide img,
  .rightLogoSwiper .swiper-slide img {

    max-width: 110px;

    max-height: 50px;

  }

}

.top-astrologers {

  padding: 50px 0;

  background: #fff;

}

.section-title {

  text-align: center;

  margin-bottom: 60px;

}

.section-title h2 {

  font-size: 40px;
  font-weight: 700;
  color: #0b6b97;
  font-family: Georgia, serif;
  margin-bottom: 20px;

}

.section-title span {

  display: block;

  width: 80px;

  height: 2px;

  background: #0b6b97;

  margin: auto;

}

.astro-card {

  margin-bottom: 25px;

}

.astro-img {

  overflow: hidden;

}

.astro-img img {

  width: 100%;

  height: 520px;

  object-fit: cover;

  transition: .5s;

}

.astro-card:hover img {

  transform: scale(1.05);

}

.astro-content {

  text-align: center;

  padding: 28px 20px;

}

.astro-content h3 {

  font-size: 28px;

  font-family: Georgia, serif;

  color: #0b6b97;

  font-weight: 700;

  margin-bottom: 20px;

}

.astro-content p {

  font-size: 16px;

  color: #4d4d4d;

  line-height: 1.9;

  max-width: 92%;

  margin: 0 auto 30px;

}

.visit-btn {

  display: inline-block;

  background: #0b6b97;

  color: #fff;

  padding: 12px 34px;

  border-radius: 4px;

  text-decoration: none;

  font-size: 16px;

  font-weight: 600;

  transition: .3s;

}

.visit-btn:hover {

  background: #084f70;

  color: #fff;

}

@media(max-width:991px) {

  .top-astrologers {

    padding: 60px 0;

  }

  .section-title {

    margin-bottom: 45px;

  }

  .section-title h2 {

    font-size: 36px;

  }

  .astro-img img {

    height: 360px;

  }

  .astro-content {

    padding: 22px 10px;

  }

  .astro-content h3 {

    font-size: 24px;

  }

  .astro-content p {

    font-size: 15px;

    line-height: 1.8;

  }

  .visit-btn {

    padding: 10px 28px;

    font-size: 15px;

  }

}

@media(max-width:576px) {

  .top-astrologers {

    padding: 45px 0;

  }

  .section-title {

    margin-bottom: 35px;

  }

  .section-title h2 {

    font-size: 30px;

    line-height: 1.3;

  }

  .section-title span {

    width: 60px;

  }

  .astro-img img {

    height: 240px;

  }

  .astro-content {

    padding: 20px 5px;

  }

  .astro-content h3 {

    font-size: 20px;

    line-height: 1.5;

  }

  .astro-content p {

    font-size: 14px;

    line-height: 1.8;

    max-width: 100%;

    margin-bottom: 22px;

  }

  .visit-btn {

    padding: 10px 24px;

    font-size: 14px;

  }

}

.about-acharya {

  padding: 50px 0;

  background: #fff;

}

.about-content h2 {

  font-size: 30px;

  color: #0b6b97;

  font-family: Georgia, serif;

  margin-bottom: 25px;

  font-weight: 700;

}

.about-content p {

  font-size: 16px;

  color: #0d5b84;

  line-height: 2;

  margin-bottom: 18px;

}

.about-image {

  text-align: center;

}

.about-image img {

  width: 100%;

  max-width: 700px;

}

.about-btn {

  display: inline-block;

  margin-top: 5px;

  padding: 12px 35px;

  background: #0b6b97;

  color: #fff;

  text-decoration: none;

  border-radius: 4px;

  font-size: 17px;

  font-weight: 600;

  transition: .3s;

}

.about-btn:hover {

  background: #084f70;

  color: #fff;

}

@media(max-width:991px) {

  .about-acharya {

    padding: 0px 0;

  }

  .about-content {

    text-align: center;

  }

  .about-content h2 {

    font-size: 36px;

  }

  .about-content p {

    font-size: 16px;

    line-height: 1.8;

  }

  .about-image {

    margin-top: 20px;

  }

}

@media(max-width:576px) {

  .about-content h2 {

    font-size: 28px;

  }

  .about-content p {

    font-size: 15px;

  }

  .about-btn {

    font-size: 15px;

    padding: 10px 25px;

  }

}

.services-section {

  background: #3c89ab;
  padding: 90px 0;

}

.service-card {

  background: #fff;
  text-align: center;

  padding: 30px 30px;

  min-height: 420px;

  transition: .35s;

  position: relative;

  overflow: hidden;

}

.service-card:hover {

  transform: translateY(-8px);

  box-shadow: 0 18px 45px rgba(0, 0, 0, .15);

}

.service-card img {

  width: 95px;

  height: 95px;

  object-fit: contain;

  margin-bottom: 20px;

  transition: .4s;

}

.service-card:hover img {

  transform: rotate(8deg) scale(1.08);

}

.service-card h3 {

  font-family: Georgia, serif;

  font-size: 28px;

  font-weight: 700;

  color: #0b6b97;

  margin-bottom: 10px;

}

.service-card h5 {

  font-size: 18px;

  color: #0b6b97;

  font-weight: 600;

  margin-bottom: 10px;

}

.service-card p {

  font-size: 15px;

  color: #111;

  margin-bottom: 10px;

}

.service-card a {

  display: inline-block;

  text-decoration: none;

  color: #0b6b97;

  border: 2px solid #0b6b97;

  padding: 12px 28px;

  font-size: 18px;

  font-weight: 500;

  position: relative;

  background: #fff;

  transition: .35s;
  margin-top: 20px;
  box-shadow: 6px 6px 0 #0b6b97;

}

.service-card a:hover {

  background: #0b6b97;

  color: #fff;

  box-shadow: none;

  transform: translate(4px, 4px);

}

@media(max-width:991px) {

  .services-section {

    padding: 70px 0;

  }

  .service-card {

    min-height: 380px;

    padding: 45px 25px;

  }

  .service-card img {

    width: 80px;

    height: 80px;

  }

  .service-card h3 {

    font-size: 26px;

  }

  .service-card h5 {

    font-size: 17px;

  }

  .service-card p {

    font-size: 15px;

    margin-bottom: 35px;

  }

  .service-card a {

    font-size: 16px;

    padding: 10px 24px;

  }

}

@media(max-width:576px) {

  .services-section {

    padding: 45px 0;

  }

  .service-card {

    min-height: auto;

    padding: 35px 20px;

  }

  .service-card img {

    width: 65px;

    height: 65px;

    margin-bottom: 20px;

  }

  .service-card h3 {

    font-size: 22px;

    line-height: 1.4;

  }

  .service-card h5 {

    font-size: 15px;

    line-height: 1.7;

  }

  .service-card p {

    font-size: 14px;

    margin-bottom: 28px;

  }

  .service-card a {

    font-size: 15px;

    padding: 10px 22px;

    box-shadow: 4px 4px 0 #0b6b97;

  }

}

.achievement-section {
  padding: 90px 0;
  background: #fff;
  overflow: hidden;
}

.achievement-title {
  text-align: center;
  margin-bottom: 45px;
}

.achievement-title h2 {
  font-family: Georgia, serif;
  font-size: 40px;
  font-weight: 700;
  color: #0b6b97;
  margin-bottom: 18px;
}

.achievement-title span {
  display: block;
  width: 60px;
  height: 3px;
  background: #0b6b97;
  margin: 0 auto;
}

.achievement-text {
  max-width: 1100px;
  margin: 0 auto 70px;
  text-align: center;
}

.achievement-text p {
  font-size: 18px;
  color: #0b6b97;
  line-height: 2;
  margin: 0;
}

.achievementSwiper {
  position: relative;
  padding: 0 60px 60px;
}

.achievementSwiper .swiper-slide {
  text-align: center;
}

.achievementSwiper .swiper-slide img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: .4s;
  display: block;
}

.achievementSwiper .swiper-slide:hover img {
  transform: scale(1.04);
}

.achievementSwiper .achievement-prev,
.achievementSwiper .achievement-next {

  width: 45px;
  height: 45px;
  color: #0b6b97;
  top: 35%;
  transform: translateY(-50%);
  margin-top: 0;
}

.achievementSwiper .achievement-prev {
  left: -5px;
}

.achievementSwiper .achievement-next {
  right: -5px;
}

.achievementSwiper .achievement-prev::after,
.achievementSwiper .achievement-next::after {

  font-size: 28px;
  font-weight: 700;

}

.achievementSwiper .achievement-pagination {

  position: relative;
  margin-top: 35px;
  bottom: auto !important;

}

.achievementSwiper .achievement-pagination .swiper-pagination-bullet {

  width: 10px;
  height: 10px;
  background: #cfcfcf;
  opacity: 1;
  margin: 0 5px !important;

}

.achievementSwiper .achievement-pagination .swiper-pagination-bullet-active {

  background: #0b6b97;

}

@media(max-width:991px) {

  .achievement-section {
    padding: 70px 0;
  }

  .achievement-title h2 {
    font-size: 36px;
  }

  .achievement-text {
    margin-bottom: 45px;
  }

  .achievement-text p {
    font-size: 16px;
    line-height: 1.9;
  }

  .achievementSwiper {
    padding: 0 40px 50px;
  }

  .achievementSwiper .swiper-slide img {
    height: 240px;
  }

  .achievementSwiper .achievement-prev {
    left: 0;
  }

  .achievementSwiper .achievement-next {
    right: 0;
  }

}

@media(max-width:576px) {

  .achievement-section {
    padding: 50px 0;
  }

  .achievement-title {
    margin-bottom: 30px;
  }

  .achievement-title h2 {
    font-size: 28px;
  }

  .achievement-text {
    margin-bottom: 30px;
  }

  .achievement-text p {
    font-size: 15px;
    line-height: 1.8;
  }

  .achievementSwiper {
    padding: 0 20px 45px;
  }

  .achievementSwiper .swiper-slide img {
    height: 190px;
  }

  .achievementSwiper .achievement-prev,
  .achievementSwiper .achievement-next {
    display: none;
  }

}

.why-choose-section {

  background: url("../imgs/a643992c257cc14372db10aea216280b.jpg") center center/cover no-repeat;

  position: relative;

  overflow: hidden;

}

.why-choose-section .overlay {

  background: rgba(9, 102, 145, .88);

  padding: 90px 0;

}

.why-title {

  text-align: center;

  margin-bottom: 35px;

}

.why-title h2 {

  font-family: Georgia, serif;

  font-size: 40px;

  font-weight: 700;

  color: #fff;

  margin-bottom: 18px;

}

.why-title span {

  width: 55px;

  height: 3px;

  background: #fff;

  display: block;

  margin: auto;

}

.why-text {

  max-width: 980px;

  margin: 0 auto 70px;

  text-align: center;

}

.why-text p {

  color: #fff;

  font-size: 19px;

  line-height: 2;

  margin: 0;

}

.why-card {

  background: rgba(14, 108, 148, .82);

  min-height: 350px;

  text-align: center;

  padding: 65px 25px;

  transition: .6s;

  transform-style: preserve-3d;

  perspective: 1000px;

  cursor: pointer;

}

.why-card:hover {

  transform: rotateY(12deg) rotateX(10deg) translateY(-12px);

  box-shadow: 0 25px 55px rgba(0, 0, 0, .25);

}

.why-card i {

  font-size: 55px;

  color: #fff;

  margin-bottom: 28px;

  transition: .4s;

}

.why-card:hover i {

  transform: scale(1.25) rotate(10deg);

}

.why-card h3 {

  font-family: Georgia, serif;

  font-size: 40px;

  color: #fff;

  font-weight: 700;

  margin-bottom: 18px;

}

.why-card p {

  color: #fff;

  font-size: 18px;

  line-height: 1.8;

  margin: 0;

}

@media(max-width:991px) {

  .why-choose-section .overlay {

    padding: 70px 0;

  }

  .why-title h2 {

    font-size: 40px;

  }

  .why-text {

    margin-bottom: 45px;

  }

  .why-text p {

    font-size: 17px;

  }

  .why-card {

    min-height: 300px;

    padding: 45px 20px;

  }

  .why-card h3 {

    font-size: 34px;

  }

}

@media(max-width:576px) {

  .why-choose-section .overlay {

    padding: 50px 0;

  }

  .why-title h2 {

    font-size: 30px;

  }

  .why-text {

    margin-bottom: 35px;

  }

  .why-text p {

    font-size: 15px;

    line-height: 1.8;

  }

  .why-card {

    min-height: auto;

    padding: 35px 20px;

  }

  .why-card i {

    font-size: 42px;

  }

  .why-card h3 {

    font-size: 28px;

  }

  .why-card p {

    font-size: 15px;

  }

}

.gallery-section {

  padding: 90px 0;

  background: #fff;

}

.gallery-section .section-title {

  text-align: center;

  margin-bottom: 55px;

}

.gallery-section .section-title h2 {

  font-family: Georgia, serif;

  font-size: 40px;

  font-weight: 700;

  color: #0b6b97;

  margin-bottom: 18px;

}

.gallery-section .section-title span {

  display: block;

  width: 55px;

  height: 3px;

  background: #0b6b97;

  margin: auto;

}

.gallery-section a {

  display: block;

  overflow: hidden;

  border-radius: 8px;

  position: relative;

}

/* Overlay */

.gallery-section a::before {

  content: "";

  position: absolute;

  inset: 0;

  background: rgba(0, 0, 0, .18);

  opacity: 0;

  transition: .4s;

  z-index: 2;

}

.gallery-section a:hover::before {

  opacity: 1;

}

/*=========================================
Image
=========================================*/

.gallery-img {

  width: 100%;

  height: 290px;

  object-fit: cover;

  border-radius: 8px;

  transition: .45s ease;

  display: block;

}

.gallery-section a:hover .gallery-img {

  transform: scale(1.08);

}

/*=========================================
Responsive
=========================================*/

@media(max-width:991px) {

  .gallery-section {

    padding: 70px 0;

  }

  .gallery-section .section-title {

    margin-bottom: 40px;

  }

  .gallery-section .section-title h2 {

    font-size: 40px;

  }

  .gallery-img {

    height: 240px;

  }

}

@media(max-width:576px) {

  .gallery-section {

    padding: 50px 0;

  }

  .gallery-section .section-title {

    margin-bottom: 30px;

  }

  .gallery-section .section-title h2 {

    font-size: 30px;

  }

  .gallery-img {

    height: 220px;

  }

}

/*=========================================
LightGallery Custom
=========================================*/

.lg-backdrop {

  background: rgba(0, 0, 0, .90);

}

.lg-outer {

  background: rgba(0, 0, 0, .90);

}

.lg-toolbar {

  background: transparent;

}

.lg-counter {

  color: #fff;

  font-size: 20px;

  font-weight: 500;

}

.lg-next,
.lg-prev {

  color: #fff !important;

}

.lg-toolbar .lg-icon {

  color: #fff;

}

/*====================================
Video Banner
====================================*/

.video-banner {

  position: relative;

  width: 100%;

  height: 450px;

  overflow: hidden;

  background: #0d739b;

}

/*====================================
Background Video
====================================*/

.bg-video {

  position: absolute;

  top: 50%;

  left: 50%;

  width: 100%;

  height: 100%;

  object-fit: cover;

  transform: translate(-50%, -50%);

  z-index: 1;

}

/*====================================
Blue Overlay
====================================*/

.video-overlay {

  position: absolute;

  inset: 0;

  background: rgba(13, 115, 155, .70);

  display: flex;

  align-items: center;

  justify-content: center;

  text-align: center;

  z-index: 2;

}

/*====================================
Content
====================================*/

.video-content {

  max-width: 1050px;

  margin: auto;

  padding: 0 20px;

}

.video-content h2 {

  font-family: Georgia, serif;

  font-size: 40px;

  font-weight: 700;

  color: #fff;

  line-height: 1.2;

  margin-bottom: 28px;

}

.video-content p {

  color: #fff;

  font-size: 20px;

  line-height: 1.9;

  margin: 0;

}

/*====================================
Responsive
====================================*/

@media(max-width:991px) {

  .video-banner {

    height: 380px;

  }

  .video-content h2 {

    font-size: 46px;

  }

  .video-content p {

    font-size: 17px;

    line-height: 1.8;

  }

}

@media(max-width:576px) {

  .video-banner {

    height: 320px;

  }

  .video-content {

    padding: 0 18px;

  }

  .video-content h2 {

    font-size: 18px;

    margin-bottom: 10px;

  }

  .video-content p {

    font-size: 12px;

    line-height: 1.7;

  }

}

/*=====================================
Video Gallery Section
=====================================*/

.video-gallery-section {

  padding: 90px 0;

  background: #fff;

  overflow: hidden;

}

/*=====================================
Heading
=====================================*/

.section-title {

  text-align: center;

  margin-bottom: 55px;

}

.section-title h2 {

  font-family: Georgia, serif;

  font-size: 40px;

  font-weight: 700;

  color: #0b6b97;

  margin-bottom: 18px;

}

.section-title span {

  display: block;

  width: 58px;

  height: 3px;

  background: #0b6b97;

  margin: auto;

}

/*=====================================
Video Card
=====================================*/

.video-card {

  border-radius: 10px;

  overflow: hidden;

  background: #fff;

  transition: .45s;

  box-shadow: 0 12px 30px rgba(0, 0, 0, .10);

}

.video-card:hover {

  transform: translateY(-10px);

  box-shadow: 0 20px 45px rgba(0, 0, 0, .18);

}

/*=====================================
Iframe
=====================================*/

.video-card iframe {

  width: 100%;

  height: 100%;

  border: 0;

  display: block;

}

/*=====================================
Ratio
=====================================*/

.video-card .ratio {

  border-radius: 10px;

  overflow: hidden;

}

/*=====================================
Responsive
=====================================*/

@media(max-width:991px) {

  .video-gallery-section {

    padding: 70px 0;

  }

  .section-title {

    margin-bottom: 40px;

  }

  .section-title h2 {

    font-size: 40px;

  }

  .video-card {

    margin-bottom: 10px;

  }

}

@media(max-width:576px) {

  .video-gallery-section {

    padding: 55px 0;

  }

  .section-title {

    margin-bottom: 30px;

  }

  .section-title h2 {

    font-size: 30px;

  }

  .section-title span {

    width: 45px;

  }

  .video-card {

    border-radius: 8px;

  }

  .video-card .ratio {

    border-radius: 8px;

  }

}
/*=====================================
Video Card
=====================================*/

.video-card{

    border-radius:12px;

    overflow:hidden;

    background:#fff;

    box-shadow:0 12px 30px rgba(0,0,0,.10);

    transition:.4s;

}

.video-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.18);

}

/*=====================================
Video
=====================================*/

.video-card video{

    width:100%;

    height:250px;

    display:block;

    object-fit:cover;

    background:#000;

}
/*=====================================
Review Slider Navigation
=====================================*/

.crSwiper {

  position: relative;
  overflow: visible;

}

.crSwiper .cr-prev,
.crSwiper .cr-next {

  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 48px;
  height: 48px;

  border-radius: 50%;
  background: #fff;

  border: 1px solid #e5e5e5;

  box-shadow: 0 8px 20px rgba(0, 0, 0, .12);

  color: #555;

  transition: .35s;

  z-index: 20;

}

.crSwiper .cr-prev {

  left: -24px;

}

.crSwiper .cr-next {

  right: -24px;

}

.crSwiper .cr-prev::after,
.crSwiper .cr-next::after {

  font-size: 18px;
  font-weight: 700;

}

.crSwiper .cr-prev:hover,
.crSwiper .cr-next:hover {

  background: #0b6b97;
  color: #fff;
  border-color: #0b6b97;

}

/* Hide Swiper default blue arrows */

.crSwiper .swiper-button-disabled {

  opacity: .45;
  pointer-events: none;

}

/*=====================================
Client Review Section
=====================================*/

.cr-section {
  padding: 90px 0;
  background: #fff;
  overflow: hidden;
}

/*=====================================
Heading
=====================================*/

.cr-heading {
  text-align: center;
  margin-bottom: 60px;
}

.cr-heading h2 {
  font-family: Georgia, serif;
  font-size: 40px;
  color: #0b6b97;
  font-weight: 700;
  margin-bottom: 18px;
}

.cr-heading span {
  width: 60px;
  height: 3px;
  background: #0b6b97;
  display: block;
  margin: auto;
}

/*=====================================
Google Rating
=====================================*/

.cr-google-box {
  text-align: center;
}

.cr-google-box h3 {
  font-size: 36px;
  font-weight: 800;
  color: #111;
  margin-bottom: 10px;
}

.cr-stars {
  color: #ffb400;
  font-size: 34px;
  margin-bottom: 18px;
}

.cr-google-box p {
  font-size: 20px;
  margin-bottom: 20px;
  color: #222;
}

.cr-google-box strong {
  font-weight: 700;
}

.cr-google-box img {
  width: 170px;
}

/*=====================================
Swiper
=====================================*/

.crSwiper {
  position: relative;
  overflow: visible;
  padding: 8px 45px;
}

/*=====================================
Card
=====================================*/

.cr-card {

  background: #f7f7f7;
  border-radius: 16px;
  padding: 24px;
  min-height: 290px;
  transition: .35s;
  border: 1px solid #efefef;

}

.cr-card:hover {

  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, .12);

}

/*=====================================
User
=====================================*/

.cr-user {

  display: flex;
  align-items: flex-start;
  gap: 15px;
  position: relative;
  margin-bottom: 18px;

}

.cr-avatar {

  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 26px;
  flex-shrink: 0;

  background: #708b9d;

}

.cr-avatar.green {

  background: #4d8d2b;

}

.cr-avatar.light {

  background: #7ab640;

}

.cr-user h5 {

  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #111;

}

.cr-user small {

  display: block;
  color: #777;
  font-size: 15px;
  margin-top: 4px;

}

.cr-google-icon {

  width: 24px;
  position: absolute;
  right: 0;
  top: 5px;

}

/*=====================================
Rating
=====================================*/

.cr-rating {

  color: #ffb400;
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 15px;

}

/*=====================================
Review Text
=====================================*/

.cr-card p {

  font-size: 17px;
  line-height: 1.8;
  color: #222;
  margin: 0;

}

/*=====================================
Navigation
=====================================*/

.crSwiper .cr-prev,
.crSwiper .cr-next {

  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  width: 48px;
  height: 48px;

  background: #fff;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 8px 20px rgba(0, 0, 0, .15);

  border: 1px solid #e9e9e9;

  z-index: 50;

  transition: .35s;

}

.crSwiper .cr-prev {

  left: -5px;

}

.crSwiper .cr-next {

  right: -5px;

}

/* Hide default Swiper arrows */

.crSwiper .cr-prev::after,
.crSwiper .cr-next::after {

  font-size: 18px;
  font-weight: 700;
  color: #444;

}

.crSwiper .cr-prev:hover,
.crSwiper .cr-next:hover {

  background: #0b6b97;
  border-color: #0b6b97;

}

.crSwiper .cr-prev:hover::after,
.crSwiper .cr-next:hover::after {

  color: #fff;

}

.crSwiper .swiper-button-disabled {

  opacity: .35;

  cursor: not-allowed;

}

/*=====================================
Responsive
=====================================*/

@media(max-width:991px) {

  .cr-section {

    padding: 70px 0;

  }

  .cr-heading {

    margin-bottom: 40px;

  }

  .cr-heading h2 {

    font-size: 38px;

  }

  .cr-google-box {

    margin-bottom: 40px;

  }

  .cr-google-box h3 {

    font-size: 34px;

  }

  .cr-stars {

    font-size: 28px;

  }

  .cr-google-box img {

    width: 140px;

  }

  .crSwiper {

    padding: 0 25px;

  }

  .cr-card {

    min-height: auto;

  }

}

@media(max-width:576px) {

  .cr-section {

    padding: 55px 0;

  }

  .cr-heading {

    margin-bottom: 30px;

  }

  .cr-heading h2 {

    font-size: 30px;

  }

  .cr-heading span {

    width: 45px;

  }

  .cr-google-box h3 {

    font-size: 28px;

  }

  .cr-stars {

    font-size: 24px;

  }

  .cr-google-box p {

    font-size: 16px;

  }

  .cr-google-box img {

    width: 120px;

  }

  .cr-card {

    padding: 18px;
    border-radius: 12px;

  }

  .cr-avatar {

    width: 45px;
    height: 45px;
    font-size: 20px;

  }

  .cr-user h5 {

    font-size: 17px;

  }

  .cr-user small {

    font-size: 13px;

  }

  .cr-card p {

    font-size: 15px;

  }

  .cr-rating {

    font-size: 18px;

  }

  .crSwiper .cr-prev,
  .crSwiper .cr-next {

    display: none;

  }

}

/*=========================================
Contact Section
=========================================*/

.contact-info-section {

  padding: 90px 0;

  background: #0b6f95;

  overflow: hidden;

  position: relative;

}

/*=========================================
Left Side
=========================================*/

.contact-left {

  display: flex;

  flex-direction: column;

  gap: 18px;

}

/*=========================================
Contact Card
=========================================*/

.contact-box {

  display: flex;

  align-items: center;

  gap: 18px;

  background: rgba(255, 255, 255, .03);

  border: 1px solid rgba(255, 255, 255, .65);

  border-radius: 6px;

  padding: 22px 22px;

  transition: .35s;

}

.contact-box:hover {

  background: #fff;

  transform: translateX(8px);

  box-shadow: 0 18px 40px rgba(0, 0, 0, .18);

}

.contact-box:hover .contact-text {

  color: #0b6f95;

}

.contact-box:hover .contact-icon {

  background: #0b6f95;

  color: #fff;

}

/*=========================================
Icon
=========================================*/

.contact-icon {

  width: 42px;
  height: 42px;
  min-width: 42px;

  border-radius: 50%;

  background: #fff;

  color: #0b6f95;

  display: flex;

  justify-content: center;

  align-items: center;

  font-size: 20px;

  transition: .35s;

}

/*=========================================
Text
=========================================*/

.contact-text {

  color: #fff;

  font-size: 16px;

  line-height: 1.7;

  font-weight: 400;

  transition: .35s;

  word-break: break-word;

}

/*=========================================
Map
=========================================*/

.contact-map {

  overflow: hidden;

  border-radius: 2px;

  border: 4px solid rgba(255, 255, 255, .12);

  box-shadow: 0 18px 40px rgba(0, 0, 0, .18);

}

.contact-map iframe {

  width: 100%;

  height: 430px;

  display: block;

  border: 0;

}

/*=========================================
Animation
=========================================*/

.contact-left-animate {

  opacity: 0;

  transform: translateX(-70px);

  transition: 1s ease;

}

.contact-right-animate {

  opacity: 0;

  transform: translateX(70px);

  transition: 1s ease;

}

.contact-left-animate.show,

.contact-right-animate.show {

  opacity: 1;

  transform: translate(0);

}

/*=========================================
Responsive
=========================================*/

@media(max-width:991px) {

  .contact-info-section {

    padding: 70px 0;

  }

  .contact-map {

    margin-top: 15px;

  }

  .contact-map iframe {

    height: 380px;

  }

  .contact-text {

    font-size: 18px;

  }

  .contact-box {

    padding: 18px;

  }

  .contact-icon {

    width: 50px;

    height: 50px;

    min-width: 50px;

    font-size: 18px;

  }

}

@media(max-width:576px) {

  .contact-info-section {

    padding: 55px 0;

  }

  .contact-box {

    align-items: flex-start;

    gap: 14px;

    padding: 16px;

  }

  .contact-icon {

    width: 46px;

    height: 46px;

    min-width: 46px;

    font-size: 17px;

  }

  .contact-text {

    font-size: 15px;

    line-height: 1.6;

  }

  .contact-map iframe {

    height: 280px;

  }

}

/*====================================
Contact Banner
====================================*/

.contact-banner {

  position: relative;

  padding: 60px 0;

  overflow: hidden;

  background: url("../imgs/mystical-numerology-scene_52683-107762.png") center center/cover no-repeat;

}

/* Blue Overlay */

.contact-banner::before {

  content: "";

  position: absolute;

  inset: 0;

  background: rgba(9, 84, 130, .84);

}

/* Zodiac Image Right */

.contact-banner::after {

  content: "";

  position: absolute;

  right: -120px;

  top: 50%;

  transform: translateY(-50%);

  width: 520px;

  height: 520px;

  background: url("../images/zodiac-wheel.png") center/contain no-repeat;

  opacity: .22;

  pointer-events: none;

}

/* Content */

.contact-banner-content {

  position: relative;

  z-index: 2;

  max-width: 850px;

}

/* Heading */

.contact-banner-content h1 {

  font-family: Georgia, serif;

  font-size: 30px;

  font-weight: 700;

  color: #fff;

  margin-bottom: 28px;

  letter-spacing: 1px;

  text-shadow: 0 6px 12px rgba(0, 0, 0, .35);

}

/* Paragraph */

.contact-banner-content p {

  color: #fff;

  font-size: 20px;

  line-height: 1.9;

  font-weight: 400;

  margin: 0;

  max-width: 980px;

}

/*====================================
Responsive
====================================*/

@media(max-width:991px) {

  .contact-banner {

    padding: 80px 0;

  }

  .contact-banner::after {

    width: 320px;

    height: 320px;

    right: -90px;

  }

  .contact-banner-content h1 {

    font-size: 42px;

  }

  .contact-banner-content p {

    font-size: 18px;

    line-height: 1.8;

  }

}

@media(max-width:576px) {

  .contact-banner {

    padding: 60px 0;

    text-align: center;

  }

  .contact-banner::after {

    width: 220px;

    height: 220px;

    right: -70px;

    opacity: .12;

  }

  .contact-banner-content h1 {

    font-size: 34px;

    margin-bottom: 18px;

  }

  .contact-banner-content p {

    font-size: 16px;

    line-height: 1.8;

  }

}

/*==================================
Reach Us Section
==================================*/

.reach-section {

  padding: 90px 0;

  background: #fff;

}

.reach-heading {

  text-align: center;

  margin-bottom: 25px;

}

.reach-heading h2 {

  font-family: Georgia, serif;

  font-size: 40px;

  color: #0b6b97;

  font-weight: 700;

  margin-bottom: 18px;

}

.reach-heading span {

  width: 60px;

  height: 3px;

  background: #0b6b97;

  display: block;

  margin: auto;

}

.reach-text {

  max-width: 1050px;

  margin: 0 auto 60px;

  text-align: center;

}

.reach-text p {

  color: #0b6b97;

  font-size: 19px;

  line-height: 2;

}

.reach-card {

  border: 1px solid #0b6b97;

  text-align: center;

  padding: 45px 30px;

  height: 100%;

  transition: .35s;

}

.reach-card:hover {

  transform: translateY(-8px);

  box-shadow: 0 20px 40px rgba(0, 0, 0, .10);

}

.reach-card i {

  font-size: 35px;

  color: #0b6b97;

  margin-bottom: 20px;

}

.reach-card h3 {

  font-size: 28px;

  color: #0b6b97;

  font-weight: 700;

  margin-bottom: 15px;

  font-family: Georgia, serif;

}

.reach-card p {

  color: #0b6b97;

  font-size: 16px;

  line-height: 1.8;

  margin: 0;

}

@media(max-width:991px) {

  .reach-section {

    padding: 70px 0;

  }

  .reach-heading h2 {

    font-size: 30px;

  }

  .reach-text {

    margin-bottom: 40px;

  }

  .reach-text p {

    font-size: 16px;

  }

  .reach-card {

    padding: 35px 25px;

  }

  .reach-card h3 {

    font-size: 23px;

  }

}

@media(max-width:576px) {

  .reach-section {

    padding: 55px 0;

  }

  .reach-heading h2 {

    font-size: 28px;

  }

  .reach-text p {

    font-size: 15px;

    line-height: 1.8;

  }

  .reach-card {

    padding: 28px 20px;

  }

  .reach-card i {

    font-size: 28px;

  }

  .reach-card h3 {

    font-size: 20px;

  }

  .reach-card p {

    font-size: 14px;

  }

}

/*==================================
Contact Form Section
==================================*/

.contact-form-section {

  position: relative;

  background: #c6d9ea;

  padding: 120px 0;

  overflow: hidden;

}

/*===============================
Top Curve
===============================*/

.curve-top {

  position: absolute;

  top: -1px;

  left: 0;

  width: 100%;

  height: 90px;

  background: #fff;

  border-radius: 0 0 50% 50%;

}

/*===============================
Bottom Curve
===============================*/

.curve-bottom {

  position: absolute;

  bottom: -1px;

  left: 0;

  width: 100%;

  height: 90px;

  background: #fff;

  border-radius: 50% 50% 0 0;

}

/*===============================
Form
===============================*/

.contact-form {

  position: relative;

  z-index: 2;

}

.contact-form .form-control {

  height: 58px;

  border-radius: 6px;

  border: none;

  margin-bottom: 18px;

  font-size: 17px;

  color: #444;

  padding: 15px 22px;

  box-shadow: none;

}

.contact-form textarea.form-control {

  height: 220px;

  resize: none;

  padding-top: 18px;

}

.contact-form button {

  background: #0b6b97;

  color: #fff;

  border: none;

  padding: 14px 45px;

  border-radius: 5px;

  font-size: 18px;

  font-weight: 600;

  transition: .35s;

}

.contact-form button:hover {

  background: #084f71;

  transform: translateY(-3px);

}

/*===============================
QR Card
===============================*/

.upi-card {

  background: #fff;

  border: 8px solid #0b6b97;

  border-radius: 18px;

  padding: 25px;

  text-align: center;

  transition: .4s;

}

.upi-card:hover {

  transform: translateY(-8px);

  box-shadow: 0 25px 45px rgba(0, 0, 0, .15);

}

.upi-card img {

  width: 100%;

  max-width: 520px;

}

/*===============================
Responsive
===============================*/

@media(max-width:991px) {

  .contact-form-section {

    padding: 90px 0;

  }

  .upi-card {

    margin-top: 30px;

  }

  .curve-bottom {
    width: 100%;
    height: 30px;
  }

  .curve-top {
    width: 100%;
    height: 30px;
  }
}

@media(max-width:576px) {

  .contact-form-section {

    padding: 70px 0;

  }

  .contact-form .form-control {

    height: 52px;

    font-size: 15px;

  }

  .contact-form textarea.form-control {

    height: 180px;

  }

  .contact-form button {

    width: 100%;

  }

  .upi-card {

    padding: 15px;

    border-width: 5px;

  }

  .curve-bottom {
    width: 100%;
    height: 30px;
  }

  .curve-top {
    width: 100%;
    height: 30px;
  }
}

/*====================================
Inner Banner
====================================*/

.inner-banner {

  position: relative;

  padding: 60px 0;

  overflow: hidden;

  background: url("../imgs/360_F_340863396_h7SXVQKhAYlr98BLu0seoMF4ErhCmoYK.jpg") center center/cover no-repeat;

}


/* Content */

.inner-banner-content {

  position: relative;

  z-index: 2;

}

/* Heading */

.inner-banner-content h1 {

  font-family: Georgia, serif;

  font-size: 30px;

  font-weight: 700;

  color: #fff;

  margin-bottom: 28px;

  text-shadow: 0 5px 12px rgba(0, 0, 0, .35);

}

/* Paragraph */

.inner-banner-content p {

  color: #fff;

  font-size: 20px;

  line-height: 2;

  max-width: 980px;

  margin: 0;

}

.inner-banner-content strong {

  font-weight: 700;

}

/*====================================
Responsive
====================================*/

@media(max-width:991px) {

  .inner-banner {

    padding: 50px 0;

  }

  .inner-banner::after {

    width: 280px;

    height: 280px;

    right: -40px;

    opacity: .15;

  }

  .inner-banner-content {

    text-align: center;

  }

  .inner-banner-content h1 {

    font-size: 25px;

  }

  .inner-banner-content p {

    font-size: 17px;

    line-height: 1.9;

  }

}

@media(max-width:576px) {

  .inner-banner {

    padding: 40px 0;

  }

  .inner-banner::after {

    width: 180px;

    height: 180px;

    right: -40px;

  }

  .inner-banner-content h1 {

    font-size: 23px;

  }

  .inner-banner-content p {

    font-size: 15px;

    line-height: 1.8;

  }

}
.about-founder-section {

  padding: 60px 0;

  background: #fff;

}
.about-founder-content h2 {

  font-family: Georgia, serif;

  font-size: 35px;

  font-weight: 800;

  color: #0b6b97;

  line-height: 1.15;

  margin-bottom: 30px;

  text-shadow: 0 5px 12px rgba(0, 0, 0, .15);

}

.about-founder-content p {

  font-size: 18px;

  color: #0b6b97;

  line-height: 2;

  margin-bottom: 45px;

}
.founder-gallery {

  display: flex;

  gap: 15px;

  justify-content: center;

}

.founder-img {

  flex: 1;

  overflow: hidden;

  border-radius: 2px;

}

.founder-img img {

  width: 100%;

  height: 670px;

  object-fit: cover;

  transition: .5s;

}

.founder-img:hover img {

  transform: scale(1.08);

}
@media(max-width:991px) {

  .about-founder-section {

    padding: 50px 0;

  }

  .about-founder-content {

    text-align: center;

  }

  .about-founder-content h2 {

    font-size: 30px;

  }

  .about-founder-content p {

    font-size: 16px;

    line-height: 1.9;

    margin-bottom: 28px;

  }

  .founder-img img {

    height: 470px;

  }

}

@media(max-width:576px) {

  .about-founder-section {

    padding: 40px 0;

  }

  .about-founder-content h2 {

    font-size: 30px;

  }

  .about-founder-content p {

    font-size: 15px;

    line-height: 1.8;

  }

  .founder-gallery {

    gap: 8px;

  }

  .founder-img img {

    height: 250px;

  }

}
.consultation-section {

  padding: 60px 0;

  background: #fff;

}

.consult-heading {

  text-align: center;

  margin-bottom: 40px;

}

.consult-heading h2 {

  font-family: Georgia, serif;

  font-size: 40px;

  color: #0b6b97;

  font-weight: 700;

  text-shadow: 0 5px 14px rgba(0, 0, 0, .18);

  margin-bottom: 15px;

}

.consult-heading span {

  width: 70px;

  height: 3px;

  background: #0b6b97;

  display: block;

  margin: auto;

}
.consult-column {

  display: flex;

  flex-direction: column;

  gap: 10px;

}
.consult-title {

  text-align: center;

  color: #0b6b97;

  font-family: Georgia, serif;

  font-size: 22px;
font-weight: 600;
  text-decoration: underline;

  margin-bottom: 20px;

}
.consult-card {

  background: #0b6b97;

  color: #fff;

  border-radius: 10px;

  padding: 14px 24px;

  font-size: 18px;

  cursor: pointer;

  transition: .45s;

}

/* Hover */

.consult-card:hover {

  transform: translateY(-8px) scale(1.03);

  box-shadow: 0 18px 40px rgba(11, 107, 151, .35);

}

/*====================================
Blur Effect
====================================*/

/* First */

.consult-card:nth-child(2):hover~.consult-card {

  filter: blur(4px);

  opacity: .45;

  transform: scale(.96);

}

/* Second */

.consult-card:nth-child(3):hover~.consult-card {

  filter: blur(4px);

  opacity: .45;

  transform: scale(.96);

}

/*====================================
Responsive
====================================*/

@media(max-width:991px) {

  .consultation-section {

    padding: 40px 0;

  }

  .consult-heading {

    margin-bottom: 35px;

  }

  .consult-heading h2 {

    font-size: 35px;

  }

  .consult-title {

    font-size: 20px;

  }

  .consult-card {

    font-size: 16px;

    padding: 16px;

  }

}

@media(max-width:576px) {

  .consultation-section {

    padding: 35px 0;

  }

  .consult-heading h2 {

    font-size: 30px;

  }

  .consult-title {

    font-size: 18px;

  }

  .consult-card {

    font-size: 15px;

    padding: 15px;

  }

}



/*==================================
Service Banner
==================================*/

.service-banner{

    position:relative;

    background:url("../imgs/Ban1-1030x368-1.jpg") center center/cover no-repeat;

    display:flex;

    align-items:center;

}

/* Overlay */

.service-banner-overlay{

    width:100%;

    background:rgba(5,22,74,.68);

    padding:60px 0;

}

/* Content */

.service-banner-content{

    max-width:850px;

}

/* Heading */

.service-banner-content h1{

    font-family:Georgia,serif;

    font-size:40px;

    color:#fff;

    font-weight:700;

    margin-bottom:28px;

    text-shadow:0 8px 18px rgba(0,0,0,.35);

}

/* Paragraph */

.service-banner-content p{

    font-family:Georgia,serif;

    color:#fff;

    font-size:18px;

    line-height:2;

    margin:0;

    text-shadow:0 3px 12px rgba(0,0,0,.25);

}

/* Responsive */

@media(max-width:991px){

.service-banner{

    min-height:320px;

}

.service-banner-overlay{

    padding:50px 0;

}

.service-banner-content h1{

    font-size:35px;

}

.service-banner-content p{

    font-size:16px;

    line-height:1.8;

}

}

@media(max-width:576px){

.service-banner{

    min-height:280px;

}

.service-banner-overlay{

    padding:45px 0;

}

.service-banner-content h1{

    font-size:28px;

}

.service-banner-content p{

    font-size:16px;

    line-height:1.7;

}

}

/*=========================================
Service Intro
=========================================*/

.service-intro{

    padding:100px 0;

    background:#fff;

    text-align:center;

    overflow:hidden;

}

/* Welcome */

.welcome-text{

    font-family:Georgia,serif;

    color:#ff0000;

    font-size:30px;

    font-weight:700;

    margin-bottom:15px;

}

/* Typing */

.typing-title{

    font-family:Georgia,serif;

    font-size:40px;

    font-weight:700;

    color:#0b6b97;

    margin-bottom:35px;

    min-height:50px;

}

.typing-title span{

    /*border-right:4px solid #0b6b97;*/

    padding-right:8px;

    animation:blink .8s infinite;

}

@keyframes blink{

50%{

border-color:transparent;

}

}

/* Paragraph */

.service-desc{

    max-width:1400px;

    margin:auto;

    font-family:Georgia,serif;

    color:#005d94;

    font-size:18px;

    line-height:2;

}

/* Responsive */

@media(max-width:991px){

.welcome-text{

font-size:25px;

}

.typing-title{

font-size:35px;

min-height:70px;

}

.service-desc{

font-size:16px;

line-height:1.8;

}

}

@media(max-width:576px){

.service-intro{

padding:60px 0;

}

.welcome-text{

font-size:22px;

}

.typing-title{

font-size:28px;

min-height:50px;

}

.service-desc{

font-size:16px;

line-height:1.8;

}

}
.astro-info-section{

    padding:60px 0;

    background:#fff;

    overflow:hidden;

}

.astro-contents h2{

    font-family:Georgia,serif;

    font-size: 40px;

    color:#0b6b97;

    font-weight:700;

    margin-bottom:15px;

}

.astro-contents span{

    display:block;

    width:90px;

    height:4px;

    background:#d9891b;

    margin-bottom:25px;

}

.astro-contents p{

    font-size:18px;

    line-height:2;

    color:#0b5f92;

    text-align:justify;

}

.astro-imgs{

    width:100%;

    max-width:450px;

    border-radius:6px;

    transition:.45s;

    box-shadow:0 15px 40px rgba(0,0,0,.12);

}

.astro-imgs:hover{

    transform:scale(1.04);

    box-shadow:0 20px 45px rgba(0,0,0,.20);

}

@media(max-width:991px){

.astro-info-section{

    padding:50px 0;

}

.astro-contents{

    text-align:center;

}

.astro-contents span{

    margin:20px auto;

}

.astro-contents h2{

    font-size:34px;

}

.astro-contents p{

    font-size:17px;

    text-align:center;

}

.astro-imgs{

    max-width:100%;

}

}
.astro-contents{

    text-align:left !important;

}

.astro-contents h2{

    text-align:left !important;

}

.astro-contents span{

    margin:0 0 25px 0 !important;

}

.astro-contents p{

    text-align:left !important;

}
@media(max-width:576px){

.astro-info-section{

    padding:45px 0;

}

.astro-contents h2{

    font-size:28px;

}

.astro-contents p{

    font-size:15px;

    line-height:1.9;

}

}

/*==================================
Floating WhatsApp
==================================*/

.floating-whatsapp{

    position:fixed;

    left:25px;

    bottom:25px;

    width:58px;

    height:58px;

    background:#25D366;

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    text-decoration:none;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

    z-index:9999;

    transition:.35s;

    animation:whatsappPulse 2s infinite;

}

.floating-whatsapp:hover{

    transform:translateY(-5px) scale(1.08);

    color:#fff;

}

@keyframes whatsappPulse{

0%{

box-shadow:0 0 0 0 rgba(37,211,102,.5);

}

70%{

box-shadow:0 0 0 15px rgba(37,211,102,0);

}

100%{

box-shadow:0 0 0 0 rgba(37,211,102,0);

}

}

/*==================================
Scroll Top Button
==================================*/

.scroll-top-btn{

    position:fixed;

    right:25px;

    bottom:25px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:#7b1e1e;

    color:#fff;

    font-size:18px;

    cursor:pointer;

    align-items:center;

    justify-content:center;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

    z-index:9999;

    transition:.35s;

}

.scroll-top-btn:hover{

    background:#2e7d32;

    transform:translateY(-5px);

}

@media(max-width:576px){

.floating-whatsapp{

width:50px;

height:50px;

font-size:26px;

left:15px;

bottom:15px;

}

.scroll-top-btn{

width:48px;

height:48px;

right:15px;

bottom:15px;

}

}