/* Reset and Basic Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Body and Gradient Background */
body, html {
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, #b76e79, #5b3518); /* Horizontal full-page gradient */
    color: #fff;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* Top Align Pages */
.top-align-page {
    justify-content: flex-start; /* Align content to the top */
    padding-top: 20px; /* Space from the header */
    align-items: flex-start; /* Aligns content to the left */
}

/* Transparent Header Styling */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 1000;
    background-color: transparent; /* Fully transparent header */
}

.header-logo {
    width: 120px; /* Smaller logo for the header */
    height: auto;
}

/* Top Right Menu within Header */
.menu {
    color: #fff;
    font-size: 1.2em;
    cursor: pointer;
    position: relative;
}

.menu-dropdown {
    display: none; /* Hidden by default */
    position: absolute;
    top: 40px;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 10px;
    border-radius: 5px;
    list-style-type: none;
    z-index: 1001;
}

.menu-dropdown li {
    margin: 10px 0;
}

.menu-dropdown a {
    color: #fff;
    text-decoration: none;
    font-size: 1em;
}

.menu-dropdown a:hover {
    text-decoration: underline;
}

/* Centered Layout for Home Page (index.html) */
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full viewport height to center vertically */
    text-align: center;
    padding-top: 80px; /* Extra padding to prevent overlap with header */
}

.logo-image {
    margin-top: -250px; /* Adjust this value as needed to move it up */
	width: 600px; /* Larger logo for the main section */
    max-width: 100%;
}

.tagline {
    font-size: 1.2em;
    font-weight: 500;
    margin-top: 10px;
    color: #fff;
}

/* Footer Icons */
footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.footer-icons {
    display: flex;
    gap: 30px;
}

.icon {
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-size: 0.9em;
    font-weight: 500;
}

.icon img {
    width: 20px;
    margin-right: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-logo {
        width: 80px; /* Smaller logo for smaller screens */
    }
    .logo-image {
        width: 300px; /* Adjust for smaller screens */
    }
    .tagline {
        font-size: 1em;
    }
    .footer-icons {
        flex-direction: column;
        gap: 15px;
    }
}

/* --- Additional CSS for About Us and Other Pages --- */

/* Section Title */
.section-title {
    font-size: 2em;
    text-align: center;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: bold;
}

/* About Section Layout */
.about-section {
    padding: 40px 20px;
    color: #ffffff;
    text-align: left;
    line-height: 1.6;
    position: relative;
    max-width: 800px;
    margin: 60px auto;
}

/* Profile Image Positioning */
.profile-image {
    width: 300px; /* Adjust as needed */
    height: auto;
    border-radius: 50%;
    border: 5px solid #fff;
    float: right;
    margin: 0 0 10px 20px; /* Space between image and text */
}

/* About Text */
.about-text p {
    margin-bottom: 15px;
}

/* Pricing Section Layout */
.pricing-section {
    padding: 40px 20px;
    text-align: center;
    color: #ffffff;
    max-width: 1000px;
    margin: 80px auto; /* Spacing from the header */
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.pricing-category {
    text-align: left;
}

.pricing-category h2 {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #ffffff;
}

.pricing-category p {
    font-size: 1em;
    margin: 5px 0;
    color: #ffffff;
}

/* Pricing Note Section */
.pricing-note {
    margin-top: 40px;
    font-size: 1em;
    text-align: left;
}

.pricing-note p {
    font-weight: bold;
    margin-bottom: 10px;
}

.pricing-note ul {
    list-style-type: disc;
    padding-left: 20px;
    text-align: left;
}

.pricing-note li {
    margin-bottom: 5px;
}

/* Main Content Area */
.main-content {
    max-width: 1000px;
    margin: 80px auto;
    padding: 20px;
    text-align: center;
}

/* Section Title for Treatments */
.section-title {
    font-size: 2em;
    color: #ffffff;
    margin-bottom: 40px;
    font-weight: bold;
}

/* Treatments Grid Layout - Two Columns on Larger Screens */
.treatments-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    text-align: center;
}

/* Individual Treatment Item Styling */
.treatment-item {
    color: #ffffff;
}

.treatment-item h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.treatment-item h2 a {
    color: #ffffff;
    text-decoration: none;
}

.treatment-item h2 a:hover {
    text-decoration: underline;
}

.treatment-item h3 {
    font-size: 1.2em;
    font-weight: normal;
    margin-bottom: 10px;
    color: #ffffff;
}

.treatment-item p {
    font-size: 0.9em;
    color: #ffffff;
}

/* Responsive Layout for Smaller Screens */
@media (max-width: 768px) {
    .treatments-grid {
        grid-template-columns: 1fr; /* Switch to single-column layout on smaller screens */
    }
}
/* Service Page Title and Subtitle */
.service-title {
    font-size: 2.5em;
    text-align: center;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: bold;
}

.service-subtitle {
    font-size: 1.5em;
    text-align: center;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: normal;
}

/* Introduction Paragraph */
.service-intro {
    font-size: 1em;
    color: #ffffff;
    text-align: left;
    max-width: 800px;
    margin: 0 auto 20px auto;
    line-height: 1.6;
}

/* Section Heading */
.section-heading {
    font-size: 1.3em;
    color: #ffffff;
    text-align: left;
    font-weight: bold;
    max-width: 800px;
    margin: 0 auto 10px auto;
}

/* Benefits List */
.benefits-list {
    max-width: 800px;
    margin: 0 auto 20px auto;
    padding-left: 20px;
    text-align: left;
    color: #ffffff;
}

.benefits-list li {
    margin-bottom: 10px;
    font-size: 1em;
    line-height: 1.6;
}

/* Conclusion Text */
.conclusion-text {
    font-size: 1em;
    color: #ffffff;
    text-align: left;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

/* Additional Styling for Polynucleotides Page */

/* Description Text for Spacing Adjustment */
.description-text {
    text-align: left;
    max-width: 800px;
    margin: 10px auto 30px auto; /* Adds space between this text and the next heading */
    line-height: 1.6;
    color: #ffffff;
}

/* Spacing for Benefits Section Heading */
.benefits-heading {
    margin-top: 20px;
    font-weight: bold;
    text-align: left;
}

.treatment-price {
    font-weight: bold;
    color: #ffffff; /* Adjust color as needed */
    margin-top: 10px;
}
/* Contact Form Styling */
.contact-form {
    max-width: 600px;
    margin: 20px auto;
    background: rgba(255, 255, 255, 0.1); /* Semi-transparent background */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.contact-form label {
    color: #ffffff;
    font-weight: bold;
    margin-top: 10px;
    display: block;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    color: #333;
}

.contact-form button {
    width: 100%;
    padding: 12px;
    background: #25d366;
    border: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: #1ebd54;
}

/* Set up the main flex layout on the body */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensures the body fills the entire viewport height */
    margin: 0;
}

.container {
    flex: 1; /* Allows the container to expand and take up available space */
    padding-bottom: 20px; /* Ensures there's a bit of space above the footer */
}

/* Footer styles */
footer {
    background-color: transparent;
    padding: 20px;
    text-align: center;
    color: #ffffff;
    width: 100%;
    margin-top: auto; /* Pushes the footer to the bottom if there’s not enough content */
}


/* Remove any sticky positioning for footer */
@media (max-width: 768px) {
    footer {
        position: relative; /* Ensures the footer does not overlap content */
        bottom: auto;
    }
}


/* Updated .cta-button styling */
.cta-button {
    display: inline-block;
    padding: 12px 24px;
    margin-top: 20px;
    background-color: #b76e79; /* Solid color for visibility */
    color: #FFFFFF;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    text-align: center;
    transition: background-color 0.3s ease; /* Basic hover effect */
}

@media (max-width: 768px) {
    .cta-button {
        display: inline-block !important;
        padding: 10px 20px !important;
        background-color: #b76e79 !important; /* Solid background for mobile */
        color: #FFFFFF !important;
        font-size: 1em !important;
        font-weight: bold !important;
        text-decoration: none !important;
        border-radius: 8px !important;
        text-align: center !important;
    }
}

.cta-button:hover {
    background-color: #914c56; /* Slightly darker color on hover */
}

.cta-button {
    margin-top: 80px; /* Increase this value to move the button further down */
}



/* Indent list items in the "Our Services" section */
.about-section ul {
    padding-left: 20px; /* Indents the entire list */
    list-style-type: disc;
    margin-bottom: 15px; /* Matches the spacing above and below the list */
}

.about-section ul li {
    margin-bottom: 8px; /* Keeps space between items */
    padding-left: 10px;
}

/* Modern form styling */
.contact-form {
    max-width: 600px;
    margin: 20px auto;
    background: rgba(255, 255, 255, 0.1); /* Semi-transparent background */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.contact-form label {
    color: #ffffff;
    font-weight: bold;
    margin-top: 10px;
    display: block;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #fff;
    color: #333;
    font-size: 1em;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #b76e79; /* Highlight color */
    outline: none;
}

.contact-form button {
    width: 100%;
    padding: 12px;
    background: #b76e79;
    border: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    transition: background 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.contact-form button:hover {
    background: #914c56;
}

/* Styling for direct contact buttons with icons */
.direct-contact-options {
    text-align: center;
    margin-top: 20px;
}

.direct-contact-options p {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #ffffff;
}

.social-button {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    margin: 10px;
    background-color: #b76e79;
    color: #ffffff;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.social-button:hover {
    background-color: #914c56;
}

.icon-image {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

/* Location styling in header */
.location-header {
    color: #ffffff;
    font-size: 1em;
    font-weight: bold;
    margin-left: 0px; /* Adjust for space around logo */
}

.calculator-link {
    margin-top: 20px;
    text-align: center;
    font-size: 1.1em;
    color: #ffffff;
}

.calculator-link a.cta-link {
    color: #FF6584;
    font-weight: bold;
    text-decoration: none;
}

.calculator-link a.cta-link:hover {
    text-decoration: underline;
}

/* Container to apply gradient background */
.table-container {
    background: linear-gradient(90deg, #b76e79, #5b3518);
    padding: 20px;
    border-radius: 8px;
    margin: 20px auto;
    max-width: 1000px; /* Limit width for larger screens */
}

/* Service Pricing Table Styling */
.service-pricing-table {
    width: 100%;
    border-collapse: collapse;
    color: #ffffff;
    text-align: left;
    font-size: 1em;
}

.service-pricing-table th, .service-pricing-table td {
    padding: 12px;
    border: 1px solid #ffffff;
    background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent background for readability */
}

.service-pricing-table th {
    background-color: rgba(255, 255, 255, 0.2); /* Slightly opaque header */
    font-weight: bold;
}

.service-pricing-table tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.1); /* Alternating row color */
}

.service-pricing-table tr:hover {
    background-color: rgba(255, 255, 255, 0.15); /* Hover effect */
}


