@charset "utf-8";

/* --- 1. RESET & GLOBAL --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
	overflow-x: hidden;
}

h1 {
font-family: "Montserrat", sans-serif;
}

body {
    font-family: "DM Sans", sans-serif;
    color: #333;
    background-color: #ffffff;
    line-height: 1.6;
}

a { text-decoration: none; }
ul { list-style: none; }


/* --- 3. TRANSPARENT NAVIGATION --- */
.navbar {
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    background: transparent; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    z-index: 1000;
}

.logo-img {
    height: 100px; 
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: #F4A5A0;
	text-decoration: underline
}

.btn-nav {
    background: white;
    color: #333;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    transition: transform 0.2s;
}

.btn-nav:hover {
    transform: scale(1.05);
	color: #F4a5a0
}

/* --- 4. HERO SECTION --- */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url("images/hero-gradient.png");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding-left: 80px;
    position: relative;
}

.hero-content {
    max-width: 700px;
    color: white;
    margin-top: 60px; 
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    line-height: 1.2;
    margin-bottom: 80px;
}


/* --- 5. FIXED FLOATING BUTTONS --- */
.floating-buttons {
    position: fixed; 
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2000;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s;
}

.float-btn:hover {
    transform: translateY(-3px);
}


/* Specific styles for your custom WhatsApp Image */
.whatsapp {
    background: transparent; 
    padding: 0; 
    overflow: hidden; 
}

.whatsapp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.about-intro {
    background-color: white; 
    padding: 80px 10px;
    text-align: center;
}

.intro-container {
    max-width: 900px; 
    margin: 0 auto;
}

.about-intro h2 {
    font-family: "Montserrat", sans-serif;
    color: #522662; 
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.about-intro p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}


.btn-cta {
	background: #522662;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    transition: transform 0.2s;
	margin-bottom: 50px;
}

.btn-cta:hover {
    transform: scale(1.05);
	background: #F4A5A0;
}

/* --- 2. VALUES SECTION (3 CARDS) --- */
.values-section {
    background-color: #A394B4;
    padding: 80px 20px 100px;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    justify-content: center;
}

.value-card {
    background: white;
    flex: 1; 
    padding: 50px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(82, 38, 98, 0.08); 
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-10px); 
}


.value-card h3 {
    font-family: "Montserrat", sans-serif;
    color: #522662;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.separator-line-center {
    width: 50px;
    height: 3px;
    background-color: #D9D4EC;
    margin: 0 auto 20px;
}

.value-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.doctors-section {
    background-color: white;
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title-center {
    text-align: center;
    font-family: "Montserrat", sans-serif;
    color: #333;
    font-size: 2.2rem;
	font-weight: 600;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* The Row Container */
.doctor-row {
    display: flex;
    align-items: center; 
    gap: 60px;
    margin-bottom: 100px;
}

.doctor-row.reverse {
    flex-direction: row-reverse;
}

/* Image Column */
.doctor-img-col {
    flex: 1; 
    display: flex;
    justify-content: center;
}

.img-wrapper {
    position: relative;
    display: inline-block;
}

.img-wrapper img {
    max-width: 350px; 
    width: 100%;
    border-radius: 10px; 
    display: block;
}

/* Black Name Tag Overlay */
.name-tag {
    background-color: black;
    color: white;
    padding: 10px 30px;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%); 
    white-space: nowrap;
}

/* Content Column */
.doctor-info-col {
    flex: 1.2; 
}

.doctor-info-col h3 {
    font-family: "Montserrat", sans-serif;
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.qualifications {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 30px;
}

.qualifications li {
    font-family: "DM Sans", sans-serif;
    color: #666;
    margin-bottom: 8px;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Read More Button */
.btn-read-more {
    display: inline-block;
    background-color: #F4A5A0;
	border: 2px solid #F4A5A0;
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-read-more:hover {
    background-color: white;
    color: #F4A5A0;
}

.btn-read-more i {
    margin-left: 8px;
    font-size: 0.8rem;
}


.site-footer {
    background-color: #a394b4; 
    color: white;
    padding: 70px 0 50px; 
    font-size: 0.85rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: auto auto auto auto auto;
    gap: 40px;
}

/* Headings */
.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- COL 1: Brand --- */
.footer-logo {
    height: 100px; 
    margin-bottom: 25px;
    display: block;
}

.brand-desc {
    opacity: 0.8;
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 0.8rem;
    max-width: 250px;
}

.copyright {
    opacity: 0.5;
    font-size: 0.75rem;
    margin-top: 20px;
}

/* --- COL 2: Subscribe & Socials --- */
.newsletter-form input {
    width: 100%;
    padding: 12px 15px;
    border: none;
    background: white;
    color: #333;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    outline: none;
    margin-bottom: 40px; 
}

/* Social Icons (Using Images) */
.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    border: 1px solid rgba(255,255,255,0.4);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    background: transparent;
}

.social-icons a img {
    /* The Icon Size */
    width: 16px;  
    height: 16px;
    object-fit: contain;
    display: block;
}

.social-icons a:hover {
    background-color: white;
    border-color: white;
    transform: translateY(-3px);
}

/* --- COL 3 & 4: Links --- */
.links-col ul li {
    margin-bottom: 12px;
    list-style: none;
}

.links-col ul li a {
    color: rgba(255,255,255,0.8);
    transition: color 0.2s, padding-left 0.2s;
    font-size: 0.85rem;
    display: inline-block;
}

.links-col ul li a:hover {
    color: white;
    padding-left: 5px; /* Small slide effect on hover */
}

/* --- COL 5: Badges --- */
.badges-col {
    display: flex;
    flex-direction: column;
}

.payment-icons {
    display: flex;
    gap: 5px; 
    align-items: center; 
}

.payment-icons img {
    margin: 0; 
    display: block;  
	width: auto;
	height: 50px; 
    margin-bottom: 10px;
}

.trust-badge img {
    height: 100px; 
    margin-bottom: 10px;
    display: block;
}

/* RESPONSIVE ADJUSTMENTS */

@media (max-width: 900px) {
 
    .about-intro h2 {
        font-size: 1.8rem;
		padding: 15px;
    }
    
    .about-intro p {
        font-size: 1rem;
		padding: 15px
    }

    .values-container {
        flex-direction: column;
        align-items: center;
    }
    
    .value-card {
        width: 100%;
        max-width: 500px;
    }

    .doctor-row, .doctor-row.reverse {
        flex-direction: column; 
        gap: 40px;
        text-align: center;
        margin-bottom: 60px;
    }

    .img-wrapper img {
        max-width: 300px; 
    }

    .qualifications {
        text-align: left; 
        display: inline-block;
        padding-right: 20px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px;
        flex-direction: column; 
        position: relative; 
        background: #a394b4; 
        gap: 15px;
    }

    .logo-img {
        height: 60px; 
    }

    .nav-links {
        gap: 15px;
        flex-wrap: wrap; 
        justify-content: center;
    }

    .btn-nav {
        display: flex; 
    }

    .hero {
        padding-left: 20px;
        padding-right: 20px;
        height: 60vh;
        align-items: center; 
        justify-content: center;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.2rem; 
    }

    .hero-content p {
        margin-bottom: 40px;
    }

    .footer-container {
		display: flex;
		flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center; 
    }

    .newsletter-form input {
        text-align: center;
    }

    .payment-icons {
        justify-content: center;
    }
}