/* ✅ Import Inter Font */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&display=swap');
*{
	margin: 0;
	padding: 0;
}
:root {
    --primary: #00a0b6;
	--secondary: #00a086;
	--info: #77c03e;
	--gray: #727377;
	--button: linear-gradient(132deg, #00a0b6, #00a086, #77c03e);
}
body {
	font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
}
.container{
	max-width: 1250px;
}
h1,h2,h3,h4,h5,h6{
    font-family: 'Roboto Condensed', sans-serif;
}
/* ================================
   Desktop Navigation
================================ */
.site-header .main-header {
    width: 100%;
	padding: 10px 0;
}
.site-header.sticky .main-header {
    position: fixed !important;
    top: 0;
    background: #ffffff !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    animation: slideDown 0.4s ease;
    z-index: 999;
}
/* Slide down animation */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.main-header .logo img{
	width: 140px;
}
#mobileMenuBtn:hover{
	background: #fff;
}
.site-header .nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header .nav > li {
  position: relative;
}
.btn-primary {
    position: relative;
    z-index: 1;
    color: #fff !important;
    background: var(--primary);
    border: none;
    padding: 10px 35px;
    letter-spacing: 1px;
    overflow: hidden;
    transition: 0.3s;
    border-radius: 5px;
    display: inline-block;
	font-weight: 600;
	
}
.btn-primary:hover {
    color: #fff;
}
.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--button);
    transform: scale(0);
    transform-origin: bottom right;
    transition: transform 0.5s ease;
    z-index: -1;
    border-radius: 4px;
}
.btn-primary:hover::after {
    transform: scale(1);
    transform-origin: top left;
}
.wpcf7-submit {
    position: relative;
    z-index: 1;
    color: #fff !important;
    background: var(--primary);
    border: none;
    padding: 10px 35px;
    letter-spacing: 1px;
    overflow: hidden;
    transition: all 0.3s ease;
    border-radius: 5px;
    display: inline-block;
    font-weight: 600;
    cursor: pointer;
}
.site-header .nav > li > a {
  color: #333;
  text-decoration: none;
  padding: 8px 15px;
  font-weight: 700 !important;
  transition: all 0.3s ease;
  display: inline-block;
}
.site-header .nav > li > a:hover,
.site-header .nav > li.current-menu-item > a,
.site-header .nav > li.current_page_item > a {
  color: var(--primary);
}
/* Dropdowns */
.site-header .nav li ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 270px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px 0;
    list-style: none;
    margin: 0;
    display: none;
    z-index: 9999;
    border-top: 3px solid var(--primary);
}
.site-header .nav li ul.sub-menu li a {
  padding: 8px 15px;
  color: var(--primary);
  display: block;
  font-weight: 400;
	text-decoration: none;
	border-bottom: 1px solid #8080801c;
}
.site-header .nav li ul.sub-menu li:last-child a {
  border-bottom: none;
}
.site-header .nav li ul.sub-menu li a:hover {
  background: var(--primary);
  color: #fff;
}

.site-header .nav > li:hover > ul.sub-menu {
  display: block;
}

.site-header .nav li ul.sub-menu li {
  position: relative;
}
.site-header .nav li ul.sub-menu li ul.sub-menu {
  top: 0;
  left: 100%;
  margin-left: 1px;
}
@media (max-width: 991px) {
  .site-header .nav {
    display: none; 
  }
}
/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100%;
  background: #fff;
  transition: right 0.3s ease;
  z-index: 1050;
}
.mobile-menu.open {
  right: 0;
}
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 1040;
}
.mobile-menu-overlay.active {
  display: block;
}
.mobile-menu-btn .btn-primary{
	margin-top: 2rem;
	display: inline-block;
	border: 1px solid #fff;
}
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: var(--primary)!important;
    transition: right 0.3s ease;
    z-index: 1050;
}
.mobile-menu-header {
    background-color: #fff;
}
#menu-primary-1 li {
    padding: 8px;
}
#menu-primary-1 li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
}
#mobileMenu .menu-item-has-children {
    position: relative;
}
#mobileMenu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 10px 0;
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
    display: none;
    z-index: 9999;
}

#mobileMenu .menu-item-has-children.active > .sub-menu {
    display: block;
}

#mobileMenu .sub-menu li a {
    padding: 0 10px;
    display: block;
    font-size: 15px;
    color: #333;
}
#mobileMenu .menu-item-has-children > a {
    position: relative;
    padding-right: 40px;
}

#mobileMenu .dropdown-arrow {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
#mobileMenu .menu-item-has-children.active .dropdown-arrow i {
    transform: rotate(180deg);
}
/* ================================
   Breadcrumb Section
=============================== */
.breadcrumb-section .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    top: 40%;
    z-index: 2;
    justify-content: center;
}
section.breadcrumb-section {
    background: url(https://visitingvydyas.com/wp-content/uploads/2026/03/breadcrumb.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 50vh;
    position: relative;
    z-index: 1;
}
/* Overlay */
section.breadcrumb-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff69;
    z-index: -1;
}
.breadcrumb-item.active {
    color: var(--secondary) !important;
}
ol.breadcrumb {
    font-size: 18px;
    font-weight: 700;
}
.breadcrumb-item+.breadcrumb-item::before{
	color: var(--primary) !important;
}
.breadcrumb-title h2 {
    color: var(--primary) !important;
}
li.breadcrumb-item a {
    color: var(--primary) !important;
    text-decoration: none;
}
/*==========================
     FOOTER SECTION CSS 
==============================*/
footer {
    position: relative;
    background: url("https://visitingvydyas.com/wp-content/uploads/2026/04/footer.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    padding-top: 2rem;
    background-position: center;
}
footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #f7f7f7ed 33.19%, #f7f7f78f 100%);
}
footer .container{
    position:relative;
    z-index:2;
}
.footer_menu h3 {
    font-weight: 700;
    color: var(--primary);
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
	margin:0;
}
footer a{
	color: #000;
}
ul.ftricons figure img {
    width: 15px;
    filter: brightness(100);
}
.footertop-cnt ul.smoicons li a i {
    font-size: 16px;
}
.footertop-cnt {
    padding-left: 0;
    border-right: 1px solid #ffffff14;
}
.footertop-cnt p a {
    font-family: "Mulish", sans-serif;
    font-size: 15px;
    color: var(--white);
    font-weight: 400;
}
.footertop-cnt p {
    color: var(--white);
    font-weight: 600;
    font-size: 18px;
    padding-left: 62px;
    letter-spacing: 1px;
    font-family: "Syne", sans-serif;
}
.footer_top .row {
    margin: 0;
}
.footer_top .col-md-6 {
    padding: 0;
}
.box1{
	padding: 20px;
}
footer a.footer-logo {
    margin-bottom: 15px;   
}
footer a.footer-logo img {
    width: 250px;
    display: block;
}
.footer_menu {
    padding: 40px 0 0 0;
}
ul.footer-details li i {
    background: var(--secondary);
    padding: 10px;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.footer-icon {
    height: 30px;
    width: 30px;
    background: var(--violate);
    display: flex;
    justify-content: center;
    padding: 10px;
    color: #fff;
    border-radius: 5px;
    align-items: center;
}
ul.footer-details li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
#mobileMenuBtn i {
    color: var(--primary);
    font-size: 40px;
}
ul{
	padding-left: 0rem !important;
	list-style-type: none;
}
ul.ftricons li a {
    border: 1px solid #ffffff36;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    font-size: 14px;
    margin-top: 8px;
}
footer ul li.menu-item a {
    display: inline-block;
}
.menu ,.footer-details,.footer-payment{
    margin-top: 25px;
}
footer p {
    margin-bottom: 25px;
    line-height: 30px;
    margin-top: 25px;
}
footer .menu li {
    position: relative;
    padding-left: 0 !important;
    list-style-type: none;
}
footer .menu li{
	padding-left: 0 !important;
	color: var(--dark) !important;
	  transition: transform 0.3s ease;
	line-height: 40px;
	margin-left: 35px;
}
footer .menu li::after {
  content: "\f101"; 
  font-family: "Font Awesome 5 Free";
  font-weight: 900; 
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%) translateX(-10px);
  opacity: 1;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.underline1 {
    height: 2px;
    width: 100px;
    background: var(--secondary);
    margin: auto;
    margin-top: 8px;
}
.underline2 {
    height: 4px;
    width: 30px;
    background: var(--primary);
    margin: auto;
    margin-top: -3px;
}
.no-margin {
    margin-left: 0px;
}
footer .menu li:hover{
	color: var(--primary) !important;
	transform: translateX(20px);
}
footer .social-icons {
    display: flex;
    transition: 0.3s;
}
footer .social-icons a:hover{
	background: var(--primary);
}
footer .social-icons a {
    display: flex;
    text-decoration: none;
    color: var(--light);
    background-color: var(--primary);
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
}
footer ul li, footer ul li a, footer p, footer p a {
    font-weight: 500;
    position: relative;
    text-decoration: none;
	color: #000;
}
footer a.viewmore {
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 500;
    margin-top: 12px;
    display: inline-block;
    font-size: 14px;
}
.copyright {
    padding: 15px 0;
    border-top: 1px solid var(--secondary);
}
.copyright .row {
    align-items: center;
}
.copyright p {
    margin: 0 !important;
    color: #000;
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 500;
}
.copyright p a {
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 4px;
}
footer ul.socialicon li a {
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #c98d830f;
    width: 40px;
    height: 40px;
    color: var(--secondary);
    transition: .5s;
    margin-right: 5px;
    backdrop-filter: blur(2px);
    border-radius: 50%;
}
.footer-payment {
    display: flex;
    gap: 20px;
    flex-direction: column;
}
.payment-box {
    background: #fff;
    display: flex;
    align-items: center;
    width: 65%;
    height: 90px;
    flex-direction: column;
    justify-content: center;
}
/* Scroll To Top Button */
#GoToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary);
    color: #fff;
    font-size: 16px;
    border-radius: 5px;
    z-index: 999;
    transition: all 0.3s ease-in-out;
    height: 45px;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
#GoToTop i{
	color: #fff;
}
#whatsappbtn {
    cursor: pointer;
    position: fixed;
    bottom: 4%;
    left: 20px;
    z-index: 99999999;
    padding: 0 9px;
    background: #4fcc5d;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
    z-index: 12;
    display: flex;
    align-items: center;
    justify-content: center;
}
#whatsappbtn:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #4fcc5d;
    box-shadow: 0 0 10px #4fcc5d;
    animation: playbtn 3s linear infinite forwards;
    z-index: -3;
}
@keyframes playbtn {
    from {
        transform: scale(1.0);
        opacity: 1;
    }
    to {
        transform: scale(1.5);
        opacity: 0;
    }
}
#whatsappbtn img {
    width: 30px;
}
/*=========================
  Hero Section 
==================*/
.hero{
	border-radius: 20px;
	margin: 0 20px;
	padding: 0;
}
.carousel{
	border-radius: 20px;
}
.carousel-inner{
	border-radius: 20px;
}
.carousel-item {
    height: 100vh;
    position: relative;
    background-size: cover;
    background-position: center;
	border-radius: 20px;
}
.carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgb(0 0 0 / 60%), rgb(0 160 134 / 20%));
    z-index: 1;
	border-radius: 20px;
}
.carousel-caption {
    z-index: 2;
    top: 50%;
	left: 10%;
	right: 0;
    transform: translateY(-50%);
    bottom: auto;
	width: 650px;
	text-align: left;
}
.carousel-caption h1 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 2px;
}
.carousel-caption h1 span {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px);
}
.carousel-caption p {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}
.carousel-item .btn-primary {
    opacity: 0;
    transform: scale(0.7);
    transition: all 0.5s ease;
}
.carousel-item.active p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}
.carousel-item.active .btn-primary {
    opacity: 1;
    transform: scale(1);
    transition-delay: 1.2s;
}
/* ===== CUSTOM ARROWS ===== */
.banner-button-prev,
.banner-button-next {
    position: absolute;
    top: 50%;
    z-index: 9;
    background: #fff;
    padding: 8px;
    cursor: pointer;
}
.banner-button-prev {
    left: 0;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}
.banner-button-next {
    right: 0;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}
.banner-arrow-icon {
    width: 45px;
    height: 45px;
    background: #00a0b640;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 22px;
    transition: 0.3s;
}
.banner-button-prev:hover .banner-arrow-icon,
.banner-button-next:hover .banner-arrow-icon {
    background: var(--primary);
    color: #fff;
}
.banner-shape-arrow svg {
    position: absolute;
    width: 30px;
    height: 30px;
    left: 0;
}
.banner-shape-arrow svg path {
    fill: #fff;
}
.banner-shape-arrow svg:first-child {
    top: -30px;
    transform: rotate(-90deg);
}
.banner-shape-arrow svg:last-child {
    bottom: -30px;
    transform: rotate(0deg);
}
.banner-button-next .banner-shape-arrow svg {
    left: auto;
    right: 0;
    transform: rotate(180deg);
}
.banner-button-next .banner-shape-arrow svg:last-child {
    transform: rotate(90deg);
}
@media (max-width:768px){
    .carousel-caption h1 {
        font-size: 2rem;
    }
}
.animated-text{
    white-space: normal;   
}

.animated-text .letter{
    display: inline;     
    opacity: 0;
}
/*=======================
   marquee Section 
=========================*/
section.marquee-section {
    background: url(https://visitingvydyas.com/wp-content/uploads/2026/04/pattern-3.png);
    background-repeat: no-repeat;
    background-position: right;
    background-attachment: fixed;
    padding: 80px 0;
}
.marquee {
    overflow: hidden;
    background: #00a0b614;
    padding: 20px 0;
    border-top: 1px solid #00a0b682;
    border-bottom: 1px solid #00a0b682;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll 30s linear infinite;
}
.marquee-content {
  display: flex;
  white-space: nowrap;
}
.marquee-content span {
    display: flex;
    align-items: center;
    margin-right: 40px;
    font-size: 22px;
    font-weight: 600;
    color: var(--secondary);
    letter-spacing: 1px;
    font-family: 'Roboto Condensed', sans-serif;
}
.marquee-content i {
    color: var(--secondary);
    margin: 0 10px;
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* ==================
 Feature Section
====================*/
section{
	padding: 80px 0 0;
}
.feature-section{
	padding: 0;
}
.featured-item {
    position: relative;
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 0 10px 0 #8080804a;
    transition: 0.3s;
    height: 100%;
    display: flex;
    align-items: center;
}
.ht-shape-btn{
  position:absolute;
  top:0;
  right:0;
  width:125px;
  height:125px;
}

.ht-shape-btn svg{
  width:100%;
  height:100%;
	border-radius: 20px;
}

.ht-shape-btn path{
  fill: #00a0b680;
}
.featured-number{
  position:absolute;
  top:10px;
  right:10px;
}
.featured-number span{
  width:60px;
  height:60px;
  background:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
}
.featured-title h4 {
    color: var(--primary);
    font-weight: 600;
    width: 80%;
    margin: 0;
    padding: 0;
}
.featured-icon{
  position:absolute;
  right:20px;
  bottom:20px;
}
.featured-icon img{
  transition:0.3s;
}
.featured-item:hover{
  transform:translateY(-10px);
}
.featured-item:hover .featured-icon img{
  animation:shake 0.6s;
}
@keyframes shake{
  0%{transform:translateX(0)}
  25%{transform:translateX(-5px)}
  50%{transform:translateX(5px)}
  75%{transform:translateX(-3px)}
  100%{transform:translateX(0)}
}
@media(max-width:768px){
  .featured-item{
    padding:30px;
  }
}
/*======================
    About Section 
===========================*/
.about-box {
    background: var(--primary);
    height: 100%;
    border-radius: 25px;
    padding: 20px 20px 40px 20px;
    display: flex;
    color: #fff;
    align-items: flex-end;
}
.about-box h2{
	font-weight: 500;
}
.about-img-box img {
    border-radius: 20px;
    width: 100%;
}
.choose-heading i {
    font-size: 25px;
    color: var(--primary);
    margin-bottom: 1rem;
}
.heading-section h5 {
    font-size: 20px;
    color: var(--primary);
    font-weight: 700;
}
.choose {
    padding: 10px 0;
}
.choose-heading h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary);
}
.about-section {
    position: relative;
    background: url(https://visitingvydyas.com/wp-content/uploads/2026/03/about-bg.png);
    background-repeat: no-repeat;
    background-position: right top;
    background-size: contain;
}
.care-contain {
    width: 100%;
    margin: auto;
    align-items: center;
    background: url(https://visitingvydyas.com/wp-content/uploads/2026/04/care-bg.png) #00a0861c;
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
}
.care-contain h2 {
    font-size: 50px;
    color: var(--primary);
    width: 70%;
    margin: auto;
}
.btn-box {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 2rem;
}
section.care-section {
    padding: 80px 0;
}
/* Contact Section css */
section.contact-section {
    background: url(https://visitingvydyas.com/wp-content/uploads/2026/03/contact-bg.webp);
    padding: 80px 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.contact-form {
    padding: 25px;
    background: #ffffffb0;
    border-top: 5px solid var(--primary);
}
.form-control, .form-select {
    border-radius: 0;
    line-height: 30px;
}
/*============================
  Department Section
=========================*/
.department-section{
	background: url(https://visitingvydyas.com/wp-content/uploads/2026/03/department-bg.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 80px 0;
	margin-top: 80px;
	position: relative;
}
.department-left {
    position: sticky;
    top: 140px;
}
.department-card{
    background:#fff;
    border-radius:20px;
    padding:40px 30px;
    display:flex;
    align-items:center;
    gap:25px;
    position:relative;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.3s;
    max-width:700px;
    margin:auto;
	margin-bottom: 20px;
}
.department-card:hover{
    transform:translateY(-5px);
	background: var(--primary);
	color: #fff;
}
a.department-link {
    color: var(--primary);
    text-decoration: none;
   font-weight:500;
    margin-top:10px;
    display:inline-block;
    transition:0.3s;
}
a.department-link:hover{
    letter-spacing:1px;
}
.department-card:hover .department-link{
	color: #fff !important;
}
.ht-shape-btn path{
    transition: all 0.3s ease;
}
.department-card:hover .ht-shape-btn path{
    fill: #fff;
}
.department-card:hover .featured-number i{
	color: #fff;
	background: var(--primary) !important;
}
.department-card:hover .department-card p{ 
	color: #fff;
}
.department-img{
    width:180px;
    height:180px;
    border-radius:50%;
    overflow:hidden;
    flex-shrink:0;
}
.featured-number i{
	width:60px;
  height:60px;
  background:#fff !important;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
	color: var(--primary);
}
.department-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.department-content h3{
    font-size:26px;
    font-weight:600;
    margin-bottom:10px;
}
.department-content p{
    margin:0;
    line-height:1.6;
}
/*==========================
  Conduct Program Section
==========================*/
.program-left {
    position: relative;
}
.program-box {
    position: absolute;
    top: 65%;
    left: 50%;
}
.program-left img {
    border-radius: 20px;
}
.program-first{
	margin-right: 6rem;
}
.program-box img {
    border: 5px solid #fff;
}
section.program {
    padding: 80px 0;
}
.box {
    background: #00a0b626;
    padding: 20px;
    border-radius: 10px;
    display: inline-block;
    border-left: 4px solid var(--primary);
}
/*=====================================
  WHY PREVENTIVE SCREENING MATTERS 
====================================*/
.prevent-points {
  background: linear-gradient(132deg, rgba(0,160,182,0.25), rgba(0,160,134,0.25), rgba(119,192,62,0.25));
  height: 100%;
  padding: 15px;
  border-radius: 12px;
  transition: all 0.35s ease;
}
.prevent-points:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18);
}
.prevent-points p{
	margin: 0;
}
/*=========================
    Partner Section 
=============================*/
.partner{
	padding: 80px 0;
}
.partner-inner {
    text-align: center;
    background: #00a0b612;
    padding: 30px;
    border-radius: 20px;
    border-left: 3px solid var(--primary);
    border-right: 3px solid var(--primary);
}
/*=========================
  Doctor Section
======================*/
section.doctor-section {
    background: url(https://visitingvydyas.com/wp-content/uploads/2026/03/doctor-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
	padding: 80px 0;
}
.doctor-section .heading-section {
    text-align: center;
}
.team-member.horizontal-card {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    margin: 10px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
}
.team-member.horizontal-card:hover {
    transform: translateY(-5px);
}
.team-member.horizontal-card .team-images {
    width: 40%;
    position: relative;
    overflow: hidden;
}
.team-member.horizontal-card .team-images img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.team-member.horizontal-card .team-images:before {
    content:'';
    position:absolute;
    width:100%;
    height:0%;
    bottom:0;
    left:0;
    background: linear-gradient(180deg, #00a0b600, #00a0b6a6);
    transition:0.5s;
    z-index:2;
}
.team-member.horizontal-card:hover .team-images:before {
    height:100%;
}
.team-member.horizontal-card .team-desc {
    width: 60%;
    padding: 25px;
    text-align: left;
}
.team-desc h4 {
    margin: 0;
    font-size: 25px;
    color: var(--primary);
    font-weight: 700;
}
.team-desc span {
    font-size: 15px;
    margin-top: 5px;
    display: block;
    color: #555;
}
.team-member.horizontal-card .team-social-icon {
    position:absolute;
    top:50%;
    right:10px;
    transform:translateY(-50%);
    opacity:0;
    transition:0.3s;
    z-index:5;
}
.team-member.horizontal-card:hover .team-social-icon {
    opacity:1;
    transform:translateY(-50%) translateX(-10px);
}
.team-social-icon li {
    display:block;
    margin:5px 0;
}
.team-social-icon li a {
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    border-radius:50%;
    color:#000;
    text-decoration:none;
    transition:0.3s;
}
.team-social-icon li a:hover {
    background: var(--button);
    color:#fff;
}
.doctor-nav {
    text-align:center;
    margin-top:30px;
}
.doctor-prev,
.doctor-next {
    display:inline-flex;
    width:45px;
    height:45px;
    background:#00a0b6;
    color:#fff;
    border-radius:50%;
    align-items:center;
    justify-content:center;
    margin:0 10px;
    cursor:pointer;
}
@media (max-width: 991px) {
    .team-member.horizontal-card {
        flex-direction: column;
    }
    .team-member.horizontal-card .team-images,
    .team-member.horizontal-card .team-desc {
        width: 100%;
    }
    .team-member.horizontal-card .team-desc {
        text-align: center;
    }
}
/*===================================
      Service Page Css 
==================================*/
.service-inner-left img{
	border-radius: 20px;
}
.main-section{
	padding-bottom: 80px;
	padding-top: 0;
}
/*==========================
     Service Details Page 
============================*/
.section-ineer-overview {
    text-align: center;
    background: #00a0b617;
    padding: 30px;
    border-radius: 20px;
    border-left: 3px solid var(--primary);
    border-right: 3px solid var(--primary);
}
.opt-left img {
    height: 400px;
    width: 100%;
    object-fit: cover;
}
section.matter img {
    border-radius: 30px;
}
.matter-left {
    margin-right: 2rem;
}
section.program-include {
    padding: 80px 0;
}
section.matter {
    background: url(https://visitingvydyas.com/wp-content/uploads/2026/04/care-bg.png) #00a0b614;
    margin-top: 80px;
    padding: 80px 0;
    background-repeat: no-repeat;
    background-size: contain;
    background-attachment: fixed;
    background-position: left;
	position: relative;
}
.matter-right img {
    height: 450px;
    width: 100%;
    object-fit: cover;
}
.conduct {
    position: relative;
    padding: 80px 0;
    color: #fff;
    background-attachment: fixed; 
	text-align: center;
}
.conduct .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7); 
}
.conduct .conduct-inner {
    position: relative;
    z-index: 2;
}
.outcome-right img {
    height: 400px;
    width: 100%;
    object-fit: cover;
}
section.demo {
    text-align: center;
    padding: 80px 0;
    background: url(https://visitingvydyas.com/wp-content/uploads/2026/04/demo-bg.jpg);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-top: 80px;
}
/*=========================
     Contact Page CSS 
=============================*/
.info-card {
   padding: 35px 25px;
   background: #fff;
   border: 1px solid #ececec;
   box-shadow: 0 4px 15px rgba(0,0,0,0.04);
   transition: 0.3s;
   display: flex;
   gap: 30px;
}
.info-card a{ 
   color: #000 !important;
	text-decoration: none;		
}
.info-card:hover {
   border-color: var(--primary);
   transform: translateY(-4px);
}
.info-card i{
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 10px;
}
.info-card h6 {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 600;
}
section.contact-inner-section {
    padding: 80px 0;
}
/*===========================
    About Page css 
===============================*/
section.about-inner img {
    border-radius: 30px;
}
.about-inner-left {
    margin-right: 3rem !important;
}
.about-inner-right img {
    margin-top: 2rem;
}
.mission {
    background: #fff;
    box-shadow: 0 0 10px 0 #80808069;
    padding: 20px;
    height: 100%;
    border-radius: 10px;
}
.list li {
    list-style: none;
    position: relative;
    padding-left: 25px;
    line-height: 40px;
}
.list li::before {
  content: "\f101"; 
  font-family: "Font Awesome 6 Free";
  font-weight: 900; 
  position: absolute;
  left: 0;
  color: var(--primary);
}
.cornerstone-item {
    background: #00a0b61f;
    border: 1px dashed var(--primary);
    border-radius: 18px;
    height: 100% !important;
    padding: 20px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 8px;
    transition: all 0.35s ease;
    margin-bottom: 20px;
    position: relative;
}
.cornerstone-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}
.cornerstone-item p {
    font-size: 1rem;
    text-align: start;
	font-weight: 800;
}
section.approch {
    position: relative;
    background: url(https://visitingvydyas.com/wp-content/uploads/2026/04/pattern-3.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
    background-attachment: fixed;
	padding: 80px 0;
}
img.img-fluid.doctor {
    position: absolute;
    opacity: 0.8;
    bottom: 0;
    width: 25%;
	animation: floatXY 8s ease-in-out infinite;
}
@keyframes floatXY{
	0% {
    transform: translate(0px, 0px) rotate(-2deg);
}
25% {
    transform: translate(10px, -15px) rotate(0deg);
}
50% {
    transform: translate(0px, -25px) rotate(2deg);
}
75% {
    transform: translate(-10px, -15px) rotate(0deg);
}
100% {
    transform: translate(0px, 0px) rotate(-2deg);
}
}
section.testimonial-section {
    padding: 80px 0;
	background: #00a0b617;
}
.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    height: 100%;
    position: relative;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}
.designation{
	margin: 0;
}
.user-info img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
}
.user-info h6 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}
.user-info span {
    font-size: 14px;
    color: #777;
}
.testimonial-text {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    margin: 20px 0;
}
.rating span {
    font-size: 14px;
    color: #777;
    display: block;
}
.rating h2 {
    font-size: 50px;
    font-weight: 600;
    margin: 0;
}
.rating small {
    font-size: 18px;
}
.quote {
    position: absolute;
    right: 25px;
    bottom: 20px;
    font-size: 4.875rem;
    font-weight: bold;
}
.quote i {
    color: #0062ac1f;
}
.swiper-pagination {
    margin-top: 25px;
    position: relative;
}
/*===========================
    Blog Page Css 
==============================*/
.blog-section {
    padding: 0 0 80px;
    background: url(https://visitingvydyas.com/wp-content/uploads/2026/03/blog-bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.sub-heading {
    font-size: 18px;
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #00a08629;
    padding: 3px 20px;
    border-radius: 30px;
}
.heading {
    font-size: 42px;
    font-weight: 600;
    margin: 15px 0;
    background: var(--button);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}
.blog-section .heading{
	text-align: center;
	margin-bottom: 4rem;
}
.blog-section .heading-section {
    text-align: center;
}
.blog-card{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.3s;
    height:100%;
}
.blog-card:hover{
    transform:translateY(-5px);
}
.blog-img{
    position: relative;
    overflow: hidden;
}
.blog-img img{
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.4s ease; 
}
.blog-card:hover .blog-img img{
    transform: scale(1.1);
}
.blog-img::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 9px;
    right: 9px;
    bottom: 9px;
    border: 1px solid var(--primary);
    z-index: 2;
    border-radius: 30px;
    pointer-events: none;
}
.blog-content{
    padding:20px;
}
.blog-title{
    font-size:20px;
    margin-bottom:10px;
}
.blog-title a{
    text-decoration:none;
    color:#222;
}
.blog-content p{
    font-size:14px;
    color:#666;
}
.blog-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}
.blog-excerpt{
    margin:0;
    font-size:14px;
    color:#666;
}
/*======================
      Responsive 
=============================*/
@media(max-width: 767px){
	.about-inner-left{
		margin-right: 0 !important;
	}	
	.carousel-item{
		height: 80vh;
	}
	.carousel-caption {
		right: 10%;
		width: auto;
	}
	.banner-shape-arrow svg:first-child {
		top: -28px;
	}
	.banner-shape-arrow svg:last-child {
		bottom: -28px;
	}
	.program-right {
		margin-top: 9rem;
	}
	.blog-img img{
		height: auto;
	}
	.care-contain h2 {
		font-size: 40px;
		width: 100%;
	}
	section.out-come .row {
		flex-direction: column-reverse;
	}
	.outcome-right img {
		height: auto;
	}
	section.program{
		padding: 80px 0 0;
	}
	.team-member.horizontal-card .team-images img{
		height: 450px;
	}
	.team-member.horizontal-card{
		height: 500px;
	}
}
@media(max-width: 568px){
	section {
		padding: 50px 0 0;
	}
	.hero{
		margin: 0 10px;
	}
	.carousel-item {
		height: 65vh;
	}
	.carousel-caption {
		right: 7%;
		left: 15%;
		width: auto;
	}
	.carousel-caption p{
		display: none;
	}
	section.doctor-section,.partner{
		padding: 50px 0;
	}
	section.marquee-section{
		padding: 50px 0;
	}
	.department-section{
		margin-top: 50px;
		padding: 50px 0;
	}
	section.matter {
		margin-top: 50px;
		padding: 50px 0;
	}
	section.program-include {
		padding: 50px 0;
	}
	section.demo {
		padding: 50px 0;
		margin-top: 50px;
	}
	.heading{
		font-size: 34px;
	}
	section.testimonial-section {
		padding: 50px 0;
	}
	section.approch{
		padding: 50px 0;
	}
	section.contact-inner-section {
		padding: 50px 0;
	}
	section.contact-section{
		padding: 50px 0;
	}
	.department-card {
		flex-direction: column;
		text-align: center;
	}
	.program-right {
		margin-top: 7rem;
	}
	section.care-section {
		padding: 50px 0;
	}
	.btn-box {
		gap: 12px;
		justify-content: center;
		margin-top: 2rem;
		flex-direction: column;
		align-items: center;
	}
	.blog-section{
		padding: 0 0 50px;
	}
	.team-member.horizontal-card .team-images img {
		height: auto;
	}
	.team-member.horizontal-card {
		height: auto;
	}
}
@media(max-width: 479px){
	.banner-arrow-icon {
		width: 30px;
		height: 30px;
		font-size: 16px;
	}
	.carousel-caption h1 {
		font-size: 22px;
	}
	.btn-primary{
		padding: 10px 12px;
	}
}
@media(max-width: 414px){
	.care-contain h2 {
		font-size: 25px;
		width: 100%;
	}
}
@media(max-width: 375px){
	.section-ineer-overview{
		padding: 15px;
	}
}