
body {
    background-color: #819067;
}

                                                            /* Header */
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #FEFAE0;
    z-index: 1000;
}

.logo {
    height: 100px;
}

.logo-container {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    background: none;
    box-shadow: none;
}

.nav-links li {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #222;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.08rem;
    letter-spacing: 0.02em;
    padding: 0.5rem 1.1rem;
    font-family: sans-serif;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
    position: relative;
}

.nav-links a:hover {
    color: #0A400C;
}

.book-counselling {
    border-radius: 20px;
    background: #0A400C;
    color: #fff;
    border: none;
    font-weight: 600;
    font-size: 1.08rem;
    cursor: pointer;
    padding: 10px 20px;
    margin-right: 40px;
    transition: all 0.3s ease;
    outline: none;
    animation: glowing 1.5s infinite;
    position: relative;
    overflow: hidden;
}

.book-counselling:hover {
    animation: none;
    background: #126b15;
    box-shadow: 0 0 25px #126b15;
    transform: translateY(-2px);
}


@keyframes glowing {
    0% {
        box-shadow: 0 0 5px #0A400C,
                   0 0 10px #0A400C,
                   0 0 15px #0A400C;
    }
    50% {
        box-shadow: 0 0 20px #0A400C,
                   0 0 25px #0A400C,
                   0 0 30px #0A400C;
    }
    100% {
        box-shadow: 0 0 5px #0A400C,
                   0 0 10px #0A400C,
                   0 0 15px #0A400C ;
    }
}

.hamburger {
    background-color: #FEFAE0;
    border: none;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1002;
    margin-right: 70px;
    cursor: pointer;
    border-radius: 50%;
    padding: 8px;
    display: none;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #0A400C;
    margin: 3px 0;
    border-radius: 3px;
    transition: all 0.4s ease;
    transform-origin: center center;
    position: relative;
    left: 0;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
    margin: 4px 0;
    height: 3px;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
    margin: 4px 0;
    height: 3px;
}



@media (max-width: 1100px) {
    .header-container {
        padding: 12px 20px;
    }

    .logo {
        height: 88px;
    }
    
    .hamburger {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 1002;
        margin-right: 20px;
    }

    .nav-bar {
        display: flex;
        align-items: center;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%; 
        border-radius: 0 0 0 40px;
        height: 100vh;
        width: 320px;
        background: #FEFAE0;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 100px 30px 50px;
        transition: right 0.3s ease;
        box-shadow: -3px 0 20px rgba(0, 0, 0, 0.15);
        z-index: 1001;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        margin: 15px 0;
    }

    .nav-links a {
        display: block;
        padding: 15px 25px;
        text-align: center;
        font-size: 1.1rem;
        color: #333;
        border-radius: 10px;
        transition: all 0.3s ease;
        font-weight: 500;
    }

    .nav-links a:hover {
        background-color: rgba(10, 64, 12, 0.08);
        color: #0A400C;
        transform: translateX(5px);
    }

    .book-counselling {
        margin: 30px auto 20px;
        width: 85%;
        max-width: 220px;
        text-align: center;
        padding: 14px 25px;
        display: block;
        border-radius: 25px;
        font-weight: 600;
        font-size: 1rem;
    }

    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .nav-overlay.active {
        display: block;
    }
}
@media (max-width: 380px) {
    
    .nav-links{
        right: -200%;
    
    }
    .nav-links.active {
        left: 10px;
}
}   


                                                 /* Hero  section */

.background-slideshow {
    display: none;
}

.top-bg {
    display: block;
    width: 100vw;
    height: 100vh;
    position: relative;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-bottom: 60px;
    margin-top: -10px;
    padding: 0;
    border: none;
    background-color: #EEEEC8;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 1s ease-in-out;
}

 /* Responsive */
@media (max-width: 1024px) {
    .top-bg {
        height: 70vh;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .top-bg {
        height: 60vh;
        margin-bottom: 30px;
    }
}

@media (max-width: 600px) {
    .top-bg {
        height: 50vh;
        margin-bottom: 20px;
    }
}


.overlay {
    margin-top: 110px; 
    padding-bottom: 18px; 
}


.services {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background: #819067
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.service-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.service-card {
    background: #FEFAE0;
    padding: 1.5rem;
    border-radius: 20px;
    margin: 10px;
    width: 280px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}


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

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}



.service-card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    color: #333;
    font-weight: 600;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

.banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    max-width: 1300px;
    margin: auto;
    flex-wrap: wrap;
}


.banner-text {
    flex: 1;
    padding-right: 30px;
    min-width: 280px;
}

.banner-text h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #052406;
    margin-bottom: 10px;
}

.banner-text p {
    font-size: 1rem;
    color: #fffdfd;
    margin-bottom: 30px;
    line-height: 1.6;
}

.banner-image img {
    display: block;
    width: 100%;
    max-width: 100%;
    border-radius: 23px;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.banner-image img:hover {
    transform: scale(1.01);
    box-shadow: 0 0 20px rgba(122, 98, 116, 0.6);
}

/* Responsive */
@media (min-width: 768px) {
    
    /* Tablet view */

    .service-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .banner {
        padding: 40px 30px;
    }
    .banner-image img {
        max-width: 100%;
        height: auto;
    }

}

@media (min-width: 1200px) {
    
    /* Desktop view */
    
    .service-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }

    .banner {
        padding: 50px;
    }
}

@media (max-width: 767px) {
    
    /* Mobile view */
    
    .banner {
        padding: 30px 20px;
    }

    .banner-text {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .banner-text h1 {
        font-size: 1.8rem;
    }

    .banner-image img {
        max-width: 100%;
        height: auto;
    }

    .service-card {
        width: 100%;
        max-width: 350px;
    }
}

@media (max-width: 320px) {
    .service-card {
        width: 100%;
        max-width: 260px;
        padding: 1.2rem;
        margin: 8px;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .service-card p {
        font-size: 0.85rem;
    }
}


                                                        /* Therapy Section */
.therapy-section {
    background-color: #FEFAE0;
    padding: 4rem 2rem;
    text-align: center;
    color: black;
}

.therapy-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0A400C;
}

.therapy-section h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #333;
}

.therapy-content {
    max-width: 800px;
    margin: 0 auto;
}

.therapy-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.consultation-info {
    background: rgba(10, 64, 12, 0.05);
    padding: 2rem;
    border-radius: 25px;
    margin: 2rem 0;
    box-shadow: 0 3px 15px rgba(10, 64, 12, 0.08);
}

.consultation-info h4 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #0A400C;
}

.consultation-info ul {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 80%;
    margin: 0 auto;
}

.consultation-info li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    padding-left: 20px;
    position: relative;
}

.consultation-info li:before {
    content: "•";
    color: #0A400C;
    font-weight: bold;
    position: absolute;
    left: 0;
    margin-right: 10px;
}

.therapy-note {
    font-style: italic;
    color: #0A400C;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .therapy-section {
        padding: 3rem 1.5rem;
    }
    
    .therapy-section h2 {
        font-size: 2rem;
    }
    
    .therapy-section h3 {
        font-size: 1.5rem;
    }
    
    .therapy-content p,
    .consultation-info li {
        font-size: 1rem;
    }
}
                                                /* Testimonials */
.testimonials {
    padding: 4rem 2rem;
    background: #FEFAE0 ;
    text-align: center;
    position: relative;
}

.testimonials h2 {
  margin-bottom: 2.5rem;
}

.testimonial-slider {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-card {
  background: #819067;
  padding: 2rem;
  border-radius: 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.testimonial-card.active {
  opacity: 1;
  transform: scale(1);
  position: relative;
}

.testimonial-card p {
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.testimonial-card h4 {
  font-weight: 600;
  color: #0A400C;
}

/* Navigation Arrows */
.testimonial-nav {
  margin-top: 1.5rem;
}

.testimonial-nav span {
  cursor: pointer;
  font-size: 2rem;
  color: #000000;
  margin: 0 15px;
  transition: color 0.3s ease;
}

.testimonial-nav span:hover {
  color: #0A400C;
}


                                                /* Footer section */

.custom-footer {
    background-color: #020202;
    color: #fff;
    padding: 60px 0 0 0;
    left: 0;
    bottom: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-bottom: -10px;
    z-index: 999;
    box-sizing: border-box;
    
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.footer-about, .footer-services, .footer-contact {
    flex: 1 1 250px;
    min-width: 220px;
}

.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.footer-icon {
    font-size: 2rem;
    margin-right: 10px;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin: 0;
}

.footer-doctor {
    color: #bbb;
    font-size: 0.95rem;
    margin: 0;
}

.footer-quote {
    color: #bbb;
    margin-bottom: 12px;
}

.footer-desc {
    color: #bbb;
    margin-bottom: 20px;
}


.footer-heading {
    font-weight: bold;
    margin-bottom: 16px;
    margin-top: 0px;
    font-size: 1.1rem;
}

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

.footer-list li {
    color: #bbb;
    font-size: 0.98rem;
    margin-bottom: 8px;
}

.footer-contact-list p {
    color: #bbb;
    font-size: 0.98rem;
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid #444;
    margin-top: 40px;
    padding: 24px 0 16px 0;
    text-align: center;
    color: #bbb;
    font-size: 0.95rem;
}
.footer-logo
{
    height: 48px;           
    width: auto;
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;     
}

/* Social Links */
.social-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #0A400C;
    color: #FEFAE0;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 3px 10px rgba(10, 64, 12, 0.2);
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(10, 64, 12, 0.4);
    background: #126b15;
}

.social-links i {
    font-size: 20px;
}



