/**
* Template Name: Medicio
* Template URL: https://bootstrapmade.com/medicio-free-bootstrap-theme/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Spline Sans", sans-serif;
  --heading-font: "Spline Sans", sans-serif;
  --nav-font: "Spline Sans", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #222; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #5b2f04; /* Color for headings, subheadings and title throughout the website */
  --heading-span-color: #fe9d02; /* Color for headings, subheadings and title throughout the website */    
  --accent-color: #f4c430; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    
--background-grey-color: #f8f9fc; /* Background color for the entire website, including individual sections */    
  --contrast-color: #222222; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --btn-bgy-color: #ff9c00;      
  --background-color-btn: #934a0e;    
    
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #222222;  /* The default color of the main navmenu links */
  --nav-hover-color: #f4c430; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #222222; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #f4c430; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #fef4da;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

.accent-background {
  --background-color: #3fbbc0;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #65c9cd;  
}


/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: #9c6e4c;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: #9c6e4c;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
  color: var(--heading-span-color);
}

.cta-btn {
	font-family: var(--heading-font);
	font-weight: 400;
	font-size: 18px;
	letter-spacing: 0.5px;
	display: inline-block;
	padding: 12px 40px;
	border-radius: 4px;
	transition: 0.3s;
	margin: 10px;
	border: none;
	color: #fff;
	background: #008DD2;
    background: linear-gradient(0deg,rgba(0, 141, 210, 1) 0%, rgba(20, 34, 105, 1) 100%);
	line-height: normal;
}
.cta-btn-arrow::after {
	display: inline-block;
	margin-left: .255em;
	vertical-align: .255em;
	content: "\f231";
	border-top: none;
	border-right: none;
	border-bottom: 0;
	border-left: none;
	font-size: 14px;
	font-family: bootstrap-icons !important;
	position: relative;
	top: 4px;
}
.cta-btn:hover{
    color: rgb(240, 214, 240);
}

.content p{
    line-height: 32px;
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.header .topbar {
  background: #008DD2;
background: linear-gradient(90deg,rgba(0, 141, 210, 1) 0%, rgba(20, 34, 105, 1) 100%);
  color: #ffe8fd;
  height: 40px;
  padding: 0;
  transition: all 0.5s;
    font-size: 16px;
}
.header .topbar .span-text{
/*    padding-right: 10px;*/
}

.header .topbar a{
    color: #ffe8fd;
}


.top-bar-item .dropdown-menu .dropdown-item{
    color: #0a569c;
}


.top-bar-item a {
	color: var(--default-color);
	align-items: center;
	position: relative;
	display: flex;
}

.top-bar-item a i.bi {
	font-size: 14px;
	position: relative;
	top: 1px;
}
.top-bar-item a i {
	font-size: 16px;
}

.top-bar-item a.dropdown-toggle::after {
	display: inline-block;
	margin-left: .255em;
	vertical-align: .255em;
	content: "\f229";
	border-top: none;
	border-right:  none;
	border-bottom: 0;
	border-left:  none;
    font-size: 14px;
    font-family: bootstrap-icons !important;
    position: relative;
    top: 2px;
    
    
}


.header .branding {
  min-height: 60px;
  padding: 10px 0;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 72px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .navmenu{
    background: #008DD2;
    background: linear-gradient(0deg,rgba(0, 141, 210, 1) 0%, rgba(20, 34, 105, 1) 100%);
    border-radius: 5px;
}


.header .cta-btn{
	color: var(--surface-color);
	background: #9c6e4c;
	font-size: 16px;
	padding: 12px 20px;
	margin: 0 2px 0px 0px;
	border-radius: 5px;
	transition: 0.3s;
	display: flex;
	align-items: center;
	border: none;
}
.header .cta-btn:focus {
    padding: 0px;
    
}

}
.header .cta-btn:hover{
    background: #faf1e3;
    color: #ffffff;
    
}

.header .cta-btn a {
	padding: 0px 5px 0px 5px;
	border-right: none;
}
.header .cta-btn::after {
	display: inline-block;
	margin-left: .255em;
	vertical-align: .255em;
	content: "\f231";
	border-top: none;
	border-right: none;
	border-bottom: 0;
	border-left: none;
	font-size: 14px;
	font-family: bootstrap-icons !important;
	position: relative;
	top: 2px;
}

.header .cta-btn a:hover,
.header .cta-btn a:focus:hover {
  color: #ffffff;
  background: none;
    border-right: none;
    padding: 0px 5px 0px 5px;
}

.header .cta-btn a:focus {
  color: #ffffff;
  background: none;
   padding: 0px;
    border: none;
    padding: 0px 5px 0px 5px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

.navmenu a, .navmenu a:focus {
	color: #ffffff;
	padding: 12px 15px;
	font-size: 16px;
	font-family: var(--nav-font);
	font-weight: 400;
	text-transform: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	white-space: nowrap;
	transition: 0.3s;
	border-right: 1px solid #fff3;
}
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
/*    padding-right: 0;*/
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #f0dccd;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 6px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: #9c6e4c;
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: #f0dccd;
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: #f0dccd;
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #f0dccd;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
/*
  color: var(--default-color);
  font-size: 14px;
*/
  position: relative;
    background: url(../img/footer-bg.jpg);
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about {
	background-color: #0000004f;
}

.footer-contact {
	font-size: 16px;
	line-height: 28px;
	color: var(--surface-color);
	font-weight: 400;
	position: relative;
	padding-left: 35px;
    padding-top: 0px;
}

.footer-contact i{
    font-size: 22px;
    position: absolute;
    top: 0;
    left: 0;
}

.footer-contact .phone-email{
    font-size: 22px;
    line-height: normal;
    color: var(--surface-color);
    font-weight: 500;  
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
/*
  font-size: 14px;
  font-family: var(--heading-font);
*/
}

.footer .social-links a {
	display: flex;
	/* align-items: center; */
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 1px solid var(--surface-color);
	font-size: 14px;
	color: var(--surface-color);
	margin-right: 6px;
	transition: 0.3s;
	line-height: 32px;
}
.footer .social-links a.facebook{
    background: #3b5998
}
.footer .social-links a.twitter{
    background: #55acee
}
.footer .social-links a.instagram{
    background: #e91c5f
}
.footer .social-links a.linkedin{
    background: #0976b4
}
.footer .social-links a.whatsapp{
    background: #46c254
}


.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
	font-size: 26px;
	font-weight: 500;
	position: relative;
	padding-bottom: 12px;
	color: #da9c6d;
	font-family: "Berkshire Swash", serif;
	letter-spacing: 0.5px;
}
.footer .footer-links {
  margin-bottom: 20px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
.footer .footer-links ul li::before {
	display: inline-block;
	margin-right: 8px;
	vertical-align: .255em;
	content: "\f111";
	border-top: none;
	border-right: none;
	border-bottom: 0;
	border-left: none;
	font-size: 7px;
	font-family: "Font Awesome 6 Free";
	position: relative;
	top: 1px;
    color: var(--surface-color);
}
.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
	color: var(--surface-color);
	display: inline-block;
	line-height: 1;
	font-size: 16px;
	font-weight: 300;
}

.footer .footer-links ul a:hover {
  color: #c8916a;
}

.footer .footer-contact p {
  margin-bottom: 0;
}

.footer .copyright {
	padding: 15px 0;
}

.footer .copyright p {
  margin-bottom: 0;
  color: var(--surface-color);
    font-size: 14px;
    font-weight: 300;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

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

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 120px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 100px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 30px;
  position: relative;
}

.section-title h2 {
	font-size: 40px;
	font-weight: 400;
	margin-bottom: 12px;
	padding-bottom: 0;
	position: relative;
	/* font-family: "Philosopher", sans-serif; */
	font-family: "Berkshire Swash", serif;
	letter-spacing: 0.5px;
    color: #9c6e4c;
}
.section-title p {
    margin-bottom: 0;
    font-size: 18px;
    color: 222222;
    font-weight: 500;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
}

.hero .carousel {
  width: 100%;
  min-height: 508px;
  padding: 0;
  margin: 0;
  position: relative;
}

@media (max-height: 500px),
(max-width: 580px) {
  .hero .carousel {
    min-height: 100vh;
  }
}

.hero img {
  position: relative;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(../img/banner-bg-img.png);
    background-repeat: no-repeat;
    background-size: cover;
}

/*
.hero .container {
  background: color-mix(in srgb, var(--surface-color), transparent 10%);
  position: relative;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 50px;
  border-top: 4px solid var(--accent-color);
  z-index: 3;
}
*/

@media (max-width: 1200px) {
/*
  .hero .container {
    margin-left: 50px;
    margin-right: 50px;
  }
*/
}
.hero .banner-details{
    padding-left: 50px;
}
.hero h2 {
	margin-bottom: 20px;
	font-size: 52px;
	/* font-weight: 700; */
	line-height: 72px;
	letter-spacing: 1px;
	font-family: "Berkshire Swash", serif;
	font-weight: 400;
	color: #fff;
	text-shadow: 0 0 10px #000000ba, 0 0 15px #000000ba, 0 0 20px #000000ba;
}
.hero h2 span{
    color: #fff;
    font-family: "Berkshire Swash", serif;
	font-weight: 400;
}

.hero h3 {
    font-size: 32px;
    font-weight: 600;
    color: #fff;
}
.hero .off-text {
	font-size: 36px;
	font-weight: 700;
	color: #222222;
	padding: 5px 15px;
	background: #f0d6f0;
    border-radius: 3px;
    color: #131d5b;
    margin-left: 10px;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 30px;
  }
}

.hero .btn-get-started {
	font-weight: 500;
	font-size: 20px;
	letter-spacing: 0.5px;
	display: inline-block;
	padding: 12px 32px;
	transition: 0.3s;
	margin: 10px 0;
	border-radius: 100px;
	color: #13276c;
	background: #65ebe9;
	line-height: normal;
	border: 2px solid #65ebe9;
}
.hero .btn-get-started::after {
	/* display: inline-block; */
	margin-left: .255em;
	/* vertical-align: .255em; */
	content: "\f231";
	border-top: none;
	border-right: none;
	border-bottom: 0;
	border-left: none;
	font-size: 18px;
	font-family: bootstrap-icons !important;
	position: relative;
	top: 3px;
	line-height: normal;
}
    
.hero .btn-get-started:hover {
  background: #f0d6f0;
}

.hero .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero .carousel-control-next {
    padding-right: 15px;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 50px;
  color: var(--contrast-color);
  transition: 0.3s;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  transition: 0.3s;
  opacity: 0.5;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

.hero .carousel-control-prev:hover .carousel-control-next-icon,
.hero .carousel-control-prev:hover .carousel-control-prev-icon,
.hero .carousel-control-next:hover .carousel-control-next-icon,
.hero .carousel-control-next:hover .carousel-control-prev-icon {
  background: #65ebe9;
  color: var(--contrast-color);
}

.hero .carousel-indicators li {
  cursor: pointer;
  background: var(--contrast-color);
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 1;
  transition: 0.3s;
}

.hero .carousel-indicators li.active {
  opacity: 1;
  background: var(--accent-color);
}

.inner-slider-div {
	width: 100% !important;
	padding: 0px;
/*	background-color: transparent !important;*/
	/* min-height: 180px; */
	/* display: none; */
	height: 100% !important;
	display: flex;
}
.inner-slider-div img{
    object-fit: unset;
    position: relative;
}
/*
.hero img {
	
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	
	z-index: 1;
}
*/


/*
.inner-slider-div img{
    width: 100%;
    height: 100%;
}
*/

.banner-right-bg-1{
    background: url(../img/banner-right-bg-1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
}

.banner-right-bg-2{
    background: url(../img/banner-right-bg-2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.banner-right-bg-3{
    background: url(../img/banner-right-bg-3.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}


.banner-right-bg-4{
    background: url(../img/banner-right-bg-4.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}


.main-services-block-out{
    padding-left: 12px;
    display: flex;
    
}
.main-services-block{
    flex:0 0 auto;
    width: 100%;
/*    background-image: linear-gradient(180deg, #f4c32f, #ff9d02);*/
/*
    background: url(../img/book-sessions-bg.jpg);
    background-repeat: repeat;
    background-size: auto;
*/
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
    display: flex;
    position: relative;
}

/*
.main-services-block::after, .main-services-block::before {
	position: absolute;
	content: '';
}

.main-services-block::before {
	left: 50%;
	top: 4%;
	width: 1px;
	height: 90%;
    background-image: linear-gradient(180deg, #f4c430, #5b2f04, #ff9d02);
}
.main-services-block::after {
	left: 4%;
	top: 50%;
	width: 92%;
	height: 1px;
    background-image: linear-gradient(to right, #f4c430, #5b2f04, #ff9d02);
}
*/




.main-services-block .block-div {
/*	justify-content: center;*/
	display: flex;
/*	align-items: center;*/
	flex-wrap: wrap;
	padding: 0px;
}

.main-services-block .block-div.left-top{
    padding: 0 5px 5px 0
}
.main-services-block .block-div.right-top{
    padding: 0 0px 5px 5px
}

.main-services-block .block-div.left-bottom{
    padding: 5px 5px 0px 0
}
.main-services-block .block-div.right-bottom{
    padding: 5px 0px 0px 5px
}

.main-service-icon{
    width: 90px;
    height: 90px;
    margin: 0px auto 20px auto;
    background-color: #fbefcc;
    border: 2px solid #cf9d22;
    border-radius: 100%;
}

.main-service-icon i{
    width: 90px;
    height: 90px;
}

.main-service-icon i.chat-with-astrologer{
    background-position: 0 0;
}

.main-service-icon i.book-a-pooja{
     background-position: -91px 0;
}

.main-service-icon i.add-money-wallet{
     background-position: -184px 0;
}

.main-service-icon i.talk-to-astrologers{
    background-position: -274px 0;
}




.main-services-block .block-div .block-div-details{
    /*background: #fff;*/
    overflow: hidden;
/*    height: 100%*/
    height: 100% !important;
  width: 100% !important;
    position: relative;
}
.main-services-block .block-div .block-div-details h4{
    text-align: center;
    font-weight: 600;
    font-size: 20px;
    text-align: center;
    padding: 0;
    margin: 0 0 6px 0;
    text-transform: capitalize;
}
.main-services-block .block-div .block-div-details h4 a{
    color: #5b2f04;
}
.main-services-block .block-div .block-div-details p {
	margin: 0px;
	padding: 0px;
	font-size: 16px;
	font-weight: 300;
	color: #222222;
	text-align: center;
}
.main-services-block .block-div .block-div-details .small-btn-link {
	background: #fdbf54;
	border-radius: 3px;
	padding: 2px 5px;
	color: #5b2f04;
	font-size: 16px;
}
.main-services-b-icon {
	display: inline-block;
	background: url("../img/main-services-block-img.png") no-repeat;
}
.main-services-b-icon img{
    max-width: 100%;
    border-radius: 100%;
}



.search-astro-guru{
     position: relative;z-index: 9999;overflow: unset;
}

.features-absolute{
    margin:-200px 0 0;
  position: relative;
  transition:all .5s ease;
  z-index: 2;
}

.features-absolute .titel-div{
 background: #f4f6fa;   
    box-shadow: 0 0 3px rgba(30,41,59,.15) !important;
    display: inline-flex !important;
    padding: 12px;
    flex-direction: row !important;
    border-radius: 10px 10px 0px 0px;
    
}

.features-absolute .search-box-div{
    background: #f4f6fa;   
    box-shadow: 0 0 3px rgba(30,41,59,.15) !important;
    border-radius: 0px 10px 10px 10px;
    background-color: #fff;
}
.features-absolute .search-box-div .search-body{
   padding: 1.5rem;
}

.features-absolute .search-box-div .search-body .search-form{
    position: relative;
}
.filter-search-form{
    position: relative;
    background-color: #f8f9fc !important;
    padding: 12px 6px 12px 6px
}
.filter-search-form input, .filter-search-form select {
	background-color: #f8f9fc;
	margin: 0px;
	padding: 4px 6px;
	border: none;
    font-size: 16px;
    color: #222;
}
.filter-search-form input:focus, .filter-search-form select:focus {
    border: none;
    box-shadow: none;
}

/*--------------------------------------------------------------
# Our Astro Guru Services Section
--------------------------------------------------------------*/


.our-astro-guru{
    background: url(../img/astro-guru-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}



.our-astro-guru .swiper-astro-guru {
	padding-bottom: 40px;
}

.our-astro-guru .swiper-astro-guru .swiper-pagination .swiper-pagination-bullet{
    width: 12px;
    height: 12px;
    border: 1px solid #9c6e4c;
    background-color: #fff;
    opacity: 1;
}
.our-astro-guru .swiper-astro-guru .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background-color: #9c6e4c;
}
.our-astro-guru .guru-details-item {
	background-color: #f8f9fc;
	box-shadow: none;
	padding: 20px 3px 3px 3px;
	transition: all 0.3s ease-in-out;
	height: 100%;
	position: relative;
	z-index: 1;
	border: 1px solid #e5e5e5;
	border-radius: 5px;
}

.our-astro-guru .guru-details-item:before {
  content: "";
  position: absolute;
  background: var(--accent-color);
  inset: 100% 0 0 0;
  transition: all 0.3s;
  z-index: -1;
}

.our-astro-guru .guru-details-item .astro-guru-pic-name {
	margin-bottom: 6px;
	display: block;
	flex-wrap: wrap;
	text-align: center;
}

.our-astro-guru .guru-details-item .astro-guru-pic-name .star_rating_a {
	background: #fff;
	border: 1px solid #d3d3d3;
	color: #333;
	border-radius: 50px;
	display: inline-block;
	margin: 0px 0px 8px 0 !important;
	font-size: 12px !important;
	font-weight: 600 !important;
	width: 64px;
	text-align: center;
	line-height: 20px;
}
.our-astro-guru .guru-details-item .astro-guru-pic-name .star_rating_a .star_astrologer {
    background: url(../img/star_astrologer_yellow.png) no-repeat;
    width: 9px;
    height: 9px;
    display: inline-block;
    position: relative;
    top: 0px;
    margin-left: 3px;
}
.our-astro-guru .guru-details-item .astro-guru-pic-name h3 {
	font-size: 18px;
	font-weight: 500;
	margin: 0 0 6px 0;
	color: #151515;
}

.our-astro-guru .guru-details-item .astro-guru-pic-name p.designation {
	font-size: 14px;
	font-weight: 400;
	color: #151515;
	margin: 0 0 0 0px;
	line-height: normal;
}
.our-astro-guru .guru-details-item .astro-guru-pic-name .pic-img-div{
    width: 150px;
    height: 150px;
	border-radius: 100%;
	margin: 0px auto 0px auto;
	position: relative;
	z-index: 2;
    padding: 3px;
    background: linear-gradient(to left, #a17452, #e5bd9f);	    
}

.our-astro-guru .guru-details-item .astro-guru-pic-name .pic-img-div .status{
    width: 18px;
    height: 18px;
    position: absolute;
    right: 0px;
    top: 20%;
    border-radius: 100%;
    border: 2px solid #fff;
}

.our-astro-guru .guru-details-item .astro-guru-pic-name .pic-img-div .astro-guru-img {
	max-width: 100%;
    border-radius: 100%;
/*
    border: 10px solid;
  border-image-slice: 1;
  border-width: 5px;
    border-image-source: linear-gradient(to left, #743ad5, #d53a9d);    
*/        
}

.our-astro-guru .guru-details-item .astro-guru-details-div{
    background:  var(--background-color);
    border-radius: 0px 0px 5px 5px;
    padding: 15px 6px 10px 6px;
    
	font-size: 14px;
	font-weight: 400;
	color: #151515;
    text-align: center;
    line-height: normal;

}
.our-astro-guru .guru-details-item .astro-guru-details-div .lg-ex-row {
	line-height: normal;
	align-items: center;
	display: flex;
    padding: 0 3px;
}
.sprite-chat-languages {
    background-position: -8px -18px !important;
}
.sprite-chat-experience {
    background-position: -11px -47px !important;
}
.our-astro-guru .guru-details-item .astro-guru-details-div .lg-ex-row .icon{
    width: 19px;
    height: 19px;
    margin-right: 4px;
    position: relative;
}

.sprite-chat-astrologer{
    display: inline-block;
    background: url(../img/astrologer_chat_sprite.png) no-repeat;
}

.our-astro-guru .guru-details-item .astro-guru-details-div .price-txt {
	font-size: 20px;
}
.our-astro-guru .guru-details-item .astro-guru-details-div .call-chat-status-astro{
    text-align: center;
    display: flex;
    justify-content: center;
}

.our-astro-guru .guru-details-item .astro-guru-details-div .call-chat-status-astro .btn {
	padding: 5px 15px;
	margin: 0px 4px;
	border-radius: 5px;
	font-size: 16px;
	color: #ffffff;
	display: flex;
	line-height: normal;
}

.our-astro-guru .guru-details-item .astro-guru-details-div .call-chat-status-astro .btn .call-chat-icon{
    width: 20px;
    height: 20px;
    margin: 0 8px 0px 0px;
    padding: 0px;
}

.our-astro-guru .guru-details-item .astro-guru-details-div .call-chat-status-astro .btn .call-chat-icon.call-icon {
	background-position: -144px -20px !important;
}
.our-astro-guru .guru-details-item .astro-guru-details-div .call-chat-status-astro .btn .call-chat-icon.chat-icon{
     background-position: -81px -20px !important;
    
}


.our-astro-guru .guru-details-item .icon i {
  color: var(--accent-color);
  font-size: 36px;
  transition: ease-in-out 0.3s;
}

.our-astro-guru .guru-details-item h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.our-astro-guru .guru-details-item h4 a {
  color: var(--heading-color);
  transition: ease-in-out 0.3s;
}

.our-astro-guru .guru-details-item p {
	font-size: 14px;
	margin-bottom: 8px;
	transition: ease-in-out 0.3s;
	line-height: normal;
	display: flex;
	justify-content: center;
}







.our-astro-guru .guru-details-item:hover h4 a,
.our-astro-guru .guru-details-item:hover .icon i,
.our-astro-guru .guru-details-item:hover p {
  color: var(--contrast-color);
}

.our-astro-guru .guru-details-item:hover:before {
  background: #d0a584;
  inset: 0;
  border-radius: 0px;
}




/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all 0.3s ease-in-out;
  height: 100%;
  position: relative;
  z-index: 1;
}

.featured-services .service-item:before {
  content: "";
  position: absolute;
  background: var(--accent-color);
  inset: 100% 0 0 0;
  transition: all 0.3s;
  z-index: -1;
}

.featured-services .service-item .icon {
  margin-bottom: 10px;
}

.featured-services .service-item .icon i {
  color: var(--accent-color);
  font-size: 36px;
  transition: ease-in-out 0.3s;
}

.featured-services .service-item h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.featured-services .service-item h4 a {
  color: var(--heading-color);
  transition: ease-in-out 0.3s;
}

.featured-services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  transition: ease-in-out 0.3s;
}

.featured-services .service-item:hover h4 a,
.featured-services .service-item:hover .icon i,
.featured-services .service-item:hover p {
  color: var(--contrast-color);
}

.featured-services .service-item:hover:before {
  background: var(--accent-color);
  inset: 0;
  border-radius: 0px;
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 4px;
  transition: 0.3s;
  margin: 10px;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
  background: var(--contrast-color);
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/


.about{
    background: url(../img/about-bg.jpg);
    height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
}

.about-img-div img{
    max-width: 100%;
}

.about .content h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 10px 0 0 0;
/*  display: flex;*/
}

.about .content ul i {
	color: #5b2f04;
	margin-right: 0.5rem;
	line-height: normal;
	font-size: 1.25rem;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

.about strong{
    font-weight: 500;
}
/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/

.stats{
    background: #172b4d
}

.stats .stats-item {
/*
  background-image: linear-gradient(180deg, #f4c32f, #ff9d02);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
*/
  padding: 20px 10px;
  border-radius: 10px;
    border: 1px solid #fff;
}

.stats .stats-item i {
	width: 84px;
	height: 84px;
	background: #ffffff;
	border: 1px solid #da9c6d;
	margin-right: 20px;
	border-radius: 100px;
}

.stats .stats-item i img{
    border-radius: 100px;
    
}

.stats .stats-item span {
	color: #da9c6d;
	font-size: 36px;
	display: block;
	font-weight: 600;
	line-height: normal;
}
.stats .stats-item span::after{
    content: "+";
    font-weight: 600;
    font-size: 42px;
    padding-left: 2px;
}
.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 18px;
    font-weight: 500;
    color: #ffffff;
}

.call-chat-icon {
	width: 20px;
	height: 20px;
	padding: 0px;
}

.stats .cta-btn{
    text-transform: uppercase;
    line-height: normal;
     display: inline-flex;
    margin: 0;
    background: #9c6e4c;
}
.stats .cta-btn .chat-icon{
    margin-left: 5px
}

.call-chat-icon.chat-icon {
	background-position: -81px -20px !important;
}

/*--------------------------------------------------------------
# Kundli Section
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-image {
  position: relative;
  min-height: 400px;
}

.features .features-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.features h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.features h3:after {
  content: "";
  background: var(--accent-color);
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  left: 0;
  bottom: 0;
}

.features .icon-box {
  margin-top: 50px;
}

.features .icon-box i {
  color: var(--accent-color);
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  font-size: 28px;
  width: 56px;
  height: 56px;
  border-radius: 4px;
  line-height: 0;
  box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.features .icon-box:hover i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.features .icon-box h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.features .icon-box h4 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.features .icon-box h4 a:hover {
  color: var(--accent-color);
}

.features .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/

.services.service-bg {
  background: url(../img/signs-bg-n.jpg);
  height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.services .service-item {
	padding: 10px;
	transition: all ease-in-out 0.3s;
	height: 100%;
	background: var(--background-color);
	border-radius: 5px;
	/* text-align: center; */
	display: flex;
	position: relative;
	box-shadow: #da9b6d 5px 5px;
	align-items: center;
}

.services .service-item::after{
    
}

.services .service-item .icon {    
    color: var(--accent-color);
	background-color: var(--surface-color);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 10px 0 auto;
	width: 90px;
	height: 90px;
	line-height: 0;
    flex-shrink: 0 !important;
}

.services .service-item h3 {
  font-weight: 500;
  margin-bottom: 8px;
  padding-bottom: 0px;
  font-size: 16px;
  transition: 0.3s;
  position: relative;
    color: #5b2f04;
}
.services .service-item a:hover h3{
    color: #0e4a8e;
} 
.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover .icon {
  box-shadow: 0px 0 40px rgba(0, 0, 0, 0.1);
}

.services .service-item:hover h3 {
 color: #0e4a8e;
}

/*--------------------------------------------------------------
# Horoscope
--------------------------------------------------------------*/
.horoscope-section{
    background: url(../img/horoscope-section-bg.jpg);
    background-repeat: repeat;
    background-size: auto;
  background-repeat: no-repeat;
  background-size: cover;
    background-position: right bottom;
}
.horoscope-section.tabs .nav-tabs{
    margin-left: -5px;
    margin-right: -5px;
}

.horoscope-section.tabs .nav-item.col {
	padding-left: 5px;
	padding-right: 5px;
}
.horoscope-section.tabs .nav-link {
	border: 0;
	padding: 5px;
	transition: 0.3s;
	color: var(--default-color);
	border-radius: 5px;
	border: none;
	font-weight: 600;
	font-size: 15px;
    background: #008DD2;
    background: linear-gradient(0deg,rgba(0, 141, 210, 1) 0%, rgba(20, 34, 105, 1) 100%);
    
}
.horoscope-section.tabs .nav-link img{
    max-width: 100%;
}
.horoscope-section.tabs .nav-link.active {
    border-color: none;
	background: linear-gradient(0deg,rgba(20, 34, 105, 1) 0%, rgba(0, 141, 210, 1) 100%);
}

.horoscope-section.tabs .tab-content .tab-pane .date-text{
    line-height: normal;
    color: #222222;
    font-weight: 500;
}

.horoscope-section.tabs .tab-content .tab-pane select {
	color: #14266b;
	background-color: #d0fbfa;
	border: none;
	border-radius: 5px;
	box-shadow: none;
	font-size: 16px;
	padding: 10px !important;
}

.horoscope-section.tabs .tab-content .tab-pane h3 {
	font-weight: 400;
	font-family: "Berkshire Swash", serif;
	color: #9c6e4c;
	margin-bottom: 12px;
}
.horoscope-section.tabs .tab-content .details p{
    line-height: 32px;
}



/*--------------------------------------------------------------
# Kundli Section
--------------------------------------------------------------*/

.kundli .kundli-item {
	background-color: var(--background-grey-color);
	border: 1px solid #e5e5e5;
	box-shadow: none;
	padding: 10px;
	/* text-align: center; */
	border-radius: 5px;
	position: relative;
	overflow: hidden;
	height: 100%;
}
.kundli .kundli-item h3 {
	font-weight: 500;
	margin: -10px -10px 10px -10px;
	padding: 15px 15px;
	font-size: 22px;
	/* font-weight: 500; */
	/* background: #008DD2; */
	background: linear-gradient(90deg,rgba(0, 141, 210, 1) 0%, rgba(20, 34, 105, 1) 100%);
	color: #ffffff;
	line-height: normal;
}

.appointment .php-email-form {
  width: 100%;
}

.padding-r-5px {
	padding-right: 5px;
}

.appointment .php-email-form .form-group {
  padding-bottom: 8px;
}
.appointment .php-email-form .text-form-div {
	color: #172b4d;
	background-color: var(--surface-color);
	border: 1px solid #cdced1;
	border-radius: 3px;
	box-shadow: none;
	font-size: 16px;
	padding: 10px !important;
	line-height: normal;
    font-weight: 400;
}
.appointment .php-email-form .text-form-div strong{
    font-weight: 600;
}
.appointment .php-email-form .text-form-div.panchang{
    line-height: 32px;
} 

.appointment .php-email-form input,
.appointment .php-email-form textarea,
.appointment .php-email-form select {
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 3px;
  box-shadow: none;
  font-size: 14px;
  padding: 10px !important;
    line-height: normal;
}

.appointment .php-email-form input:focus,
.appointment .php-email-form textarea:focus,
.appointment .php-email-form select:focus {
  border-color: #0b5394;
}

.appointment .php-email-form input::placeholder,
.appointment .php-email-form textarea::placeholder,
.appointment .php-email-form select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.appointment .php-email-form input,
.appointment .php-email-form select {
  height: 38px;
}

.appointment .php-email-form textarea {
  padding: 7px 12px;
}

.appointment .php-email-form button[type=submit] {
  background: #9c6e4c;
  border: 0;
  padding: 8px 20px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.appointment .php-email-form button[type=submit]:hover {
  background: #0b5096;
}


/*--------------------------------------------------------------
# Articles blog Section
--------------------------------------------------------------*/
.articles-blog-s{
    
}

.articles-blog-s .titel-tag-div{
    margin: -10px -10px 10px -10px;
	padding: 15px 15px;
    background: linear-gradient(90deg,rgba(0, 141, 210, 1) 0%, rgba(20, 34, 105, 1) 100%);
    align-items: center;
    justify-content: space-between;
    display: flex;
    
}

.articles-blog-s .titel-tag-div h3 {
	/* font-weight: 500; */
	font-size: 22px;
	font-weight: 500;
	color: #fff;
	line-height: normal;
	padding: 0;
	margin: 0;
	background-image: none;
}
.articles-blog-s .titel-tag-div a.view-all {
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
}


.festival-calendar ul{
    margin: 0px;
    padding: 0px;
}

.festival-calendar ul li{
    margin: 0px;
    padding: 5px 0px;
    list-style: none;
    align-items: center;
    display: flex;
}

.festival-calendar ul li .festival-date {
	border-radius: .3rem;
	color: #222;
	text-align: center;
    font-size: 16px;
	font-weight: 600;
	padding-right: .5rem;
	padding-left: .5rem;
	margin-right: 1rem;
	position: relative;
	flex-shrink: 0;
	min-height: 70px;
	min-width: 80px;
    border: 1px solid #ac957a;
    background-image: linear-gradient(180deg, #edceb7, #fef9ed);
    line-height: normal;
    align-content: center;
}
.festival-calendar ul li .festival-date .date{
    display: block;
    font-size: 28px;
    text-align: center;
    list-style: none;
}

.festival-calendar ul li .twolines {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 15px;
     color: var(--default-color);
    list-style: 24px;
}

.articles-blog-s .scrollspy-example {
	position: relative;
	height: 340px;
	margin-top: .5rem;
	overflow: auto;
}

.recent-articles-card .articles {
    padding-top: .5rem;
    padding-bottom: .5rem;
    align-items: center;
    width: 100%;
    text-decoration: none;
    display: flex;
    border-bottom: 1px solid #DDD;
}
.recent-articles-card .articles .articles-content {
    padding-left: 1rem;
    width: 100%;
}
.recent-articles-card .articles .articles-content p{
     font-size: 15px;
     color: var(--default-color);
    line-height: 24px;
    padding: 0px;
    margin: 0px 0 3px 0;
}

.recent-articles-card .articles .articles-content .date-show{
    font-size: 14px;
     color: #656565;
    line-height: normal;
    padding: 0px;
    margin: 0px 0 0px 0;
}

.recent-articles-card .articles img {
    border-radius: 0;
    flex-shrink: 0;
    height: auto;
    width: 110px;
    -gs-aspect-ratio: calc(2 / 3 * 100%);
    position: relative;
}
.articles-blog-s .scrollspy-example {
	position: relative;
	height: 340px;
	margin-top: .5rem;
	overflow: auto;
}

/*--------------------------------------------------------------
# Tabs Section
--------------------------------------------------------------*/
.tabs {
  overflow: hidden;
}

.tabs .nav-tabs {
  border: 0;
}

.tabs .nav-link {
  border: 0;
  padding: 12px 15px 12px 0;
  transition: 0.3s;
  color: var(--default-color);
  border-radius: 0;
  border-right: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  font-weight: 600;
  font-size: 15px;
}

.tabs .nav-link:hover {
  color: var(--accent-color);
}

.tabs .nav-link.active {
  color: var(--accent-color);
  border-color: var(--accent-color);
  background-color: var(--background-color);
}

.tabs .tab-pane.active {
  animation: fadeIn 0.5s ease-out;
}

.tabs .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
}

.tabs .details p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.tabs .details p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .tabs .nav-link {
    border: 0;
    padding: 15px;
  }

  .tabs .nav-link.active {
    color: var(--accent-color);
    background: var(--accent-color);
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid var(--background-color);
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--background-color);
  opacity: 1;
  border: 1px solid var(--accent-color);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# book-sessions Section
--------------------------------------------------------------*/

.book-sessions{
    background: url(../img/book-sessions-bg.jpg);
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.book-sessions .col{
    margin-top: 45px;   
}
.book-sessions .book_session_box {
	background-color: #172b4d;
	border-radius: 5px;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
	height: 100%;
	position: relative;
	padding: 56px 10px 10px 10px;
	text-align: center;
	font-size: 20px;
	font-weight: 500;
	border: 1px solid #9c6e4c;
	color: #fff;
}
.book_session_box .icon-div {
	width: 90px;
	height: 90px;
	position: absolute;
	top: -45px;
	left: 30%;
	background: #ffffff;
	border: 2px solid #9c6e4c;
	border-radius: 100px;
}

.book_session_box .icon-div img{
    max-width: 100%;
    border-radius: 100%;
}

.book-sessions .book_session_box .name{
    
}

.book-sessions .book_session_box .btn{
    padding: 0px;
}

.book-sessions .book_session_box .btn a {
	padding: 8px 24px;
	transition: 0.3s;
	color: #fff;
	border-radius: 50px;
	border: 1px solid #ac957a;
	font-weight: 600;
	font-size: 18px;
	background-color: #9c6e4c;
	font-weight: 400;
	line-height: normal;
	margin-top: 10px;
	display: inline-block;
	letter-spacing: 0.5px;
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

.gallery .swiper-wrapper {
  height: auto;
}

.gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--background-color);
  border: 1px solid var(--accent-color);
  width: 12px;
  height: 12px;
  opacity: 1;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.gallery .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 40px 0;
  }

  .gallery .swiper-slide-active {
    background: var(--background-color);
    border: 6px solid var(--accent-color);
    padding: 4px;
    z-index: 1;
    transform: scale(1.2);
    transition: none;
  }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing .pricing-item h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background: color-mix(in srgb, var(--default-color), transparent 95%);
}

.pricing .pricing-item h4 {
  font-size: 36px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.pricing .pricing-item h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .pricing-item h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 16px;
  font-weight: 300;
}

.pricing .pricing-item ul {
  padding: 15px 0;
  list-style: none;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .pricing-item ul li {
  padding-bottom: 16px;
}

.pricing .pricing-item ul i {
  color: var(--accent-color);
  font-size: 18px;
  padding-right: 4px;
}

.pricing .pricing-item ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-decoration: line-through;
}

.pricing .btn-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  margin: 0 -20px -20px -20px;
  padding: 20px 15px;
  text-align: center;
}

.pricing .btn-buy {
  background: var(--accent-color);
  color: var(--contrast-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--heading-font);
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.pricing .featured h3 {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .advanced {
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  border-color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 24px 0 30px 0;
}

.contact .info-item i {
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.contact .info-item h3 {
  font-size: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 30px;
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}





 .video-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    background: white;
    padding: 12px;
}

        
        .video-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        }
        
        .video-thumbnail {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .video-card:hover .video-thumbnail {
            transform: scale(1.05);
        }
        
.video-card iframe{
    border-radius: 15px 15px 0px 0px;
    height: 260px
}



        .play-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }
        
        .video-card:hover .play-overlay {
            background: rgba(255, 255, 255, 1);
            transform: translate(-50%, -50%) scale(1.1);
        }
        
        .play-icon {
            color: #dc3545;
            font-size: 24px;
            margin-left: 3px;
        }
        
 .video-info {
    padding: 5px 0;
    display: inline-block;
    width: 100%;
    height: 50px;
}
        
  .video-title {
    font-weight: 500;
    color: #193f64;
    margin: 0px 0;
    font-size: 16px;
    line-height: 28px;
    padding: 0;
}
        
        .video-description {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.4;
        }
        
        .main-title {
            color: white;
            text-align: center;
            margin-bottom: 3rem;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .modal-content {
            border: none;
            border-radius: 15px;
            overflow: hidden;
        }
        
        .modal-header {
            background: linear-gradient(90deg, rgba(0, 141, 210, 1) 0%, rgba(20, 34, 105, 1) 100%);
            color: white;
            border: none;
        }
        
        .modal-body {
            padding: 0;
        }
        
        .video-container {
            position: relative;
            width: 100%;
            height: 0;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
        }
        
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }
        
        .btn-close {
            filter: invert(1);
        }
        
        @media (max-width: 768px) {
            .video-thumbnail {
                height: 150px;
            }
            
            .video-info {
                padding: 1rem;
            }
        }






.pxp-container {
	/* width: 100%; */
	padding-right: .75rem;
	padding-left: .75rem;
	margin-right: auto;
	margin-left: auto;
}

@media (min-width: 1200px) {
    .pxp-container {
        max-width: 1140px;
    }
}
@media (min-width: 1400px) {
    .pxp-container {
        max-width: 1320px;
    }
}
@media (min-width: 1680px) {
    .pxp-container {
        max-width: 1600px;
    }
}


#breadcrumb{
    background: #F8F8F8;
    padding: 10px 0px;
}

.obsah-path{
    font-size: 14px;
    font-weight: 400;
    color: #222222e5;
}

.obsah-path i{
    font-size: 12px;
    margin: 0 5px;
}

.inner-page-banner{
    padding: 10px;
}
.inner-page-banner img{
    border: 1px solid #ffffff6b;
}



/*harini */


.astrologer-form {
	background-color: var(--background-grey-color);
	border: 1px solid #e5e5e5;
	box-shadow: none;
	padding: 20px 15px;
	/* text-align: center; */
	border-radius: 5px;
	position: relative;
	overflow: hidden;
	height: 100%;
}
.astrologer-form .form-group {
	padding-bottom: 8px;
}
.astrologer-form .col-form-label {	
	text-align: left;
}






.radio-group {
	display: flex;
	/* flex-direction: column; */
	gap: 25px;
}
        
  .radio-option {
	display: flex;
	align-items: center;
	cursor: pointer;
	transition: all 0.3s ease;
}
        
        .radio-option:hover {
            border-color: #667eea;
            background: #f8f9ff;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
        }
        
        .radio-option input[type="radio"] {
            margin-right: 12px;
            transform: scale(1.2);
            accent-color: #667eea;
        }
        
        .radio-option label {
            margin: 0;
            cursor: pointer;
            font-weight: 500;
            font-size: 16px;
        }
        
        .radio-option input[type="radio"]:checked + label {
            color: #667eea;
            font-weight: 600;
        }
        
        .radio-option:has(input[type="radio"]:checked) {
            border-color: #667eea;
            background: #f8f9ff;
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
        }














.multiselect-container {
            position: relative;
            width: 100%;
        }
        
        .multiselect-header {
/*
            background: #fff;
            border: 2px solid #e1e5e9;
            border-radius: 12px;
            padding: 12px 16px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            min-height: 50px;
*/
            color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 3px;
  box-shadow: none;
  font-size: 14px;
  padding: 10px !important;
  line-height: normal;border: var(--bs-border-width) solid var(--bs-border-color); display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .multiselect-header:hover {
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }
        
        .multiselect-header.active {
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }
        
        .selected-text {
            color: #333;
            flex: 1;
            margin-right: 10px;
        }
        
      
        
        .arrow {
            width: 0;
            height: 0;
            border-left: 6px solid transparent;
            border-right: 6px solid transparent;
            border-top: 8px solid #667eea;
            transition: transform 0.3s ease;
        }
        
        .arrow.up {
            transform: rotate(180deg);
        }
        
        .multiselect-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: #fff;
            border: 2px solid #667eea;
            border-top: none;
            border-radius: 0 0 12px 12px;
            max-height: 300px;
            overflow-y: auto;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
        }
        
        .multiselect-dropdown.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .option {
            padding: 12px 16px;
            cursor: pointer;
            transition: background-color 0.2s ease;
            display: flex;
            align-items: center;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .option:last-child {
            border-bottom: none;
        }
        
        .option:hover {
            background-color: #f8f9ff;
        }
        
        .option.selected {
            background-color: rgba(102, 126, 234, 0.1);
        }
        
        .checkbox {
            appearance: none;
            width: 18px;
            height: 18px;
            border: 2px solid #ddd;
            border-radius: 4px;
            margin-right: 12px;
            position: relative;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        
        .checkbox:checked {
            background-color: #667eea;
            border-color: #667eea;
        }
        
        .checkbox:checked::after {
            content: '✓';
            position: absolute;
            color: white;
            font-size: 12px;
            font-weight: bold;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
        
        .option-label {
            flex: 1;
            font-size: 14px;
            color: #333;
        }
        
        .clear-all {
            background: none;
            border: none;
            color: #667eea;
            cursor: pointer;
            font-size: 12px;
            text-decoration: underline;
            padding: 8px 16px;
            text-align: center;
            width: 100%;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .clear-all:hover {
            background-color: #f8f9ff;
        }
        
        .selected-count {
            background: #667eea;
            color: white;
            border-radius: 12px;
            padding: 2px 8px;
            font-size: 12px;
            margin-left: 8px;
        }
        
        /* Custom scrollbar */
        .multiselect-dropdown::-webkit-scrollbar {
            width: 6px;
        }
        
        .multiselect-dropdown::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 3px;
        }
        
        .multiselect-dropdown::-webkit-scrollbar-thumb {
            background: #667eea;
            border-radius: 3px;
        }
        
        .multiselect-dropdown::-webkit-scrollbar-thumb:hover {
            background: #5a6fd8;
        }


.captcha-code-full {
	width: auto;
	height: auto;
	margin: 0;
	padding: 0;
	text-align: left;
}

.captcha-code-full .captcha-code-img {
	width: auto;
	height: auto;
	margin: 0;
	padding: 5px 30px;
    border:1px solid #d6d6d6;
	background-color: #fff;
	display: inline-block;border-radius: 2px;
}
.captcha-code-full .captcha-code-input {
	width: 280px;
	height: auto;
	margin: 0;
	padding: 0;
	display: inline-block;
}




/*Login-box-css*/


 .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
            backdrop-filter: blur(5px);
        }

        .popup-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .popup-box {
	background: linear-gradient(145deg, #14246a, #0c4f91);
	padding: 40px;
	border-radius: 20px;
	width: 90%;
	max-width: 580px;
	transform: scale(0.7) translateY(-50px);
	transition: all 0.3s ease;
	box-shadow: 0 20px 60px rgba(0,0,0,0.3);
	position: relative;
	overflow: hidden;
	border: 2px solid #c8d3ff;
}

.popup-box.sign-up {
	width: 90%;
	max-width: 950px;
}


.popup-box .section-title{
            
}

.popup-box .section-title h2 {
	font-size: 40px;
	font-weight: 400;
	margin-bottom: 15px;
	padding-bottom: 0;
	position: relative;
	/* font-family: "Philosopher", sans-serif; */
	font-family: "Berkshire Swash", serif;
	letter-spacing: 0.5px;
	color: #b38869;
}
.popup-box .section-title p {
	margin-bottom: 0;
	font-size: 20px;
	color: #fff;
	font-weight: 400;
}


/*
        .popup-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #667eea, #764ba2);
        }
*/

        .popup-overlay.active .popup-box {
            transform: scale(1) translateY(0);
        }

        .popup-box .close-btn {
                position: absolute;
                top: 15px;
                right: 20px;
                background: none;
                border: none;
                font-size: 60px;
                cursor: pointer;
                color: #fff;
                transition: color 0.3s ease;
                width: 42px;
                height: 42px;
                line-height: 30px;
                padding: 3px;
                box-sizing: border-box;
                border-radius: 100px;
                background: #0d4b8d;
                border: 1px solid #798cb3;
            }

        .popup-box .close-btn:hover {
            color: #333;
        }

        .popup-title {
            text-align: center;
            margin-bottom: 30px;
            color: #333;
            font-size: 1.8rem;
            font-weight: 600;
        }

        .popup-box .form-group {
            margin-bottom: 20px;
            position: relative;
        }

        .popup-box .form-group input, .popup-box .form-group textarea {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #798cb3;
	border-radius: 5px;
	font-size: 1rem;
	transition: all 0.3s ease;
	background: #0d4b8d;
	color: #fff;
}

        .popup-box .form-group input:focus, .popup-box .form-group textarea:focus {
            outline: none;
            border-color: #798cb3;
            background: #0d4b8d;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        .popup-box .form-group label {
            position: absolute;
            top: 15px;
            left: 15px;
            color: #999;
            transition: all 0.3s ease;
            pointer-events: none;
        }

        .popup-box .form-group input:focus + label,
        .popup-box .form-group input:not(:placeholder-shown) + label,

        .popup-box .form-group textarea:focus + label,
        .popup-box .form-group textarea:not(:placeholder-shown) + label
{
            transform: translateY(-25px) scale(0.8);
            color: #0d4b8d;
            background: white;
            padding: 0 5px;
        }

/*
.popup-box .form-group input:focus + label, .popup-box .form-group input:not(:placeholder-shown) + label {
	transform: translateY(-25px) scale(0.8);
	color: #fff;
	background: #0d4b8d;
	padding: 7px 10px;
	border: 1px solid #798cb3;
	border-bottom: none;
	border-radius: 5px 5px 0px 0px;
}
*/

/*
        .remember-forgot {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            font-size: 0.9rem;
        }

        .remember-me {
            display: flex;
            align-items: center;
            gap: 8px;
        }
*/


.popup-box .remember-forgot {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            font-size: 16px;
        }

        .popup-box .remember-me {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .popup-box .remember-me input[type="checkbox"] {
	width: 22px;
	height: 22px;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	border: 2px solid #e1e1e1;
	border-radius: 4px;
	background-color: #f8f9fa;
	cursor: pointer;
	position: relative;
	transition: all 0.3s ease;
	/* color: #fff; */
}

        .popup-box .remember-me input[type="checkbox"]:hover {
            border-color: #667eea;
            background-color: #f0f2ff;
        }

        .popup-box .remember-me input[type="checkbox"]:checked {
	background: linear-gradient(135deg, #9c6e4c 0%, #6a4930 100%);
	border-color: #9c6e4c;
}

        .popup-box .remember-me input[type="checkbox"]:checked::after {
            content: '✓';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 12px;
            font-weight: bold;
        }

        .popup-box .remember-me label {
	cursor: pointer;
	color: #fff;
}



       .forgot-password {
	color: #d6ae90;
	text-decoration: none;
	transition: color 0.3s ease;
}

        .forgot-password:hover {
            color: #fff;
        }

        .submit-btn {
            width: 100%;
            background: linear-gradient(135deg, #9c6e4c 0%, #9c6e4c 100%);
            color: white;
            border: none;
            padding: 15px;
            border-radius: 10px;
            font-size: 22px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 400;
            letter-spacing: 0.5px;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
        }

        
        .signup-link {
	text-align: center;
	margin-top: 20px;
	color: #fff;
	font-size: 18px;
	font-weight: 400;
	letter-spacing: 0.5px;
}

        .signup-link a {
            color: #b38869;
            text-decoration: none;
            font-weight: 400;
        }

        .signup-link a:hover {
            color: #66ebea;
        }



.select-gender{
    position: relative;
    display: flex;
}
/*
.select-Gender label{
    position: relative;
    top: inherit;
    left: inherit;
}
*/
.select-gender .radio-group .radio-item label{
    
}

.select-gender .titel-text {
	padding: 12px 10px 12px 0px;
	color: #fff;
}

.radio-group {
            display: flex;
            gap: 20px;
            margin-top: 0;
        }

        .radio-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .popup-box .form-group input[type="radio"] {
	width: 18px;
	height: 18px;
	accent-color: #d4af37;
}

.select-gender .radio-group .radio-item label {
	/* margin: 0; */
	/* color: #ccc; */
	/* font-size: 1rem; */
	cursor: pointer;
	position: relative;
	margin: 0px;
	/* padding: 0px; */
	background: transparent !important;
	color: #fff !important;
	font-size: var(--bs-body-font-size) !important;
	top: unset;
	left: unset;
	padding: 0px !important;
	transform: unset !important;
}


.time-slots-box{
    
}

.time-slots-box .modal-title {
	font-size: 26px;
	font-weight: 400;
	margin-bottom: 0;
	padding-bottom: 0;
	position: relative;
	/* font-family: "Philosopher", sans-serif; */
	font-family: "Berkshire Swash", serif;
	letter-spacing: 0.5px;
	color: #fff;
}

.modal-header .close {
	position: absolute;
	top: 15px;
	right: 20px;
	background: none;
	border: none;
	font-size: 60px;
	cursor: pointer;
	color: #fff;
	transition: color 0.3s ease;
	width: 42px;
	height: 42px;
	line-height: 30px;
	padding: 3px;
	box-sizing: border-box;
	border-radius: 100px;
	background: #0d4b8d;
	border: 1px solid #798cb3;
}
.modal-footer{
    
}

.modal-footer .btn{
    margin: 0 auto;
    background: #9c6e4c;
      border: 0;
      padding: 8px 20px;
      color: #fff;
      transition: 0.4s;
      border-radius: 4px;
}

.time-slot {
	/* width: 70px; */
	margin: 8px 10px;
	/* padding: 8px; */
	/* border: 1px solid #ccc; */
	/* border-radius: 6px; */
	/* cursor: pointer; */
	/* text-align: center; */
	background: white;
	border-radius: 12px;
	padding: 12px 20px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	/* cursor: pointer; */
	transition: all 0.3s ease;
	border-left: 4px solid #3498db;
	border-left-color: rgb(52, 152, 219);
	min-width: 108px;
}

   .time-slot.selected {
	background: #3498db;
	color: white;
	border-left-color: #2980b9;
}
      
/*
      .time-slot.selected {
	background: #3498db;
	color: white;
	border-left-color: #2980b9;
}
*/

    .time-slot.disabled {
      background-color: #fff;
      color: var(--bs-modal-color);
      pointer-events: none;
      border-left-color: #dc3545;
      opacity: 0.6;
    }

   .selected-range {
	margin-top: 10px;
	text-align: left;
    margin-bottom : 0px;
}
.range-pill {
	background-color: #e0f0ff;
	padding: 6px 33px 6px 15px;
	border-radius: 100px;
	margin: 4px;
	display: inline-block;
	font-size: 13px;
	position: relative;
}
      .remove-range {
	cursor: pointer;
  margin-left: 8px;
  color: red;
  font-size: 34px;
  position: absolute;
  top: 5px;
  line-height: 18px;
  width: 18px;
  height: 18px;
  right: 10px;
}



/* harini */

.profile-card {
	background: linear-gradient(0deg, rgba(242, 246, 249, 1) 0%,rgba(16, 89, 152, 1) 100%);	
	padding: 25px;
}

.profile-card .pic-img-div{}

.profile-card .pic-img-div {
	/* width: 150px; */
	/* height: 150px; */
	border-radius: 10%;
	margin: 0px auto 0px auto;
	position: relative;
	z-index: 2;
	padding: 0px;
	background: linear-gradient(to left, #a17452, #e5bd9f);
	aspect-ratio: 1;
}
.profile-card .pic-img-div .status {
	width: 18px;
	height: 18px;
	position: absolute;
	right: 0px;
	top: 0%;
	border-radius: 100%;
	border: 1px solid #fff;
	z-index: 1;
}
.profile-card .pic-img-div .astro-guru-img {
	max-width: 100%;
	border-radius: 10%;
    z-index: 0;
	/* border: 10px solid; */
	/* border-image-slice: 1; */
	/* border-width: 5px; */
	/* border-image-source: linear-gradient(to left, #743ad5, #d53a9d); */
}
.rating-badge {
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	background: white;
	padding: 2px 12px;
	border-radius: 20px;
	box-shadow: 0 4px 10px rgba(0,0,0,0.1);
	font-weight: bold;
	color: #333;border: 1px solid #d3d3d3;
}
.rating-badge .fa-star {
    font-size: 14px;
	display: inline-block;
	position: relative;
	top: 0px;
	margin-left: 3px;color: #ffd300
}
.star-rating{font-size: 14px;
	display: inline-block;
	position: relative;
	top: 0px;
	margin-left: 3px;color: #ffd300}

.profile-title {
	font-size: 1.8rem;
	font-weight: bold;
	color: #fff;
	margin-bottom: 10px;font-family: "Philosopher", sans-serif;
  font-family: "Berkshire Swash", serif;
}
.profile-rating {
	margin-bottom: 15px;
	background: linear-gradient(90deg,rgba(255, 254, 254, 1) 0%, rgba(241, 200, 241, 1) 100%);
	color: #131d5b;
	padding: 5px 10px;
	border-radius: 5px;
	display: inline-block;
}
.profile-desc {
	color: #666;
	font-size: 16px;
	margin-bottom: 30px;
	line-height: 1.5;
	background: #edf2f7;
	padding: 15px;
	border-radius: 5px;
	color: #212121;
}
.profile-details {

	margin-bottom: 14px;
}
.review-text{padding-left: 10px;font-size: 14px;}

.profile-desc .fas {
	width: 21px;
	margin-right: 6px;
	text-align: center;
}
.follow-btn {
	background: #65ebe9;
	color: #122e73;
	border: none;
	padding: 8px 20px;
	border-radius: 5px;	
	margin-right: 10px;
}

.stats-card {
	background:    #edf2f7;
	border-radius: 15px;
	padding: 15px;
	text-align: center;
	height:auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-bottom: 0px;border: 1px solid #bac0c6;
}
.stats-number {
	font-size: 2.5rem;
	font-weight: 600;
	color: #122f74;
	margin-bottom: 5px;
}
.stats-label {
	color: #222;
	font-size: 18px;
	font-weight: normal;
}

.pl-5 {	
	padding-left: 3rem !important;
}

.consultation-card {
	padding: 26px 20px;
	text-align: center;	
	box-shadow: 0 4px 15px rgba(0,0,0,0.08);border: 1px solid #ebe2db;margin-bottom: 10px
}
.consultation-icon {
	font-size: 2rem;
	margin-bottom: 10px;
	color: #4a90e2;
}
.consultation-title {
	font-weight: 500;
	font-size: 24px;
	margin-bottom: 15px;
	color: #333;
	display: flex;
	align-items: center;
	justify-content: center;
}
.consultation-title .fas{color:#9c6e4c;font-size: 36px;padding-right: 15px;}

.consultation-price {
	font-size: 26px;
	font-weight: 500;
	color: #0c4e90;
	margin-bottom: 8px;
}
.consultation-desc {
	font-size: 16px;
	color: #222;
	margin-bottom: 15px;
	line-height: 28    px;
}
.consultation-btn {
	width: auto;
	padding: 6px 25px;
	border: none;
	border-radius: 8px;
	font-weight: 500;
	font-size: 16px;
	background: linear-gradient(0deg,rgba(0, 141, 210, 1) 0%, rgba(20, 34, 105, 1) 100%);
	color: #fff;
}


.profile-section{padding: 0;}

.about-section{border: 1px solid #e5e5e5;border-radius: 10px;padding: 15px;margin-bottom: 15px;}
 .section-title-inner {
	font-weight: 500;
	margin: -15px -15px 10px -15px;
	padding: 15px 15px;
	font-size: 22px;
	/* font-weight: 500; */
	/* background: #008DD2; */
	background: linear-gradient(90deg,rgba(0, 141, 210, 1) 0%, rgba(20, 34, 105, 1) 100%);
	color: #ffffff;
	line-height: normal;border-radius: 10px 10px 0px 0px;
}
.about-section p {
	line-height: 32px;
	font-size: 16px;
	margin-bottom: 7px;
}
.section-title-sub{font-size: 20px;color: #0e4487;padding: 10px 0px}

.tag {
	background: #e3f2fd;
	color: #222;
	padding: 6px 12px;
	border-radius: 15px;
	font-size: 16px;
	background: linear-gradient(90deg,rgba(254, 249, 237, 1) 0%, rgba(233, 197, 170, 1) 100%);
	border: 1px solid #f0d7c4;
	margin: 0px 10px 10px 0px;
	line-height: normal;
	display: inline-block;position: relative;
}

.about-section .service-item {	
	border: 1px solid #dcdcdc;
}

.client-talk p {
	font-size: 16px;
	margin-bottom: 0;
	line-height: 30px;font-style: italic;
}
.client-talk h3{padding-top: 10px;}
.services .client-talk {
	border-radius: 10px;
	box-shadow: #da9b6d -5px 5px;margin-bottom: 15px
}

.availability {
	background: white;
	border-radius: 12px;
	padding: 20px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	border-right: 5px solid #ce9267;
	border-bottom: 5px solid #ce9267;margin-bottom: 15px;height: auto
}

.time-slot {
	display: flex;
	justify-content: space-between;
	padding: 7px 15px;
	border-left: 2px solid #5b2f04;
	background: #fdf7e9;
	margin-bottom: 10px;
	border-radius: 5px;
}  

.availability h3{color: #0f4083; margin-bottom: 15px;font-size: 22px;}
.availability h3 img{margin-right: 10px}

.availability li{display: flex;align-items: center;}
.availability .content  ul i {font-size: 1.60rem;}

.contact-btn {
	width: 100%;
	padding: 12px;
	border: none;
	border-radius: 25px;
	font-weight: 500;
	cursor: pointer;
	margin-bottom: 10px;
}
.btn-call {
	background: linear-gradient(90deg,rgba(0, 141, 210, 1) 0%, rgba(20, 34, 105, 1) 100%);
	color: white;
}
.btn-whatsapp {
	background: #46c254    ;
	color: white;
}

.pl-0{padding-left: 0;}
.pr-0{padding-right: 0;}


.pic-img-div-edit{background: none !important;border: 1px solid #d6d6d6;}
.flie-upload-div {
	height: 100%;
	/* border: 1px solid rgba(94, 32, 100, 0.18); */
	/* border-radius: 10px; */
	/* text-align: center; */
	display: flex;
	align-items: center;
}

.flie-upload-div label{padding: 0;width: 100%;color: #fff}


.flie-upload-div p{font-size: 14px;color: #0F050F;opacity: 0.7;margin: 0;color: #fff}
.edit-part{display: flex;align-items: center;}
.edit-part .button-right{margin-left: auto;}

.hidden {
	display: none;
}

.form-group textarea {
	height: 80px;
	resize: vertical;
}
.addbtn {
	background: #0f3c82;
	border: 0px;
	font-size: 16px;
	color: #FFF;
	height: 24px;
	width: 24px;
	border-radius: 5px;
}

.tag .close {
	position: absolute;
	top: -3px;
	color: #0f3c82;
}


.section--sky-bg {
	background-color: #e7f2fb;
}





.faq .faq-list {
     padding: 0 100px;
}
 .faq .faq-list ul {
     padding: 0;
     list-style: none;
}
 .faq .faq-list li+li {
     margin-top: 0;
/*     border-top: 1px solid #cfcfcf;*/
}
.faq .faq-list li {
	padding: 0;
	background: #fff;
	border-radius: 10px;
	position: relative;
	margin-top: 15px;
	margin-bottom: 15px;border: 1px solid #d6d6d6;
}
.faq .faq-list a {
	display: block;
	position: relative;
	font-size: 18px;
	line-height: 24px;
	font-weight: 500;
	padding: 20px 20px 20px 20px;
	outline: none;
	cursor: pointer;
	background: linear-gradient(0deg,rgb(0, 141, 210) 0%, rgb(20, 34, 105) 100%);
	color: #fff;border-radius: 10px 10px 0px 0px;
}

 .faq .faq-list .icon-help {
     font-size: 24px;
     position: absolute;
     right: 0;
     left: 15px;
    
}
 .faq .faq-list .icon-show, .faq .faq-list .icon-close {
     font-size: 24px;
     position: absolute;
     right: 12px;
     top: 20px;
     font-weight: 700;
}
 .faq-details {
     padding: 0px 20px 20px 20px;
}
 .faq .faq-list p {
     margin-bottom: 0;
     padding: 0 0 0 0;
     margin: 0px;
     font-size: 16px;
     line-height: 32px;
     color: #222;
    
}
 .faq-details ul.submenu{
     margin: 0px;
     padding: 0px;
}
 .faq-details ul.submenu li {
     margin: 0px;
     padding: 0px;
     font-size: 15px;
     line-height: 32px;
     color: #212121;
     font-weight: 500;
     background: url(../img/check-img-faq.jpg) no-repeat;
     background-position: left 12px;
     padding: 2px 0px 2px 30px;
     border: 0px;
}
 .faq .faq-list .icon-show {
     display: none;
}
 .faq .faq-list a.collapsed {
     color: #fff;
/*     background: #fff;*/
     border-radius: 10px;
}
 .faq .faq-list a.collapsed:hover {
     color: #fff;
}
 .faq .faq-list a.collapsed .icon-show {
     display: inline-block;
}
 .faq .faq-list a.collapsed .icon-close {
     display: none;
}
 @media (max-width: 1200px) {
     .faq .faq-list {
         padding: 0;
    }
}



.planets-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}
.planet-card {
	background: #fff;
	padding: 30px 15px 10px 15px;
	border-radius: 15px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	text-align: center;
	transition: transform 0.3s;
}
.planet-card {
	text-align: center;
	line-height: 26px;
	font-size: 15px;
}

.planets-grid1 {
	
	grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));margin-top: 0;
	
}

.about-top li{align-items: flex-start;}

.advice-list{}

.advice-list .content ul{padding: 0;}
.advice-list .content ul li{list-style: none;}
.advice-list .content ul i {
	color: #5b2f04;
	margin-right: 0.5rem;
	line-height: normal;
	font-size: 1.60rem;
}
.advice-list strong {
	font-weight: 600;padding-right: 5px
}

.inner-banner-hero{
    overflow: unset;
}
.inner-banner-hero .carousel {
	height: auto;
	min-height: auto;
}
.inner-banner-hero .carousel-item {
	position: relative;
	float: none;
}
.inner-banner-hero .banner-img-div img {
	max-width: 100%;
	width: auto;
	margin: 0px auto;
	padding: 0px;
}

.inner-banner-hero h2 {
	margin-bottom: 20px;
	font-size: 46px;
	/* font-weight: 700; */
	line-height: 72px;
	letter-spacing: 2px;
	font-family: "Berkshire Swash", serif;
	font-weight: 400;
	color: #fff;
	text-shadow: 0 0 10px #000000ba, 0 0 15px #000000ba, 0 0 20px #000000ba;
}
.inner-banner-hero .off-text {
	font-size: 28px;
	font-weight: 700;
	color: #222222;
	padding: 5px 15px;
	background: #f0d6f0;
	border-radius: 3px;
	color: #131d5b;
	margin-left: 0;
	letter-spacing: 1px;
	margin-bottom: 15px;
	display: inline-block;
}
.inner-banner-hero .banner-details {
	padding-left: 50px;
    display: inline-block;
    width: 100%;
}

.inner-banner-hero .details-text{
    font-size: 18px;
    line-height: 32px;
    color: #fff;
    font-weight: 400;
    margin: 0px 0px 10px 0px;
}

.inner-banner-hero .details-text strong{
    font-weight: 500;
}
.astrology-course-list{
    margin: 0px;
    padding: 0px;
}
.astrology-course-list ul{
    margin: 0px 0px 15px 0px;
    padding: 0px;
}
.astrology-course-list ul li {
	margin: 0px;
	padding: 0px;
	list-style: none;
	color: #fff;
	position: relative;
	padding-left: 26px;
	padding-bottom: 5px;
	font-size: 18px;
	letter-spacing: 1px;
	padding-top: 5px;
	font-weight: 600;
	text-transform: uppercase;
}
.astrology-course-list ul li i {
	color: #edbc4a;
	margin-right: 0.5rem;
	line-height: normal;
	font-size: 12px;
	position: absolute;
	left: 0px;
	top: 13px;
}

.section-title-main {
	font-size: 20px;
	color: #0e4487;
	padding: 10px 0px 0 0;
	margin-bottom: 10px;
}
.section-title-small {
	font-size: 18px;
	color: #0e4487;
	padding: 0px 0px 10px 0px;
    margin: 0px 0px 0px 0px;
}

/*

.astrologer-form.course-box {
	background: linear-gradient(0deg, rgba(186, 207, 226, 1) 0%, rgba(254, 254, 254, 1) 100%);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    padding: 26px 20px;
	border: 1px solid #e5e5e5;
	box-shadow: none;
	border-radius: 5px;
	position: relative;
	overflow: hidden;
	height: 100%;
}


.course-section{
    
}

.course-section .section-title {
	text-align: left;
	padding-bottom: 5px;
	position: relative;
	font-weight: 500;
	font-size: 20px;
}

.course-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2d3748;
    margin: 0;
}

.course-description {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 15px;
}

.course-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.course-price, .course-duration {
    background: #667eea;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.95rem;
}

.course-duration {
    background: #764ba2;
}

.whatsapp-section {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    margin-top: 30px;
}

.whatsapp-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.course-box .form-select{
    width: auto;
}
*/



/*
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
        }
*/

/*
        input, textarea, select {
            width: 100%;
            padding: 12px;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
*/

/*
        input:focus, textarea:focus, select:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
            transform: scale(1.02);
        }
*/

/*
        textarea {
            height: 100px;
            resize: vertical;
        }

        .send-btn {
            background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
            color: #2d3748;
            border: none;
            padding: 15px 30px;
            border-radius: 25px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 20px auto 0;
        }

        .send-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .send-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        .selected-course-info {
            background: rgba(102, 126, 234, 0.1);
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 20px;
            border-left: 5px solid #667eea;
        }

        .phone-input {
            position: relative;
        }

        .phone-prefix {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: #666;
            font-weight: bold;
        }

        .phone-input input {
            padding-left: 50px;
        }
*/

