@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body {
    font-family: "Inter", serif;
    font-weight: 400;
    font-size: 16px;
    color: #282828;
}

p {
    font-size: 16px;
    color: #282828;
}

ul li {
    font-family: "Inter", serif;
    font-weight: 400;
    font-size: 16px;
    color: #282828;
}

html {
    scroll-behavior: smooth;
}

.blue-color {
    color: #01496B;
}
.green-color {
    color: #C3D72B;
}

.light-green {
    color: #6F9D3C;
}
/* Custom Scrollbar for WebKit Browsers */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(to bottom, #f8f9fa, #dee2e6);
    border-radius: 8px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #0d6efd, #6610f2);
    border-radius: 10px;
    border: 2px solid #ffffff;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #6610f2, #6f42c1);
}

/* Firefox Support */
* {
    scrollbar-width: thin;
    scrollbar-color: #C3D72B #dee2e6;
}

.custom-font {
    font-family: "EB Garamond", serif;
    font-weight: 400;
    font-style: italic;
}

a {
    text-decoration: none;
}

.sub-heading {
    font-size: 32px;
    color: #01496B;
    font-weight: 600;
}

.fw-24 {
    font-size: 24px !important;
}

section {
    padding: 5rem 0;
}

.modal {
    z-index: 9999;
}

/* Fixed Nav CSS */
#mainNavbar {
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    z-index: 999;
}

.fixed-nav {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    background: white;
    /* animation: slideDown 0.4s ease forwards; */
}

/* Slide down animation */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body.fixed-nav-padding {
    padding-top: 84px;
}

.fixed-nav .navbar-brand img {
    width: 175px;  /* Adjust the width as per your needs */
    height: auto;  /* Maintain aspect ratio */
}

.navbar-brand {
    margin-left: 60px;
}

.navbar-brand img {
    width: 270px;
    transition: width 0.3s ease;
}

.navbar-expand-lg .navbar-nav .nav-link {
    font-weight: 700;
    color: #000;
    padding-right: 1rem !important;
    padding-left: 1rem !important;
    transition: 0.5s all ease-in-out;
    font-size: 16px;
}

.navbar-expand-lg .navbar-nav .nav-link:hover {
    color: #ff0000;
}

.navbar-expand-lg .navbar-nav .nav-link.active {
    color: #ff0000;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar {z-index: 9999;}

.btn-success {
    background-color: #C3D72B !important;
    border-color: #A0B134 !important;
    color: #002334 !important;
    border-radius: 30px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    transition: 0.5s all ease-in-out !important;
    font-weight: 600 !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    font-size: 18px;
}


.common-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: #fff;
    background: linear-gradient(90deg, #C3D72B, #A0B134);
    padding: 10px 24px;
    text-decoration: none;
    border-radius: 6px;
    background-size: 200%;
    transition: background-position 0.5s ease, box-shadow 0.3s ease;
    overflow: hidden;
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
}

.common-button span {
    display: inline-block;
    transition: transform 0.3s ease;
}

/* Light sweep */
.common-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}

/* On Hover */
.common-button:hover {
    background-position: right center;
    box-shadow: 0 0 12px 4px rgba(255, 255, 255, 0.5);
    animation: pulseBorder 1s infinite alternate;
}

.common-button:hover::before {
    left: 125%;
}

.common-button:hover span {
    transform: translateX(8px);
}

/* Pulse Animation */
@keyframes pulseBorder {
    0% {
        box-shadow: 0 0 12px 4px rgba(255, 255, 255, 0.4);
    }
    100% {
        box-shadow: 0 0 18px 6px rgba(255, 255, 255, 0.7);
    }
}



.btn-success svg {
    font-size: 1.3rem;
    margin-right: 5px;
    align-items: center;
    display: flex;
    font-weight: 600;
}

.hero-card {
    background: rgb(1, 73, 107);
    background: linear-gradient(0deg, rgba(1, 73, 107, 1) 0%, rgba(0, 35, 52, 1) 100%);
    color: #fff;
    text-align: center;
    width: 100%;
    max-width: 926px;
}

.hero-card h1 {
    color: #fff;
}

.hero-green-bg {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    max-width: 55%;
}

.hero-green-bg-slide2 {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    max-width: 55%;
}

.hero-green-bg-slide3 {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    max-width: 55%;
}

.hero-nupur {
    right: 0;
    bottom: 0;
}

.hero-nupur-main {
    display: flex;
    justify-content: end;
    position: relative;
    z-index: 3;
}

.hero-nupur-main img {
    position: absolute;
    top: 0;
    right: 14vw;
    z-index: 3;
}
.hero-card {
    width: 100%;
    max-width: 950px;
    position: absolute !important;
    top: 26vh;
    z-index: 1;
    padding: 7rem 0;
    left: 10vw;
    border-radius: 40px !important;
    min-height: 630px;
}

.hero-card h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

.hero-card h1 span {
    display: block;
}

.hero-card h1 span i {
    color: #D5E47A;
}

.hero-style {
    width: 100%;
    height: 100vh;
    position: relative;
}

.section-head {
    font-size: 3.2rem;
    font-weight: 600;
}

.main-head {
    font-size: 44px;
    font-weight: 600;
    color: #002334;
}

.programs-head, .white-head {
    color: #FBFBFB;
}

.left-right-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn-icon-right svg {
    margin: 0 0 0 12px !important;
}

.btn-icon-right:hover svg {
    margin: 0 0 0 12px !important;
    position: relative;
    right: 0;
    animation: btnarrow 0.6s ease-in-out;
}

@keyframes btnarrow {
    0% {
        right: 0;
    }

    50% {
        right: -10px;
    }

    100% {
        right: 0;
    }
}

.home-about-img-section {
    text-align: center;
}

.home-about-img-section h2 {
    font-size: 3.2rem;
    font-weight: 700;
    background: #002334;
    background: linear-gradient(to bottom, #002334 0%, #347b9d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home-about-img-section h4 {
    color: #01496B;
}

.home-about-txt {
    color: #26292F;
    padding-top: 55px;
}

.home-about-img-section img {
    margin-bottom: 25px;
    width: 100%;
    border-radius: 20px;
}

.desk-mb-70 {
    margin-bottom: 70px;
}

.desk-mt-40 {
    margin-top: 40px !important;
}

.hb-icon {
    margin-top: 15px;
}

.bg-blue {
    background: linear-gradient(0deg, rgba(1, 73, 107, 1) 0%, rgba(0, 35, 52, 1) 100%);
}

.owl-theme .item {
    border: 1px solid black;
    border-radius: 20px 20px;
    background-color: #d9e3e7;
    /* height: 440px; */
    text-align: center;
}

.item img {
    border-radius: 20px 20px 0 0;
}

.item h3 {
    padding: 20px 20px 10px;
    color: #01496B;
    font-size: 20px;
}

.item p {
    padding: 0 20px
}

/* Nutrition Therapies */
.therapy-card {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}

.therapy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-title {
    color: #01496B;
    font-size: 20px;
}

.card-text {
    margin-bottom: 30px;
}

.card-text li {
    text-align: left;
    display: flex;
}

.card-text li span {
    color: #002334;
    font-size: 18px;
    margin-right: 8px;
}

.client-tab .tab-number {
    font-size: 3rem;
    background-color: #f1f1f1;
    color: #1e1e2f;
    text-align: center;
    padding: 1rem;
    border-radius: 0.5rem;
    font-weight: bold;
    width: 150px;
}

.client-tab .nav-pills .nav-link {
    color: #EFEFEF59;
    transition: all 0.3s ease;
    font-size: 30px;
    border-left: 1px solid rgba(256, 256, 256, .2);
    border-radius: 0;
}

.client-tab .nav-pills .nav-link.active {
    background-color: transparent;
    color: #fff;
    border-left: 4px solid #ffc107;
    border-radius: 0;

}

.client-tab .left-panel {
    background: #002334;
    background: linear-gradient(0deg, rgba(0, 35, 52, 1) 0%, rgba(1, 73, 107, 1) 100%);
    border-radius: 1rem 0 0 1rem;
    color: white;
    width: 400px;
}

/* Animation for tab content */
.client-tab .tab-pane {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.client-tab .tab-content {
    position: relative;
    min-height: 400px; /* Adjust based on your image height */
}

.client-tab .tab-pane.show.active {
    opacity: 1;
    position: relative;
    z-index: 1;
}

.client-tab .tab-pane img {
    border-radius: 0 1rem 1rem 0;
    width: 100%;
    height: 100%;
}

/* Testimonials */
.testimonial-container {
    width: 100%;
    padding: 0px 50px;
    position: relative;
}

.testimonial-slide {
    display: none;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    height: 350px;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.testimonial-slide.active {
    display: flex;
    opacity: 1;
}

.testimonial-image-wrapper {
    position: relative;
    min-width: 200px;
    height: 200px;
}

.testimonial-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 3px solid #C3D72B;
    position: relative;
    z-index: 1;
    object-fit: cover;
}

.testimonial-content {
    flex: 1;
}

.testimonial-text {
    font-size: 24px;
    font-style: italic;
    color: #EFEFEF;
    margin-bottom: 20px;
    max-height: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
}

.testimonial-name {
    font-weight: bold;
    color: #C3D72B;
    font-size: 22px;
}

.testimonial-title {
    font-size: 20px;
    color: #EFEFEF;
}

/* Centered side arrow buttons */
.testimonial-container .arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #C3D72B;
    border: none;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.testimonial-container .arrow-btn:hover {
    background-color: #C3D72B;
}

#prevBtn {
    left: 10px;
}

#nextBtn {
    right: 10px;
}

.dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
}


.dot {
    width: 20px;
    height: 20px;
    background: #ddd;
    border-radius: 10px;
    cursor: pointer;
    transition:
        background-color 0.3s ease,
        transform 0.3s ease,
        width 0.3s ease;
    opacity: 0.5;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    background: #ddd;
    border-radius: 10px;
    cursor: pointer;
    transition:
        background-color 0.3s ease,
        transform 0.3s ease,
        width 0.3s ease;
        opacity: 0.5;
}

.testimonial-dot.active {
    background: #C3D72B;
    width: 10px;
    opacity: 1;
}

.dot:hover {
    background: #C3D72B;
    transform: scale(1.1);
}

.slider1 .dot.active {
    background: #C3D72B;
    width: 20px;
    opacity: 1;
}

.dot.active {
    background: #C3D72B;
    width: 27px;
}


@media (max-width: 768px) {
    .testimonial-slide {
        /* flex-direction: column; */
        text-align: center;
        height: 600px;
    }

    .testimonial-image-wrapper {
        margin-bottom: 20px;
        display: flex;
        justify-content: center;
        width: 100%;
        height: 100px;
    }

    .testimonial-container{
        padding: 0px 15px;
    }

    .testimonial-text{
        font-size: 20px;
        -webkit-line-clamp: 4;
    }

    .testimonial-content {
        width: 100%;
    }

    .dots{
        bottom: 0;
    }

    #prevBtn,
    #nextBtn {
        top: auto;
        bottom: -50px;
        transform: translateY(0);
    }

    #prevBtn {
        left: 30%;
    }

    #nextBtn {
        right: 30%;
    }
}


/* Event CSS */
.event-section {
    background-color: #eff2f5;
}

.event-section .slider-container {
    overflow: hidden;
    position: relative;
}

.event-section .slider-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.event-section .slider-item {
    flex: 0 0 33.3333%; /* 3 items per row */
    max-width: 33.3333%;
    padding: 0 10px;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.event-section .slider-item.show {
    opacity: 1;
    transform: translateY(0);
}

.event-section .slider-item img {
    border-radius: 15px;
    height: 300px;
    object-fit: cover;
    width: 100%;
    margin-bottom: 20px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.event-section .slider-item:hover img {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.event-section .slider-dots {
    text-align: center;
    margin-top: 20px;
}

.event-section .slider-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
}

.event-section .slider-dot.active {
    background-color: #333;
}

@media (max-width: 768px) {
    .event-section .slider-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
}


/* Contact Us */
.contact-wrapper {
    background-image: url('../images/Contact_bg.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    margin-top: 70px;
}

.contact-box {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.contact-box .mb-3 {
    margin-bottom: 30px;
}

.contact-box label {
    color: #26292F;
    font-size: 16px;
    font-weight: 600;
}

.contact-box h3 {
    color: #002334;
    font-weight: 400;
    font-size: 22px;
}

.contact-box .reach {
    font-size: 16px;
    color: #002334;
    font-weight: 400;
}

.contact-box p {
    color: #26292F;
    font-weight: 600;
    font-size: 18px;
}

.contact-details span {
    font-size: 16px;
    color: #26292FCC;
    font-weight: 400;
}

.contact-details span a  {
    font-size: 16px;
    color: #26292FCC;
    font-weight: 400;
}

.contact-form h2,
.contact-details h3 {
    font-weight: bold;
    color: #002d3d;
}



.animated-input {
  position: relative;
  margin-top: 1.5rem;
}

.animated-input input,
.animated-input textarea {
  width: 100%;
  padding: 12px 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: transparent;
  transition: border-color 0.3s ease;
}

.animated-input label {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  background: white;
  padding: 0 5px;
  color: #999;
  pointer-events: none;
  transition: 0.3s ease;
}

.textarea-label label{
    top: 15%;
}

.animated-input input:focus,
.animated-input textarea:focus {
  border-color: #C3D72B;
  outline: none;
  box-shadow: none;
}

.animated-input input:focus + label,
.animated-input input:not(:placeholder-shown) + label,
.animated-input textarea:focus + label,
.animated-input textarea:not(:placeholder-shown) + label {
  top: -4px;
  font-size: 16px;
  color: #26292F;
}

input::placeholder,
textarea::placeholder {
  opacity: 0;
}

.form-control,
textarea.form-control {
    border-radius: 8px;
    border: 1px solid #cfdce6;
    padding: 12px;
}

.contact-box .btn-submit {
  position: relative;
  overflow: hidden;
  background-color: #C3D72B;
  color: #002334;
  border: none;
  padding: 10px 30px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.4s ease;
  margin-top: 40px;
  z-index: 1;
}
.contact-box .btn-submit::before, .subscribe-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #002334;
  transition: left 0.4s ease;
  z-index: 0;
}
.contact-box .btn-submit:hover::before, .subscribe-button:hover::before {
  left: 0;
}
.btn-submit span,.subscribe-button span,
.btn-submit i {
  position: relative;
  z-index: 2;
}
.btn-submit:hover, .subscribe-button:hover { 
  color: #fff;
}

.contact-details i {
    color: #87bb35;
    margin-right: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 20px;
    color: #fff;
    background-color: #C3D72B;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Optional platform-specific colors */
.social-icon.facebook:hover {
    background-color: #3b5998;
}

.social-icon.twitter:hover {
    background-color: #1da1f2;
}

.social-icon.instagram:hover {
    background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #962fbf);
}

.social-icon.linkedin:hover {
    background-color: #0077b5;
}

.social-icon.youtube:hover {
    background-color: #ff0000;
}

.contact-info {
    display: flex;
}

.contact-info .call-icon {
    font-size: 24px;
    color: #0d6efd;
    margin-right: 15px;
}

.contact-info .contact-details {
    font-size: 16px;
    color: #333;
}

/* Footer CSS */
.footer {
    background: linear-gradient(to bottom, #002437, #034065);
    color: #EFEFEF;
    padding: 40px 20px;
    font-size: 18px;
}

.footer a {
    color: #EFEFEF;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: none;
}

.footer h6 {
    color: #D0D0D0;
    font-size: 18px;
    font-weight: 400;
}

.footer .social-icons {
    display: flex;
    justify-content: center;
    gap: 0px;
    margin-top: 0;
}

.footer .social-icons .icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

.footer .social-icons .icon::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    background: #fff;
    transform: rotate(45deg) scale(0);
    transition: transform 0.4s ease;
    z-index: 0;
    border-radius: 50%;
}

.footer .social-icons .icon:hover::before {
    transform: rotate(45deg) scale(1);
}

.footer .social-icons .icon i {
    position: relative;
    z-index: 1;
    transition: 0.4s ease;
}

.footer .social-icons .facebook:hover {
    color: #3b5998;
}

.footer .social-icons .instagram:hover {
    color: #e4405f;
}

.footer .social-icons .x:hover {
    color: #000;
}

.footer .social-icons .linkedin:hover {
    color: #0077b5;
}

.footer .social-icons .youtube:hover {
    color: #ff0000;
}

.subscribe-input {
    border-radius: 25px;
    border: none;
    padding: 10px 20px;
    width: 100%;
    max-width: 400px;
    outline: none;
    border: none;
    font-size: 20px;
}

.subscribe-button {
    position: relative;
    overflow: hidden;
    background-color: #d6e13e;
    color: #002334;
    font-size: 20px;
    font-weight: 500;
    border: none;
    border-radius: 50px;
    padding: 10px 30px;
    transition: background-color 0.4s ease;
    z-index: 1;
}
 
.footer-logo {
    font-size: 2.5rem;
    font-weight: 600;
}

.footer-logo img, .copyright-div {
    opacity: 0.8;
}

.footer-logo span {
    font-family: 'Georgia', serif;
    font-style: italic;
}

ul.footer-list li a {
  position: relative;
  display: inline-block;
  color: #EFEFEF;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.3s ease;
  padding-bottom: 5px;
}

ul.footer-list li a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: 0;
  background: linear-gradient(to right, #d6e13e, #d6e13e);
  transition: width 0.4s ease;
}

ul.footer-list li a:hover {
  color: #d6e13e;
  transform: translateY(-2px);
}

ul.footer-list li a:hover::after {
  width: 100%;
}

ul.footer-list li:nth-child(1) a {
  transition-delay: 0s;
}
ul.footer-list li:nth-child(2) a {
  transition-delay: 0.05s;
}
ul.footer-list li:nth-child(3) a {
  transition-delay: 0.1s;
}


/* Responsive Design */
@media (max-width: 576px) {
    .contact-info {
        flex-direction: column;
        text-align: center;
    }

    .contact-info .call-icon {
        margin-bottom: 10px;
    }
}

/* Responsive */

@media (max-width: 768px) {
    .flex-md-row {
        flex-direction: column !important;
    }

    .left-panel {
        border-radius: 0;
        text-align: center;
    }

    .nav-pills {
        flex-direction: row !important;
        justify-content: center;
    }

    .nav-pills .nav-link {
        margin: 0 0.5rem;
        padding: 0.5rem 1rem;
    }

    .nav-pills li {
        width: 100%
    }

}


/* Shared dropdown styling */
.dropdown-menu {
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    background-color: #f8f9fa;
    transition: all 0.3s ease;
    z-index: 1000;
    position: absolute;
    border-color: #A0B134;
}

.dropdown-menu .dropdown-item {
    padding: 10px 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

/* Dropdown item hover styling */
.dropdown-menu .dropdown-item:hover {
    background-color: #eaf6ff;
    border-left: 3px solid #A0B134;
    color: #ff0000;
}

/* === Hover dropdown only on desktops (≥992px) === */
@media (min-width: 992px) {

    .hover-dropdown:hover>.dropdown-menu,
    .hover-dropdown:focus-within>.dropdown-menu {
        display: block;
        opacity: 1;
        transform: translateY(0);
        animation: fadeInDropdown 0.3s ease-in-out forwards;
        pointer-events: auto;
    }

    .dropdown-menu {
        display: none;
        opacity: 0;
        transform: translateY(10px);
        pointer-events: none;
    }
}

/* Right-side dropdown */
.dropdown-menu.dropdown-right {
    top: 0;
    left: 100%;
    margin-top: 0;
    margin-left: 0.1rem;
    position: absolute;
    display: none;
}

/* Show on hover */
.nav-item.dropdown.hover-dropdown:hover > .dropdown-menu.dropdown-right {
    display: block;
}

@media (min-width: 992px) {
  .hover-dropdown:hover > .dropdown-menu {
    display: block;
  }
}

/* Animation */
@keyframes fadeInDropdown {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* GO to Top Style */
#goTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    font-size: 20px;
    background: linear-gradient(135deg, #A0B134, #C3D72B);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px) scale(0.8);
    transition: all 0.4s ease-in-out;
}

#goTopBtn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

#goTopBtn:hover {
    animation: bounce 0.6s ease;
    background: linear-gradient(135deg, #A0B134, #C3D72B);
}

/* Bouncy effect on hover */
@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* Optional: idle pulse/wiggle animation */
@keyframes pulseSpin {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(3deg) scale(1.05);
    }

    100% {
        transform: rotate(-3deg) scale(1);
    }
}

@media (max-width: 600px) {
    #goTopBtn {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        font-size: 18px;
        display: none;
    }
}

@media only screen and (max-width: 320px) {

}

@media (max-width: 1536px) {
  .slider1 {height: 590px !important;}
  .hero-nupur-main img{right: 10vw;width: 150px;}
  .hero-card {left: 8vw;max-width: 800px;padding: 2rem 0;min-height: 400px;}
  .hero-green-bg-slide2, .hero-green-bg-slide3 {max-width: 50%;}
  .hero-card h1 {font-size: 2.5rem;}
}

@media only screen and (max-width: 375px) {
   html, body {overflow-x: hidden;overflow-y: scroll;-webkit-overflow-scrolling: touch;width: 100%;}
   section{ padding: 2rem 0 !important;}
  .navbar-brand {margin-left: 0;}
  .navbar-brand img {width: 160px;}
  .hero-green-bg{top: 0;max-width: 100%;}
  .hero-nupur-main img{right: 10vw;width: 150px;}
  .hero-card{padding: 1rem 0;left: 0;max-width: 100%;border-radius: 0 !important;top: 35vh;min-height: 400px;}
  .hero-green-bg-slide2, .hero-green-bg-slide3 {max-width: 100%;}
  .hero-style {height: 90vh;}
  .slider1 {height: 640px !important;}
  .slider1 .dots {bottom: 20px;}
  .slider1 .dot {width: 10px;height: 10px;}
  .slider1 .dot.active {width: 10px;}
  .book-btn {margin-top: 20px;}
  .main-head, .hero-card h1{font-size: 30px;}
  .desk-mb-70{margin-bottom: 20px;}
  .home-about-txt{padding-top: 30px;}
  .contact-wrapper{margin-top: 0px;padding: 0;}
  .tab-pane img{border-radius: 0;}
  .left-panel{width: 100% !important;padding: 1rem !important;border-radius: 0 !important;}
  .client-tab .tab-content {min-height: auto;}
  .tab-number {font-size: 2rem !important;}
  .owl-theme .item{height: 100%;}
  .contact-box h3 {font-size: 26px;}
  .contact-box .reach, .contact-box p, .contact-details span {font-size: 18px;}
  .contact-wrapper {background-image: none;}
  .desk-mt-40 {margin-top: 0 !important;}
  .breadcrumb-hed h1 {font-size: 32px !important;}
  .contact-box {width: 100%;padding: 15px;}
  .cmt-para {font-size: 18px;}
  .physical-report th, .physical-report td {font-size: 16px;}
  .physical-hed {padding: 0 0 25px 0;}
  .gallery a img {width: 100% !important;}
  .profile-content h2 {margin-top: 20px;font-size: 32px}
  .case-studies .team-name {font-size: 16px;}
  .btn-success {font-size: 18px;}
  .home-about-img-section h2 {font-size: 2.5rem;}
  .nav-pills .nav-link {font-size: 24px;}
  .footer a, .copyright, .footer, .footer h6, .subscribe-button {font-size: 18px;}
  .footer {padding: 20px 0;}
  .footer-logo, .copyright-div {margin-top: 0;}
  .contact-box1 img {width: 40px;}
  .google-card {margin-bottom: 15px;}
  .profile-name, .profile-title {margin-left: 0 !important;}
  .about-vision {padding: 0 !important;}
  /* .accordion-left-panel {padding: 20px 0 !important;} */
  .accordion-left-panel .accordion-button {font-size: 18px !important;}
  .dropdown-menu.dropdown-right {position: relative;left: auto;top: auto;margin: 0;}
  .sub-heading {font-size: 26px;}
  .vision {padding: 1rem !important;}
  .mobile-px-4 {padding-left: 1rem !important;padding-right: 1rem !important;}
  .accordion-accordion-right-panel, .nupur-img {padding: 0 1rem !important;}
  .press .gallery-item {margin: 0 0 15px 0 !important;}
  .benefits .nav-tabs .nav-link {padding: 5px 8px !important;font-size: 16px !important;margin-right: 5px !important;}
  .step-title {font-size: 20px;}
  .methodology-img {width: 100% !important;}
}

@media (min-width: 376px) and (max-width: 768px) { 
   html, body {overflow-x: hidden;overflow-y: scroll;-webkit-overflow-scrolling: touch;width: 100%;}
   section{ padding: 2rem 0 !important;}
  .navbar-brand {margin-left: 0;}
  .navbar-brand img {width: 180px;}
  .fixed-nav .navbar-brand img {width: 160px;}
  .hero-green-bg{top: 0;max-width: 100%;}
  .hero-nupur-main img{right: 10vw;width: 150px;}
  .hero-card{padding: 1rem 0;left: 0;top: 35vh;max-width: 100%;border-radius: 0 !important;min-height: 400px;}
  .hero-green-bg-slide2, .hero-green-bg-slide3 {max-width: 100%;}
  .slider1 .dots{bottom: 20px;}
  .slider1 .dot {width: 10px;height: 10px;}
  .slider1 .dot.active {width: 10px;}
  .hero-style {height: 73vh;}
  .slider1 {height: 680px !important;}
  .book-btn {margin-top: 20px;}
  .main-head, .hero-card h1{font-size: 30px;}
  .desk-mb-70{margin-bottom: 20px;}
  .home-about-txt{padding-top: 30px;}
  .contact-wrapper{margin-top: 0px;padding: 0;}
  .tab-pane img{border-radius: 0;}
  .left-panel{width: 100% !important;padding: 1rem !important;border-radius: 0 !important;}
  .client-tab .tab-content {min-height: auto;}
  .tab-number {font-size: 2rem !important;}
  .owl-theme .item{height: 100%;}
  .contact-box h3 {font-size: 26px;}
  .contact-box .reach, .contact-box p, .contact-details span {font-size: 18px;}
  .contact-wrapper {background-image: none;}
  .desk-mt-40 {margin-top: 0 !important;}
  .breadcrumb-hed h1 {font-size: 32px !important;}
  .contact-box {width: 100%;padding: 15px;}
  .cmt-para {font-size: 18px;}
  .physical-report th, .physical-report td {font-size: 14px;}
  .physical-hed {padding: 0 0 10px 0;}
  .gallery a img {width: 100% !important;}
  .profile-content h2 {margin-top: 20px;font-size: 32px}
  .case-studies .team-name {font-size: 16px;}
  /* Right-side dropdown */
    .dropdown-menu.dropdown-right {
        position: relative;
        left: auto;
        top: auto;
        margin: 0;
    }
  .nav-pills .nav-link {font-size: 24px;}
  .home-about-img-section h2 {font-size: 2.5rem;}
  .footer a, .copyright, .footer, .footer h6, .subscribe-button, .btn-success {font-size: 18px;}
  .footer {padding: 20px 0;}
  .footer-logo, .copyright-div {margin-top: 0;}
  .google-card {margin-bottom: 15px;}
  .contact-box1 img {width: 40px;}
  .profile-name, .profile-title {margin-left: 0 !important;}
  .about-vision {padding: 0 !important;}
  /* .accordion-left-panel {padding: 20px 0 !important;} */
  .accordion-left-panel .accordion-button {font-size: 18px !important;}
  .vision {padding: 1rem !important;}
  .sub-heading {font-size: 26px;}
  .mobile-px-4 {padding-left: 1rem !important;padding-right: 1rem !important;}
  .accordion-accordion-right-panel, .nupur-img {padding: 0 1rem !important;}
  .press .gallery-item {margin: 0 0 15px 0 !important;}
  .benefits .nav-tabs .nav-link {padding: 5px 8px !important;font-size: 16px !important;margin-right: 5px !important;}
  .step-title {font-size: 20px !important;}
  .methodology-img {width: 100% !important;}
}

@media (min-device-width:769px) and (max-device-width:1024px) {
    html, body {overflow-x: hidden;width: 100%;}
    .hero-style {height: 72vh;}
    .hero-nupur-main img{right: 10vw;width: 250px;}
    .hero-green-bg{top: 0%;}
    .testimonial-slide{height: 220px;}
    .dots{bottom: -15px;}
    .contact-wrapper {padding: 0;}
}



/* About Dr. Nupur */
    .bg-abt {
        background-color: #F6F6F6;
    }
    .vision {
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

   .nupur-img {
        padding: 0;
    }

    .profile-card {
      background: #F0F0F0;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .profile-img {
      height: 579px;
      object-fit: cover;
      width: 100%;
      border-radius: 15px 0 0 0px;
    }

    .profile-content {
      padding: 30px;
    }

    .profile-content h2 {
        /* font-size: 36px;
        color: #01496B;
        font-weight: 600; */
        margin-bottom: 30px;
        }
    .profile-content p {
        font-size: 16px;
        font-weight: 400;
        color: #282828;
    }
    .profile-name {
        font-size: 18px;
        font-weight: 700;
        color: #282828;
        margin-top: 15px;
        margin-bottom: 0px;
        padding: 0 15px;
        margin-left: 15px;
    }

    .profile-title {
        color: #232323;
        font-size: 18px;
        font-weight: 400;
        padding: 0 15px;
         margin-left: 15px;
    }
    .profile-card .col-md-8 {
        min-height: 100%;
    }

    @media (max-width: 768px) {
       .profile-img {
            height: auto;
            border-radius: 15px 15px 0 0;
        }
        .profile-content{padding: 5px;}
    }

    .cor-hed {
        text-align: center;
    }

    /* .cor-hed h2 {
        font-size: 36px;
        font-weight: 600;
        color: #01496B; 
        margin-bottom: 20px; 
    } */

    .cor-hed p {
        font-size: 28px;
        font-weight: 400;
        color: #282828;
        margin-bottom: 40px;
    }

    .card-wrapper {
        background: #f8f9fa;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

    .accordion-left-panel {
        padding: 20px;
        background-color: #fff;
    }

    .accordion-left-panel .accordion-button {
        font-weight: 700;
        font-size: 20px;
        color: #024769;
        background: transparent;
        border-bottom: 1px solid #E6EBED;
        padding: 16px 0;
    }

    /* .accordion-left-panel .accordion-button:last-child {
        border-bottom: none;
    } */

    .accordion-left-panel .accordion-button:focus {
        box-shadow: none;
    }

    .accordion-left-panel .accordion-body {
        font-weight: 400;
        font-size: 16px;
        color: #3A3A3A;
    }

    .accordion-accordion-right-panel {
        padding: 0;
    }

    .accordion-right-panel img {
      object-fit: cover;
      width: 100%;
      height: 100%;
      border-radius: 0 15px 15px 0;
    }

    @media (max-width: 768px) {
      .accordion-right-panel img {
        height: auto;
        border-radius: 0 0 15px 15px;
      }
    }

    .breadcrumb-hed {
        text-align: center;
    }

    .breadcrumb-hed h1 {
        font-size: 64px;
        font-weight: 700;
        color: #002334;
    }

    .breadcrumb-hed span {
        font-weight: 400;
        color: #01496B;
        font-style: italic;
    }

    .breadcrumb-list .breadcrumb-item a {
        font-size: 16px;
        font-weight: 400;
        color: #01496B;
    }

    .breadcrumb-list .breadcrumb li.active {
        font-size: 16px;
        font-weight: 800;
        color: #01496B;
    }

    .breadcrumb-list .breadcrumb li i {
        font-size: 16px;
        color: #01334C;
        padding: 0 10px;
    }

    .home-icon {
        font-size: 20px;
        color: #01496B;
    }

    /* Achievements page code here */
    .milestones-tab .nav-link {
        font-size: 24px;
        font-weight: 500;
        color: rgba(0, 0, 0, 0.5);;
    }

    .milestones-tab .nav-link.active {
        font-weight: 600;
        color: #01496B;
        background-color: #F5F5F5;
        border: 1px solid #01496B;
    }

    .gallery {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        /* justify-content: center; */
    }
    .gallery a img {
        max-width: 100%;
        height: auto;
        border-radius: 4px;
        width: 190px;
        transition: transform 0.3s ease;
        border: 1px solid #ddd;
        padding: 2px;
    }
    .gallery a img:hover {
        transform: scale(1.05);
    }
    .fancybox__container {z-index: 22222;}



/* Contact Us Page  */
.contact-page .contact-box1 {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-page .icon {
    font-size: 24px;
    color: #002B3C;
}

.contact-page .icon-highlight {
    color: #C6ED2F;
}

.contact-page .contact-title {
    font-weight: 700;
    color: #002B3C;
}

.contact-text a {
    font-weight: 400;
    color: #282828;
}

/* background-image: url(../images/breadcrumb-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover; */

@media (max-width: 767.98px) {
    .contact-page .box-wrapper {
        border-left: none;
        border-top: 1px solid #ccc;
        padding-top: 20px;
    }

    .contact-page .box-wrapper:first-child {
        border-top: none;
        padding-top: 0;
    }
}


.highlight {
    padding: 5px;
    font-style: italic;
    font-size: 20px;
    font-weight: 500;
}

.portals .card {
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
    border-radius: 0 0 10px 10px;
    padding: 10px;
}

.portals .card:hover {
    transform: translateY(-5px);
}

/* .portals .card-img-top {
    height: 200px;
    object-fit: cover;
} */

.portals .card-text {
    font-weight: 500;
    text-align: center;
    font-size: 14px;
}

.portals .section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    font-weight: bold;
    color: #333;
}

.press .card-title {
    font-size: 14px;
    font-weight: 500;
}









.press .press-gallery {
    column-count: 1;
    column-gap: 1rem;
}

@media (min-width: 576px) {
    .press .press-gallery {
    column-count: 2;
    }
}

@media (min-width: 768px) {
    .press .press-gallery {
    column-count: 3;
    }
}

@media (min-width: 992px) {
    .press .press-gallery {
    column-count: 6;
    }
}

.press .gallery-item {
    break-inside: avoid;
    margin-bottom: 2rem;
    cursor: pointer;
    transition: transform 0.3s;
    border: 1px solid #ddd;
    border-radius: 0 0 8px 8px;
    margin: 10px 10px 32px 10px;
    padding: 10px;
    transition: transform 0.5s ease, background-color 0.5s ease;
}

.press .gallery-item:hover {
    transform: scale(1.02);
    background-color: #000;
}

.press .gallery-item img {
    width: 100%;
    /* border-radius: 0 0 8px 8px; */
    /* border: 1px solid #ddd; */
}

.press .gallery-title {
    margin-top: 0.5rem;
    font-weight: 500;
    font-size: 1rem;
    color: #333;
    text-align: center;
    background-color: #e7e7e7;
}











.healthchannels .video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.healthchannels .video-container:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.healthchannels .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Ailments Treatments CSS Start here  */
.treatments-box {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 20px;
    margin-bottom: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.treatments-box:hover {
  transform: scale(1.03);
}

.treatments-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 15px;
}

.treatments-box .image-hover-wrapper {
  overflow: hidden;
  border-radius: 6px;
  position: relative;
}

.treatments-box .hover-zoom {
  transition: transform 0.4s ease;
}

.treatments-box .image-hover-wrapper:hover .hover-zoom {
  transform: scale(1.05);
}

/* Gradient + slide up effect */
.treatments-box .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(195, 215, 43, 0.9), rgba(195, 215, 43, 0));
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.4s ease;
  color: #000;
  font-weight: 600;
  font-size: 1.1rem;
  text-align: center;
  border-radius: 6px;
  cursor: pointer;
}

.treatments-box .image-hover-wrapper:hover .overlay {
  transform: translateY(0);
  opacity: 1;
}

.treatments-box .overlay-text {
  z-index: 2;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.6);
}
.treatments-box .overlay-btn {
  border-radius: 50px;
  padding: 4px 18px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
  background-color: #000;
  color: #fff;
  border: none;
}

.treatments-box .overlay-btn:hover {
  background-color: #333;
  color: #fff;
  transform: translateY(-2px);
}

.treatments-box .service-box h5 {
    color: #007bff;
    font-weight: 600;
}

.treatments-box .service-box p {
    
}

.treatments-box .learn-more-btn {
    margin-top: auto;
}

.treatments-box .learn-more-btn {
  transition: all 0.3s ease;
  border-radius: 50px;
  padding: 5px 16px;
  font-size: 1rem;
  font-weight: 500;
  border: 1px solid #C3D77C;
  color: #000;
}

.treatments-box .learn-more-btn:hover {
  background-color: #C3D77C;
  color: #fff;
  box-shadow: 0 4px 10px rgba(23, 162, 184, 0.3);
  transform: translateY(-2px);
}




/* Unique background images */
.offer-slider .slick-slide {
    padding: 0 7px; /* 10px space on left/right of each slide */
    box-sizing: border-box;
}

/* Style and position the arrows */
/* Basic arrow styling */
.slick-prev,
.slick-next {
    position: absolute;
    bottom: 10px;
    top: auto;
    background-color: rgba(0, 0, 0, 0.45);
    color: #fff;
    border: none;
    padding: 10px 14px;
    font-size: 16px;
    z-index: 2;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Place them side by side, centered below the slider */
.slick-prev {
    left: 50%;
    transform: translateX(-60px);
}

.slick-next {
    left: 50%;
    transform: translateX(10px);
}

.slick-next:before, .slick-prev:before {display: none;}
.slick-prev i, .slick-next i {
    background-color: #C3D72B ;
    color: #fff;
    border: none;
    padding: 15PX;
}

.offer-slider {
    position: relative;
    padding-bottom: 60px;
    overflow: hidden;
}

.offer-banner {
    position: relative;
    height: 253px;
    overflow: hidden;
    border: 1px solid #fff;
    background-size: cover;
    background-position: center;
    transition: all 0.5s ease;
    border-radius: 10px;
}

.offer-banner:hover {
    background-size: 110%;
}

/* Overlay effect at the bottom */
.offer-banner .overlay {
    position: absolute;
    bottom: 0;
    /* Align overlay to the bottom */
    left: 0;
    width: 100%;
    height: 20%;
    /* Adjust this value for the height of the overlay */
    background: rgba(0, 0, 0, 0.6);
    /* Semi-transparent black background */
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Apply overlay on hover */
.offer-banner:hover .overlay {
    opacity: 1;
}

.offer-content {
    transition: transform 0.4s ease, opacity 0.4s ease;
    transform: translateY(10px);
    opacity: 0;
}

.offer-banner:hover .offer-content {
    opacity: 1;
    transform: translateY(0);
}

.offer-content h6 {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.offer-content h2 {
    font-size: 1.3rem;
    font-weight: bold;
    margin: 10px 0 0;
}

.offer-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
}

.btn-outline-light {
    border-radius: 0;
    padding: 6px 18px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: #fff;
    color: #000;
    transform: translateY(-2px);
}


@media (max-width: 576px) {
    .offer-content {
    padding: 15px;
    text-align: center;
    }
    .offer-content h2, .offer-content h3 {
    font-size: 1.1rem;
    }
}


/* Corporate Wellness programs css start here*/
.corporate .gallery a img {
    width: 100%;
}

.step-box {
  border: 1px solid #c1e2c1;
  /* border-left: 3px solid #01496B; */
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 8px rgba(0, 128, 0, 0.05);
}

.step-box h6, .myth h6 {
    font-size: 18px;
    color: #01496B;
}

.step-title {
  color: #01496B;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 22px;
} 

.energy-icon {
    color: #fff;
    background: #fff;
    border-radius: 50%;
    width: 65px;
    height: 65px;
    text-align: center;
    /* padding: 10px; */
    margin-right: 15px;
    vertical-align: top;
}

.energy-icon img {
    width: 45px;
}

.desk-pdlr-0 {
    padding-left: 0;
    padding-right: 0;
}


.benefits .nav-tabs {
    border-bottom: none;
    /* justify-content: center; */
}

.benefits .nav-tabs .nav-link {
    margin: 0;
    border: none;
    /* border-radius: 50px; */
    color: #555;
    /* background-color: #e9ecef; */
    transition: all 0.3s ease;
    padding: 10px 25px;
    font-weight: 500;
    font-size: 20px;
    margin-right: 10px;
}

.benefits .nav-tabs .nav-link:hover {
    background-color: #d0d7de;
    color: #000;
}

.benefits .nav-tabs .nav-link.active {
    background: linear-gradient(135deg, #A0B134, #C3D72B);
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.benefits .tab-content {
    background: #ffffff;
    padding: 25px;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    margin-top: 0px;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
}

.benefits .tab-pane {
    animation: fadeIn 0.5s ease-in-out;
}

.methodology-img {width: 60%;}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}


.benefits-procedure .flow-step {
    /* background-color: #fff; */
    padding: 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 650px;
    margin: 0 auto;
}

.benefits-procedure .title {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    background-color: #0f8844;
    padding: 10px 13px;
    text-align: center;
}

.benefits-procedure .subtitle {
    font-size: 16px;
    font-weight: bold;
    /* margin-top: 10px; */
}

.benefits-procedure .section {
    width: 100%;
    padding: 15px;
    background-color: #d9edca;
    color: #000;
    font-size: 16px;
}

.benefits-procedure .section ul li {
    color: #000;
    font-size: 16px;
    font-weight: 500;
}

.benefits-procedure .arrow {
    text-align: center;
    font-size: 30px;
    color: #0a79ad;
}