@import url('https://fonts.googleapis.com/css2?family=Bree+Serif&family=Caveat:wght@400;700&family=Lobster&family=Monoton&family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display+SC:ital,wght@0,400;0,700;1,700&family=Playfair+Display:ital,wght@0,400;0,700;1,700&family=Roboto:ital,wght@0,400;0,700;1,400;1,700&family=Source+Sans+Pro:ital,wght@0,400;0,700;1,700&family=Work+Sans:ital,wght@0,400;0,700;1,700&display=swap');

/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    scroll-behavior: smooth;
}

a {
    text-decoration: none !important;
    font-family: 'Work Sans', sans-serif;
}

/* Typography */
.main-headings {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    font-family: 'Roboto', sans-serif;
}

.ayur-brahma-name {
    color: #06743b;
    font-size: 32px;
    font-family: 'Roboto', sans-serif;
    font-weight: 800;
    display: inline-block;
    position: relative;
}

.ayur-brahma-name:after {
    position: absolute;
    width: 30%;
    height: 3px;
    background-color: #06743b;
    bottom: -10px;
    left: 0;
}

.descriptions {
    font-size: 18px;
    line-height: 1.8;
    color: #17544d;
    font-family: 'Roboto', sans-serif;
}

.bold-text {
    font-weight: bold;
}

.text-black {
    color: black;
}

/* Buttons & Links */
.green-button {
    background-color: #00b530;
    color: white;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 10px 25px;
    border-radius: 25px 25px 0px 25px;
}

.green-button:hover {
    background-color: #009a29;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 181, 48, 0.3);
}

.btn-book-now {
    background-color: #00b530;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 10px 25px;
    border-radius: 30px;
    animation: pulse 2s infinite;
}

.btn-book-now:hover {
    background-color: #009a29;
    animation: none;
}

.top-link {
    padding: 10px 15px;
    color: gray;
    font-weight: 700;
    transition: all 0.3s ease;
}

.top-link:hover {
    background-color: #00b530;
    color: white;
    border-radius: 4px;
    transition-duration: 0.5s;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(13, 110, 253, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

.floating-animation {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

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

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

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Navigation Styles */
.navbar-fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-link {
    color: white !important;
}

.navbar-nav .active {
    background-color: #00ff0077;
    border-radius: 10px;
    margin: 5px;
}

.nav-link:hover {
    background-color: #339933;
    border-radius: 10px;
}

.logo-image {
    height: 50px;
    padding-left: 10px;
}

.logo-image2 {
    height: 70px;
    width: auto;
    margin-left: 44%;
}

.top-hr {
    margin-top: 5px;
    margin-bottom: 10px;
}

/* Carousel Styles */
.carousel-image {
    width: 100%;
    height: 80vh;
    object-fit: cover;
}

.carousel-container {
    margin-top: 120px;
}

.carousel-indicators li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background-color: #fff;
    width: 14px;
    height: 14px;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

/* Images */
.ayur-brahma-image {
    width: 100%;
}

.ayur-brahma-image2 {
    width: 80%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.swarna-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.swarna-image:hover {
    transform: scale(1.02);
}

/* Lists */
.ordered-list {
    list-style-type: disc;
    padding-left: 25px;
}

.list-item {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: black;
    padding: 5px 0;
}

/* Cards */
.services-card {
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
    height: 100%;
}

.services-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.services-card-image {
    border-radius: 10px;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.services-card-heading {
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: #00b530;
    margin-top: 12px;
}

.services-card-link {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #00b530;
    transition: all 0.3s ease;
}

.services-card-link:hover {
    color: #009a29;
}

/* Philosophy Section Styling */
.vision-container {
    background-color: #f9fbfe;
    position: relative;
    padding: 50px 0;
}

.parallax-bg {
    background-image: url('https://res.cloudinary.com/dqgl7r65l/image/upload/v1731227869/Ayurvedic-Medicine-Manufacturer-in-Guwahati_yu8zxt.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.parallax-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
}

.philosophy-heading {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #06743b;
    position: relative;
}

.heading-underline {
    height: 3px;
    width: 80px;
    background-color: #06743b;
    margin-bottom: 30px;
}

.vision-card {
    background-color: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid #e5eaf4;
    height: 100%;
}

.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #00b530;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(6, 116, 59, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.vision-card-image {
    font-size: 50px;
    color: #00b530;
}

.vision-card-heading {
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #323f4b;
    margin-top: 15px;
    margin-bottom: 15px;
}

.vision-card-para {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: #555;
}

/* Contact Form */
.enquire-icon {
    background-color: #00b530;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 10px;
    border-radius: 10px;
}

.contact {
    padding: 20px;
    background-color: #f5f9f8;
    border-radius: 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-heading {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.contact-para {
    font-size: 18px;
    margin-bottom: 0;
}

.form-container {
    background-color: #f5f9f8;
    padding: 25px;
    border-radius: 12px;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

label {
    font-size: 16px;
    font-family: sans-serif;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
    display: block;
}

input[type="text"],
input[type="tel"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border 0.3s ease;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
    border-color: #00b530;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 181, 48, 0.2);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-success-enquire {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    background-color: #00b530;
    border: none;
    transition: all 0.3s ease;
}

.btn-success-enquire:hover {
    background-color: #009a29;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 181, 48, 0.3);
}

.enquire-heading2 {
    font-family: 'Bree Serif', serif;
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

/* Contact Information Section */
.contact-info-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease;
}

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

.info-section-title,
.form-section-title {
    color: #333;
    font-size: 1.8rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
    border-bottom: 1px solid #eaeaea;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #eaeaea;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    background: #27ae60;
    color: white;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(39, 174, 96, 0.2);
}

.contact-details {
    flex-grow: 1;
    padding: 10px;
}

.contact-details h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.contact-details p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.contact-details a {
    color: #27ae60;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #219653;
    text-decoration: underline;
}

/* Map styling */
.map-container {
    margin-top: 30px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.map-link {
    display: block;
    position: relative;
}

.map-overlay {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(39, 174, 96, 0.9);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
}

.map-overlay:hover {
    background: rgba(39, 174, 96, 1);
}

/* Contact Form */
.contact-form-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 30px;
    height: 100%;
}

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

.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.contact-form .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s;
}

.contact-form .form-control:focus {
    border-color: #27ae60;
    box-shadow: 0 0 0 2px rgba(39, 174, 96, 0.2);
    outline: none;
}

.contact-form textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.form-submit {
    margin-top: 25px;
    text-align: right;
}

.submit-btn {
    background: linear-gradient(to right, #27ae60, #2ecc71);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(39, 174, 96, 0.2);
}

.submit-btn:hover {
    background: linear-gradient(to right, #219653, #27ae60);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(39, 174, 96, 0.3);
}

.submit-btn:active {
    transform: translateY(1px);
}

/* Treatment Section Styles */
.treatment-section {
    border-radius: 15px;
    background-color: #fcfcfc;
}

.treatment-heading {
    color: #00b530;
    font-family: 'Roboto', sans-serif;
    font-size: 28px;
    margin-bottom: 20px;
    border-bottom: 2px solid #00b530;
    padding-bottom: 10px;
}

.treatment-subheading {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    color: #333;
    margin-top: 15px;
    margin-bottom: 10px;
}

.treatment-image {
    width: 100%;
    border-radius: 10px;
    height: auto;
    object-fit: cover;
}

.treatment-list {
    padding-left: 10px;
    margin-bottom: 15px;
}

.treatment-list li {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    margin-bottom: 8px;
    color: #555;
}

/* Treatment Details */
.treatment-detail {
    padding: 10px;
    background-color: #f5f9f8;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.treatment-title {
    font-size: 28px;
    color: #00b530;
    margin-bottom: 15px;
    font-weight: bold;
}

.treatment-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Booking Form Styles */
.booking-form {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
}

.booking-info {
    background-color: #f0f8ff;
    border-radius: 15px;
}

.booking-info-heading {
    color: #00b530;
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
    margin-bottom: 15px;
    border-bottom: 1px solid #00b530;
    padding-bottom: 10px;
}

.booking-info-list {
    padding-left: 20px;
}

.booking-info-list li {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    margin-bottom: 10px;
    color: #444;
}

.contact-details {
    background-color: #f0fff0;
    border-radius: 15px;
}

/* Book Online */
.package-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    border-left: 5px solid #00b530;
}

.package-title {
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
}

.package-price {
    font-size: 24px;
    color: #00b530;
    font-weight: bold;
}

.package-days {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.package-details {
    font-size: 16px;
    margin-bottom: 5px;
}

/* Footer Styles */
.footer-section {
    background-color: #0d2436;
    color: #959ead;
    font-family: "Roboto", sans-serif;
}

.clinic-logo {
    width: 180px;
    max-width: 100%;
    height: auto;
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 15px;
}

.social-media-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(208, 178, 0, 0.2);
    border-radius: 50%;
    color: #d0b200;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #d0b200;
    color: #fff;
    transform: translateY(-3px);
}

.footer-heading {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #d0b200;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: #959ead;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.footer-links li a i {
    margin-right: 8px;
    font-size: 12px;
    color: #d0b200;
}

.footer-links li a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    margin-bottom: 15px;
    align-items: start;
}

.footer-contact-item i {
    color: #d0b200;
    margin-right: 10px;
    margin-top: 3px;
    width: 16px;
}

.footer-contact-item a {
    color: #959ead;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: #fff;
}

.footer-divider {
    border-color: rgba(149, 158, 173, 0.2);
    margin: 20px 0;
}

.copyright-text,
.privacy-links {
    font-size: 13px;
    margin-bottom: 0;
}

.privacy-links a {
    color: #959ead;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-links a:hover {
    color: #fff;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #00b530;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    z-index: 99;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* Divider */
.divider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60%;
    margin: 0 auto;
}

.divider-line {
    flex-grow: 1;
    height: 1px;
    background-color: #17a2b8;
}

.divider-icon {
    padding: 0 15px;
    color: #17a2b8;
    font-size: 1.2rem;
}

/* Cards for specific sections */
.intro-card,
.benefit-card,
.significance-card {
    border-left: 4px solid #17a2b8;
    transition: all 0.3s ease;
}

.intro-card:hover,
.benefit-card:hover,
.significance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.benefits-list,
.significance-list {
    list-style: none;
    padding-left: 0;
}

.section {
    display: none;
}

.active-section {
    display: block;
}

/* Background Images */
.bg-image-swarna {
    background-color: #f9f9f9;
    min-height: 100vh;
}

.bg-image-about {
    background-color: #f5f9f8;
    min-height: 100vh;
}

/* Section title decorations */
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #27ae60, #2ecc71);
}

.decorative-line {
    width: 150px;
    height: 2px;
    background: #e0e0e0;
    margin: 0 auto 30px;
    position: relative;
}

.decorative-line::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 2px;
    background: #27ae60;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Other container spacing */
.other-container {
    margin-top: 120px;
}

/* Media Queries */
@media (max-width: 992px) {
    .carousel-image {
        width: 100%;
        height: auto;
    }

    .carousel-container {
        margin-top: 75px;
    }

    .other-container {
        margin-top: 75px;
    }

    .logo-image2 {
        margin-left: 20vw;
    }

    .ayur-brahma-name {
        font-size: 36px;
    }

    .descriptions {
        font-size: 20px;
    }

    .list-item {
        font-size: 20px;
    }
}

@media (max-width: 768px) {

    .booking-info,
    .contact-details {
        margin-top: 30px;
    }

    .ayur-brahma-name {
        font-size: 2rem;
    }

    .divider-container {
        width: 90%;
    }

    .section-title {
        font-size: 2rem;
    }

    .info-section-title,
    .form-section-title {
        font-size: 1.5rem;
    }
}