 /*Header navigation section Styling*/
html {
    font-size: 100%;
}

html, body{
    margin:0px ;
    padding: 0px;
    box-sizing: border-box;
    overflow-x: auto; /* Allow horizontal scroll at high zoom for accessibility */
    font-family: Arial, sans-serif;
}
html { box-sizing: border-box; }
*, *::before, *::after { box-sizing: inherit; }

body{
    -ms-overflow-style: none; /* for Internet Explorer, Edge */
    scrollbar-width: none; /* for Firefox */
    overflow-y: scroll; 
  }
  
body::-webkit-scrollbar {
display: none; /* for Chrome, Safari, and Opera */
}
.main-header{
    background:linear-gradient(to right, rgba(0,0,0,0.6), rgba(0,0,0,0.95)),url("./images/hero-background.jpg") no-repeat center ;
    background-size: cover;
    margin-bottom: 0;
}

/* Hero Section styling */
.hero-section {
    padding: 3rem;
    padding-top: 2rem;
    margin-top: 0;
}

.hero-section h1 {
    margin-top: 0;
}

#main-content {
    margin-top: 0;
    padding-top: 0;
}

/* Keep white space between header and hero on company/services pages */

/* Company page hero background - Brand green gradient */
.hero-section.company-hero {
    background: linear-gradient(135deg, #1e8449 0%, #2ecc71 50%, #58d68d 100%);
}

/* Company page section backgrounds - Option B: Modern vivid colorful */
.company-story {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 4rem 0;
}

.company-story h2,
.company-story p {
    color: white;
}

.company-story h2 span {
    color: #38ef7d;
}

.company-mission {
    background: linear-gradient(180deg, #16213e 0%, #1a1a2e 20%, #2d2a4a 50%, #4a3f6b 80%, #667eea 100%);
    color: white;
}

.company-mission h2,
.company-mission h3,
.company-mission p {
    color: white;
}

.company-mission h2 span {
    color: #ffeb3b;
}

.company-mission .card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.company-mission .card-body {
    color: white;
}

.company-why-choose {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.company-why-choose h2,
.company-why-choose h3,
.company-why-choose p {
    color: white;
}

.company-why-choose h2 span {
    color: #38ef7d;
}

.company-commitment {
    background: linear-gradient(180deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    color: white;
}

.company-commitment h2,
.company-commitment h3,
.company-commitment p {
    color: white;
}

.company-commitment h2 span {
    color: #ffeb3b;
}

.company-commitment .alert-info {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.company-commitment .btn-primary {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    border: none;
}

/* ========== SERVICES PAGE STYLES ========== */

/* Services page hero - Deep Teal gradient */
.hero-section.services-hero {
    background: linear-gradient(135deg, #0d4f4f 0%, #0a8f8f 50%, #11b3b3 100%);
}

/* Services Overview - Smooth transition from teal to navy */
.services-overview {
    background: linear-gradient(180deg, #0a6e6e 0%, #0d4a5a 50%, #0f3d4a 100%);
    color: white;
    padding: 4rem 0;
}

.services-overview h2,
.services-overview p {
    color: white;
}

/* Medical Billing - Deep Navy */
.services-billing {
    background: linear-gradient(180deg, #0f3d4a 0%, #1a2d42 100%);
    color: white;
    padding: 4rem 0;
}

.services-billing h2,
.services-billing h3,
.services-billing p,
.services-billing li {
    color: white;
}

.services-billing .fa-check {
    color: #2ecc71 !important;
}

/* Claims Processing - Navy to Purple transition */
.services-claims {
    background: linear-gradient(180deg, #1a2d42 0%, #2d2a4a 50%, #4a3f6b 100%);
    color: white;
    padding: 4rem 0;
}

.services-claims h2,
.services-claims h3,
.services-claims p,
.services-claims li {
    color: white;
}

.services-claims .fa-check {
    color: #38ef7d !important;
}

/* Credentialing - Rich Purple */
.services-credentialing {
    background: linear-gradient(180deg, #4a3f6b 0%, #5a4a7a 50%, #6b5a8a 100%);
    color: white;
    padding: 4rem 0;
}

.services-credentialing h2,
.services-credentialing h3,
.services-credentialing p,
.services-credentialing li {
    color: white;
}

.services-credentialing .fa-check {
    color: #38ef7d !important;
}

/* Revenue Cycle - Purple to Deep Violet */
.services-rcm {
    background: linear-gradient(180deg, #6b5a8a 0%, #5a3d7a 50%, #4a2d6a 100%);
    color: white;
    padding: 4rem 0;
}

.services-rcm h2,
.services-rcm h3,
.services-rcm p,
.services-rcm li {
    color: white;
}

.services-rcm .fa-check {
    color: #38ef7d !important;
}

/* AR Management - Deep Violet to Dark */
.services-ar {
    background: linear-gradient(180deg, #4a2d6a 0%, #3a2255 50%, #2a1540 100%);
    color: white;
    padding: 4rem 0;
}

.services-ar h2,
.services-ar h3,
.services-ar p,
.services-ar li {
    color: white;
}

.services-ar .fa-check {
    color: #38ef7d !important;
}

/* Additional Services - Dark to Near Black */
.services-additional {
    background: linear-gradient(180deg, #2a1540 0%, #1a0f2e 50%, #0f0a1a 100%);
    color: white;
    padding: 4rem 0;
}

.services-additional h2,
.services-additional p {
    color: white;
}

.services-additional .card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.services-additional .card h5,
.services-additional .card p {
    color: white;
}

/* CTA Section - Black background */
.services-cta {
    background-color: #000000;
    color: white;
    padding: 4rem 0;
}

.services-cta h2,
.services-cta p {
    color: white;
}

.services-cta .btn-primary {
    background-color: #ffeb3b;
    border: none;
    color: #1a1a2e;
    font-weight: 600;
}

.services-cta .btn-primary:hover {
    background-color: #ffdd00;
}

.services-cta .btn-outline-primary {
    color: #ffeb3b;
    border-color: #ffeb3b;
    background-color: transparent;
}

.services-cta .btn-outline-primary:hover {
    background-color: #ffeb3b;
    color: #1a1a2e;
}

/* ========== CONTACT PAGE STYLES ========== */

/* Contact page hero - Rich Gold gradient */
.hero-section.contact-hero {
    background: linear-gradient(135deg, #b8860b 0%, #daa520 50%, #ffd700 100%);
}

/* Get In Touch - Dark navy gradient */
.contact-info {
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 4rem 0;
}

.contact-info h2,
.contact-info p {
    color: white;
}

.contact-info .card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.contact-info .card h3,
.contact-info .card p,
.contact-info .card a {
    color: white;
}

.contact-info .card .text-muted {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Contact Form - Navy to Purple transition */
.contact-form {
    background: linear-gradient(180deg, #16213e 0%, #2d2a4a 50%, #4a3f6b 100%);
    color: white;
    padding: 4rem 0;
}

.contact-form h2,
.contact-form p,
.contact-form label {
    color: white;
}

.contact-form .form-control,
.contact-form .form-select {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: #ffeb3b;
    color: white;
    box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25);
}

.contact-form .form-select option {
    background-color: #2d2a4a;
    color: white;
}

.contact-form .form-check-label,
.contact-form .form-check-label a {
    color: white;
}

.contact-form .btn-primary {
    background-color: #ffeb3b;
    border: none;
    color: #1a1a2e;
    font-weight: 600;
}

.contact-form .btn-primary:hover {
    background-color: #ffdd00;
}

/* What Happens Next - Purple to Violet */
.contact-next {
    background: linear-gradient(180deg, #4a3f6b 0%, #5a3d7a 50%, #4a2d6a 100%);
    color: white;
    padding: 4rem 0;
}

.contact-next h2,
.contact-next h3,
.contact-next p {
    color: white;
}

.contact-next .rounded-circle {
    background: linear-gradient(135deg, #ffeb3b 0%, #ffdd00 100%) !important;
}

.contact-next .rounded-circle span {
    color: #1a1a2e !important;
}

/* ========== FAQ PAGE STYLES ========== */

/* FAQ page hero - Cyan/Turquoise to Teal gradient */
.hero-section.faq-hero {
    background: linear-gradient(135deg, #00b4db 0%, #0083b0 50%, #006d77 100%);
}

/* FAQ Content Section - Dark navy gradient */
.faq-content {
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 50%, #2d2a4a 100%);
    color: white;
    padding: 4rem 0;
}

.faq-content h2 {
    color: white;
}

/* Accordion styling for dark background */
.faq-content .accordion-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.faq-content .accordion-button {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    font-weight: 500;
    border-radius: 8px;
}

.faq-content .accordion-button:not(.collapsed) {
    background: rgba(255, 193, 7, 0.15);
    color: #ffeb3b;
    box-shadow: none;
}

.faq-content .accordion-button::after {
    filter: brightness(0) invert(1);
}

.faq-content .accordion-button:not(.collapsed)::after {
    filter: brightness(0) saturate(100%) invert(76%) sepia(62%) saturate(1000%) hue-rotate(359deg) brightness(103%) contrast(104%);
}

.faq-content .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25);
    border-color: #ffeb3b;
}

.faq-content .accordion-body {
    background: rgba(0, 0, 0, 0.2);
    color: rgba(255, 255, 255, 0.85);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Still Have Questions alert box */
.faq-content .alert-info {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
}

.faq-content .alert-info .alert-heading {
    color: #ffeb3b;
}

.faq-content .alert-info i {
    color: #2ecc71;
}

/* CTA Button */
.faq-content .btn-primary {
    background-color: #ffeb3b;
    border: none;
    color: #1a1a2e;
    font-weight: 600;
}

.faq-content .btn-primary:hover {
    background-color: #ffdd00;
}

/* ========== TESTIMONIALS PAGE STYLES ========== */

/* Testimonials page hero - Magenta/Pink to Purple gradient */
.hero-section.testimonials-hero {
    background: linear-gradient(135deg, #c471ed 0%, #8b5cf6 50%, #6366f1 100%);
}

/* Testimonials Content Section - Dark navy gradient */
.testimonials-content {
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 50%, #1e2a4a 100%);
    color: white;
    padding: 4rem 0;
}

.testimonials-content h2 {
    color: white;
}

/* Testimonial cards for dark background */
.testimonials-content .card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.testimonials-content .card-text {
    color: rgba(255, 255, 255, 0.85);
}

.testimonials-content .card h5 {
    color: white;
}

.testimonials-content .card .text-muted {
    color: rgba(255, 255, 255, 0.6) !important;
}

.testimonials-content .card .rounded-circle {
    background: rgba(255, 255, 255, 0.1) !important;
}

/* Results Section - Purple gradient */
.testimonials-results {
    background: linear-gradient(180deg, #1e2a4a 0%, #3b2d5a 50%, #4a3f6b 100%);
    color: white;
    padding: 4rem 0;
}

.testimonials-results h2,
.testimonials-results p {
    color: white;
}

/* CTA Section - Dark to black gradient */
.testimonials-cta {
    background: linear-gradient(180deg, #4a3f6b 0%, #2a1f4a 50%, #1a1a2e 100%);
    color: white;
    padding: 4rem 0;
}

.testimonials-cta h2,
.testimonials-cta p {
    color: white;
}

.testimonials-cta .btn-primary {
    background-color: #ffeb3b;
    border: none;
    color: #1a1a2e;
    font-weight: 600;
}

.testimonials-cta .btn-primary:hover {
    background-color: #ffdd00;
}

/* Privacy page hero - Deep Blue to Teal gradient */
.hero-section.privacy-hero {
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 50%, #2b6cb0 100%);
}

/* Privacy Content Section - Dark navy gradient */
.privacy-content {
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 50%, #1e2a4a 100%);
    color: white;
    padding: 4rem 0;
}

.privacy-content h2 {
    color: white;
}

/* Privacy cards for dark background */
.privacy-content .card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.privacy-content .card p,
.privacy-content .card li {
    color: rgba(255, 255, 255, 0.85);
}

.privacy-content .card h2,
.privacy-content .card h3 {
    color: white;
}

.privacy-content .card strong {
    color: #ffeb3b;
}

.privacy-content .alert-info {
    background: rgba(45, 82, 130, 0.4);
    border: 1px solid rgba(43, 108, 176, 0.5);
    color: white;
}

/* Terms page hero - Deep Blue to Teal gradient (similar to privacy) */
.hero-section.terms-hero {
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 50%, #2b6cb0 100%);
}

/* Terms Content Section - Dark navy gradient */
.terms-content {
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 50%, #1e2a4a 100%);
    color: white;
    padding: 4rem 0;
}

.terms-content h2 {
    color: white;
}

/* Terms cards for dark background */
.terms-content .card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.terms-content .card p,
.terms-content .card li {
    color: rgba(255, 255, 255, 0.85);
}

.terms-content .card h2,
.terms-content .card h3 {
    color: white;
}

.terms-content .card strong {
    color: #ffeb3b;
}

.terms-content .alert-warning {
    background: rgba(255, 193, 7, 0.15);
    border: 1px solid rgba(255, 193, 7, 0.4);
    color: white;
}

.hero-section .overlay {
    padding-left: 3rem;
}

.hero-section .overlay h1 {
    color: white;
    font-weight: 700;
}

.hero-section .overlay .hero-text {
    color: white;
    opacity: 0.9;
}

.navbar-nav ul li {
    background-color: transparent;
}
.navbar .container-fluid {
    padding-right: 2rem;
}


nav .container-fluid .navbar-nav .nav-link {
    color: white;
    font-weight: 400;
    font-size: 1.2rem;
}
nav .container-fluid .navbar-nav span{
    color: #f4d03f;
    font-weight: 400;
    font-size: 1.2rem;
}

nav .navbar-nav .navbar-text {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    margin-bottom: 0;
    display: inline-block;
}

nav .navbar-nav .nav-item{
    position: relative;
    text-decoration: none;
}
nav .navbar-nav li a{
    opacity: 60%;
}
nav .navbar-nav li a:hover{
    opacity: 100%;
    color:white !important;
}
/* Phone number link - full opacity and always visible */
nav .navbar-nav li a:has(.navbar-text){
    opacity: 100%;
}

/*Styling for nav-items hover effect*/
nav .navbar-nav .nav-item a::after{
    content: '';
    width: 0;
    height: 2px;
    left:0;
    bottom: 0;
    top:100%;
    background-color: #ffeb3b;
    transition: width 0.3s ease;
}
nav .navbar-nav .nav-item a:hover::after{
    width: 100%;
}

/* Active nav item styling */
nav .navbar-nav .nav-item a.active {
    color: #ffeb3b !important;
    opacity: 100%;
}

nav .navbar-nav{
   z-index: 1;
   width: 100%;
   justify-content: flex-end;
   flex-wrap: wrap;
}

/*Header content section styling*/
.header-section {
    min-height: 100vh; /* Changed from height to min-height for zoom accessibility */
    height: auto;
    position: relative;
    color: white
}
.header-overlay {
    padding-top: 0;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.header-content {
    position: relative;
    z-index: 2;
    text-align: left;
    padding: clamp(1rem, 4vw, 6rem);
    margin-top: 0;
    margin-left: 2rem;
    width: 100%;
    max-width: none;
}

.header-content h1 {
    margin-bottom: 1.5rem;
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    font-weight: 700;
    line-height: 1.3;
    color: #ffeb3b;
    word-wrap: break-word;
}

.header-content h1 span {
    display: inline;
}

.header-content h1 span.d-block {
    display: block;
    margin-top: 0.5rem;
}

.header-content h1 span.company-name {
    color: #2ecc71;
}

.header-content p {
    font-size: 1.3rem;
    font-weight: 300;
    width: 100%;
    max-width: 800px;
    margin-top: 1.5rem;
    line-height: 1.6;
}
@media only screen and (max-width : 480px) {
    /* only size 'xs' and below */
    .header-content h1 {
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    
    }

    .header-content p {
        font-size: 1rem
        
    }
    .header-content .header-btn {
        font-size: 0.9rem;
        padding: 6px 15px;

    }
    .social-icons{
        bottom:5rem;
        right: 4rem;
    }
    
    .social-link {
    font-size: 1rem;
    margin-left: 10px;}
}

.header-content .header-btn {
    padding: 12px 30px;
    font-size: 1.5rem;
    background-color: transparent;
    color: #ffeb3b;
    border:1px solid #ffeb3b;
    border-radius: 2rem;
}

.header-content .header-btn:hover{
    background-color:#ffeb3b;
    color: #1a1a2e;
    border: none;

}

/* Hero Stats Section */
.hero-stats {
    text-align: center;
}

.hero-stats h3 {
    font-size: 2.2rem;
}

.hero-stats p {
    font-size: 0.95rem;
}

/*Social Icons Header*/
.social-icons {
    right: clamp(1rem, 4vw, 5rem);
    bottom: clamp(1rem, 8vw, 10rem);
}


/* Styling for social links */
.social-link {
    color: white; /* White color for icons */
    margin-left: 30px;
    font-size: 35px;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 100;
    opacity: 20%;
}

.social-link:hover {
    color:#ffeb3b ; /* Change color on hover */
    opacity: 100%;
}
.social-icons .social-link-x svg{
    margin-left: 30px;
    width: 42px;
    height: 42px;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 100;
    margin-bottom:0.7rem;
    opacity: 20%;

}
header .social-icons .social-link-x svg:hover path {
    fill: #ffeb3b ; /* Change color on hover */
}
header .social-icons .social-link-x svg:hover{
    opacity: 100%;
}
/*WhatWeProvide Section styles*/
 .card-body h2 {
    font-size: 2.8rem;
    font-weight: 700;
    white-space: pre-line;
    color:#ffeb3b;
}
.card-body h2 span {
    color: white;
}

.WhatWeProvide-section .container-fluid {
    background: linear-gradient(to right, rgba(0, 20, 40, 0.95), rgba(10, 30, 50, 0.9));
}

.WhatWeProvide-section .container-fluid .healthImageContainer {
    z-index: 1;
}

.WhatWeProvide-section .line-container svg,
.WhatWeProvide-section .thin-line-container svg {
    display: grid;
    grid-template-columns: auto auto; /* Creates two columns for your two lines */
    /* Optional: add a gap between them */
    gap: 0;
}

.WhatWeProvide-section .thin-line-container {
    margin-top: 0.19rem;
    width: 100%;
}

.WhatWeProvide-section .container-fluid .section-card {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(15, 35, 55, 0.75));
}
.WhatWeProvide-section .section-card .row {
    color: white;
}

.WhatWeProvide-section .section-card .row ul {
    font-size: 1.36rem;
}

.WhatWeProvide-section .section-card {
    height: auto;
}
.WhatWeProvide-section .card-body .coreServices h3 {
   color:#2ecc71;
   font-size: 1.8rem;
}
.WhatWeProvide-section .card-body .whyChooseABM h3 {
   color: #ffeb3b;
   font-size: 1.8rem;
}
.WhatWeProvide-section .section-card .row ul li{
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.WhatWeProvide-section .whyChooseABM-list li strong {
    color: #ffeb3b;
}
.WhatWeProvide-section .card-body .row .whyChooseABM{
     width: 50%;
}
@media (max-width: 991px) {
    .WhatWeProvide-section .card-body .row .whyChooseABM {
        width: 100%;
    }
}
.WhatWeProvide-section .container-fluid .healthImageContainer {
    background: url("./images/aiBillingImage.png") no-repeat right;
    background-size: cover;
    background-position: center;
    flex: 1 1 600px;
    min-height: 500px;
    height: auto;
}
/*Meet Our Providers Section Styling*/
.OurServices-section .section-card {
    height: auto;
}
.OurServices-section Article img{
    border-radius: 20px;
}
.WhatWeProvide-section .section-card .card-body .row{
    padding-bottom: 5rem;
}
.OurServices-section .row .firstBenefit{
    padding-top:0;
}

.OurServices-section{
    background-color: black;
}
.OurServices-section .row{
    color:white;
    padding: 1rem;
}
.OurServices-section .row .col-md-6 img{
    margin-top: 3rem;
}
.OurServices-section .row .benefitName{
    font-size: 1.7rem;
    padding-top: 3rem;
}
.OurServices-section .row p{
    font-size: 1.4rem;
    width: 100%;
    opacity: 100%;
}
.OurServices-section .row .secondRowOurServices{
    padding-left:0.1rem;
}
@media (max-width: 991px) {
    .OurServices-section .row .secondRowOurServices {
        padding-left: 0 !important;
    }
}
/* Schedule An Appointment Section Styles */
.ScheduleAnAppointment-section .container-fluid {
    height: auto;
}

.ScheduleAnAppointment-section .section-card {
    background-color: rgb(6, 45, 6);
    padding: 3rem;
}

.ScheduleAnAppointment-section .card-body h4 {
    color: white;
    font-size: 1.6rem;
}

.ScheduleAnAppointment-section .card-title h2 {
    font-size: 2.5rem;
}


.ScheduleAnAppointment-section .card-body h4 span {
    color: #ffeb3b;
}

.ScheduleAnAppointment-section .appointment-image {
    background: url("./images/happyClients.jpg") no-repeat center right;
    background-size: cover;
    background-position: center;
    flex: 1 1 600px;
    min-height: 500px;
    height: auto;
    image-rendering: auto;
}

.ScheduleAnAppointment-section .card-body .appointment-content p {
    color: white;
    text-align: left;
    width: 85%;
    font-size: 1.2rem;
    padding-top: 1.2rem;
}

.ScheduleAnAppointment-section .contact-btn {
    padding: 13px 32px;
    font-size: 1.4rem;
    background-color: transparent;
    color: #ffeb3b;
    border: 1px solid #ffeb3b;
    border-radius: 2rem;
}

.ScheduleAnAppointment-section .contact-btn:hover {
    background-color: #ffeb3b;
    color: #1a1a2e;
    border: none;
}

/* Patient Testimonials Section styles */
.ClientTestimonials-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("./images/docImage.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: auto; /* Removed fixed vh for zoom accessibility */
    height: auto;
    padding: clamp(3rem, 6vw, 4rem);
    overflow: visible; /* Allow content to be visible at high zoom */
}

.ClientTestimonials-section .row .carousel-slide .carousel-inner {
    min-height: auto; /* Removed fixed vh for zoom accessibility */
    height: auto;
    color: white;
    max-width: 100%;
    margin: 0 auto;
    overflow: visible; /* Allow content to be visible at high zoom */
}

/* Carousel captions - for centering text */
.ClientTestimonials-section .row .carousel-slide .carousel-caption {
    position: static; /* Changed from absolute to static for 200% zoom accessibility */
    padding: 40px 60px; /* Increased horizontal padding to make room for arrows */
    z-index: 2;
    color: white;
    text-align: center;
}

/* Position carousel controls properly with static captions */
.ClientTestimonials-section .carousel-control-prev,
.ClientTestimonials-section .carousel-control-next {
    width: 50px;
    z-index: 10;
}

.ClientTestimonials-section .carousel-control-prev {
    left: 0;
}

.ClientTestimonials-section .carousel-control-next {
    right: 0;
}

.ClientTestimonials-section .row .carousel-slide .carousel-inner .carousel-caption h5 {
    font-size: 1.6rem;
    color: #ffeb3b;
    margin-top: 2rem;
}

.ClientTestimonials-section .row .carousel-slide .carousel-inner .carousel-caption p {
    font-size: 1.7rem;
    color: white;
    word-spacing: 0.1rem;
    width: 100%;
    font-style: italic;
    opacity: 95%;
    font-weight: 500;
    text-align: center;
    padding: 0;
}

/* Ensure carousel items display properly */
.ClientTestimonials-section .carousel-item {
    display: none;
    min-height: auto; /* Removed fixed vh for zoom accessibility */
    overflow: visible; /* Allow content to be visible at high zoom */
}

.ClientTestimonials-section .carousel-item.active {
    display: block;
    overflow: visible; /* Allow content to be visible at high zoom */
}

/* Style for carousel indicators (dots) */
.ClientTestimonials-section .row .carousel-slide .carousel-indicators [data-bs-target] {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 80%;
    border: 2px white solid;
    width: 15px;
    height: 15px;
    margin: 0 7px;
    padding-top: 0;
}

.ClientTestimonials-section .row .carousel-slide .carousel-indicators .active {
    background-color: #fff;
}

.row .carousel-slide .carousel-control-prev span,
.row .carousel-slide .carousel-control-next span {
    color: #ffeb3b;
}
/* Map section styles */
#location iframe {
    width: 100%;
    height: 50vh;
}

#location {
    padding: 0;
    margin: 0;
}

/* Footer styles */
footer {
    background-color: black;
    position: relative;
    padding: clamp(2.5rem, 5vw, 4rem);
    color: white;
}

footer p,
footer li,
footer .title {
    color: rgba(255, 255, 255, 0.85);
}

footer ul.list-unstyled li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer ul.list-unstyled li a:hover {
    color: #ffeb3b;
}

/* Footer phone number - yellow-gold color with full opacity */
.footer-phone {
    color: #f4d03f;
    opacity: 100%;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-phone:hover {
    color: #ffeb3b;
}

.footer-phone .phone-number {
    white-space: nowrap;
}

footer .navbar-nav .nav-item .nav-link {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

footer .navbar-nav .nav-item .nav-link:hover {
    color: #ffeb3b;
}

.footer-button {
    margin-top: 1.6rem;
}

.footer-button .footer-btn {
    padding: 7px 23px;
    margin-right: 0.4rem;
    margin-bottom: 2.2rem;
    font-size: 1.4rem;
    background-color: transparent;
    color: #ffeb3b;
    border: 1px solid #ffeb3b;
    border-radius: 2rem;
}

.footer-button .footer-btn:hover {
    background-color: #ffeb3b;
    color: #1a1a2e;
    border: none;
}

footer .line hr {
    color: #ffeb3b;
    height: 0.7rem;
    margin-left: 5.5rem;
    margin-right: 5.5rem;
    padding-left: 3.5rem;
    padding-right: 4.5rem;
}

footer .footer-logo {
    position: relative;
    align-self: flex-start;
}

footer .footer-logo .footer-logo-brand {
    position: absolute;
    top: 0;
    left: 0;
}

.footer-section{
    padding:2.5rem 6.5rem;
}

.footer-section .col-lg-3,
.footer-section .col-lg-4 {
    color: white;
    opacity: 70%;
}
footer .contact{
    color: white;
    opacity: 70%;
}
.footer-section .links h5, .footer-section .services h5, .footer-section .about-us h5{
    font-size: 1.5rem;
}
.about-us p,
.footer-section p {
    font-size: 1.4rem;
    margin-top: 0;
}
.links{
    padding-left: 2rem;
}
.footer-section ul li{
    font-size: 1.4rem;
}
.contact{
    margin-left:-1vw;
}
.contact ul, .links ul, .services ul{
    margin-top: 0;
}
.footer-section .list-unstyled {
    margin-top: 0;
}

.contact h5{
    font-size: 1.5rem;
}
.services ul li:hover, .links ul li:hover{
    opacity:100%;
}

footer .social-space{
    margin-bottom:-6rem;
}

/* Styling for social links */
footer .social-link {
    color: white; /* White color for icons */
    margin-left: 0.7rem;
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 100;
    opacity: 20%;
}
footer .social-link:hover {
    opacity: 100%;
    color: white; /* Change color on hover */
}
footer .social-icons{
  right: clamp(1rem,5vw,3.5rem);
  bottom: clamp(1.5rem,8vh,4rem);
}
.header-content{
    flex-direction:column;
}
footer .social-icons .social-link-x svg{
    margin-left: 0.7rem;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 100;
    opacity: 20%;
    width: 1.6rem;
    height: 1.6rem;

}
footer .social-icons .social-link-x svg:hover path {
    fill: white; /* Change color on hover */
}
footer .social-icons .social-link-x svg:hover  {
    opacity: 100%;
}
.footer-end{
    color: white;
    margin: 0 clamp(1rem, 5vw, 4rem);
    font-size: 1.2rem;
    padding-top: 1rem;
    opacity: 80%;
    padding-bottom: 3rem;
}
.footer-end .privacy-rights, .footer-end .license{
    text-wrap: wrap; /* Allow wrapping at high zoom for accessibility */
}
.footer-end .license{
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-head{
    padding-right:2.3rem;
    padding-left:2.3rem;
    padding-top:2.3rem;
    margin-left: 2.3rem;
    margin-right: 2.3rem;
}
footer .footer-section .about-us , footer .footer-section .links, footer .footer-section .contact, footer .footer-section .services{
    min-width:auto;
    margin-top: 1rem;
    margin-bottom:1rem;
}

/*Extra styles for responsiveness*/
.main-header .navbar{
    margin: 0.25rem;
    padding: 0.25rem;
}
.navbar-nav .nav-item{
    margin-right: 0.75rem;
}
.main-header .navbar ul{
    flex-wrap: wrap !important;
}

.WhatWeProvide-section .container-fluid{
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}
.WhatWeProvide-section .container-fluid .section-card{
    min-width: 0; /* Removed fixed min-width for zoom accessibility */
}
.WhatWeProvide-section .card-body{
    margin: 3rem;   
    padding-left:3rem;
    padding-right:3rem;
}
.WhatWeProvide-section.card-body .card-title h2{
    margin-bottom: 1rem;
}
.WhatWeProvide-section .svg{
    padding-bottom:1.5rem;
}

/*Services page styles*/
/*main section styles*/
.navbar .navbar-brand{
    padding-left:3rem;
}

.logo-image {
    width: clamp(120px, 15vw, 200px);
    min-width: 120px;
    max-width: 200px;
    height: auto;
}

/* Ensure navbar-brand doesn't constrain logo on small screens */
@media (max-width: 768px) {
    .navbar .navbar-brand.col-3 {
        width: auto !important;
        flex: 0 0 auto;
    }
}

.sub-header{
    background:linear-gradient( rgba(0, 0, 0, 1),rgba(0, 0, 0, 1)) ;
}
h2 span{
    color:#ffeb3b;
}
@media only screen and (max-width : 480px) {
    .header-content h1 span{
       font-size: clamp(2.4rem, 4vw, 3.6rem);
    }
     /* Hide the nav-link::after pseudo-element in toggler (small screens) */
     nav .navbar-nav .nav-item a::after{
        display: none;
      }
      .navbar .navbar-brand{
        padding-left:1rem;
    }

    /* Responsive image containers for mobile */
    .WhatWeProvide-section .container-fluid .healthImageContainer,
    .ScheduleAnAppointment-section .appointment-image {
        min-height: 300px;
        background-size: cover !important;
        background-position: center !important;
    }
}

/* Tablet and medium screens */
@media only screen and (max-width: 991px) {
    .WhatWeProvide-section .container-fluid .healthImageContainer {
        min-height: 400px;
        background-size: cover;
        background-position: center;
    }

    .ScheduleAnAppointment-section .appointment-image {
        min-height: 400px;
        background-size: cover;
        background-position: center;
    }
}

/* Large screens - align nav items and prevent wrapping */
@media only screen and (min-width: 992px) {
    nav .navbar-nav {
        flex-wrap: nowrap;
        align-items: center;
    }
    nav .navbar-nav .nav-item {
        white-space: nowrap;
    }
    nav .navbar-nav .nav-item a:has(.navbar-text) {
        display: flex;
        align-items: center;
    }
    nav .navbar-nav .navbar-text {
        padding-top: 0;
        padding-bottom: 0;
        line-height: inherit;
    }
}

h4 span, h6 span{
    color:  #ffeb3b;
}
#def{
    padding-top:1.2rem;
}
#defCont{
    padding-top:2.2rem;
}
#des{
    padding-bottom: 0rem;
    font-size: 1.3rem;
}

/* Cookie Consent Banner Styles */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 1.5rem 2rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    display: none;
    border-top: 3px solid #2ecc71;
}

.cookie-consent-banner.show {
    display: block;
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookie-consent-text {
    flex: 1;
    min-width: 300px;
}

.cookie-consent-text h3 {
    color: #ffeb3b;
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
}

.cookie-consent-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
}

.cookie-consent-text a {
    color: #2ecc71;
    text-decoration: underline;
}

.cookie-consent-text a:hover {
    color: #ffeb3b;
}

.cookie-consent-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.cookie-btn-accept {
    background-color: #2ecc71;
    color: black;
}

.cookie-btn-accept:hover {
    background-color: #27ae60;
    transform: translateY(-2px);
}

.cookie-btn-decline {
    background-color: transparent;
    color: #ffeb3b;
    border: 1px solid #ffeb3b;
}

.cookie-btn-decline:hover {
    background-color: #ffeb3b;
    color: #1a1a2e;
}

.cookie-btn-settings {
    background-color: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-settings:hover {
    border-color: white;
    color: white;
}

@media (max-width: 768px) {
    .cookie-consent-banner {
        padding: 1rem;
    }

    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-consent-buttons {
        justify-content: center;
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
        min-width: 100px;
    }
}
