/* --- Basic Reset & Setup --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    /* Recreating the dark green radial glow from the image */
    background: radial-gradient(circle at 75% 50%, #153c24, #081812 70%);
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

/* --- Navbar Styling --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 3%;
}

.logo img {
    height: 65px; /* Adjust this to fit your actual logo perfectly */
}

.nav-links {
    display: flex;
    margin-left: auto; /* This pushes the links to the right */
    margin-right: 40px; /* This creates the gap between links and button */
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 45px;
    font-size: 18px;
	letter-spacing: 1px;
    opacity: 0.8;
    transition: 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: #48CAE4;
    opacity: 1;
}

/* --- Button Styling --- */
.btn {
    padding: 18px 45px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
	letter-spacing: 1px;
    transition: 0.3s ease;
    cursor: pointer;
    border: none;
    display: inline-block;
}

.btn-white {
    background-color: #ffffff;
    color: #000000;
	font-weight: 500;
}

.btn-white:hover {
    background-color: #e0e0e0;
}

.btn-cyan {
    background-color: #55cde7; /* The teal/cyan color from your design */
    color: #081812;
    font-weight: 500;
}

.btn-cyan:hover {
    background-color: #3bb2cb;
}

/* --- Hero Section Styling --- */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 10px 3% 0px;
}

.hero-content {
    max-width: 58%;
	transform: translateY(-70px);
}

.hero-content h1 {
    font-size: 72px;
    line-height: 1.2;
    margin-bottom: 35px;
    font-weight: 700;
    letter-spacing: -1px;
}

.stats-bottom {
    margin-top: 60px;
}

.stats-bottom h2 {
    font-size: 32px;
    font-weight: 500;
    color: #ffffff;
}

.stats-bottom p {
    font-size: 14px;
    color: #b0b0b0;
    margin-top: 5px;
}

/* --- Hero Image & Floating Glass Cards --- */
.hero-image-wrapper {
    position: relative;
    width: 45%;
    display: flex;
    justify-content: center;
	align-items: flex-end;
	right: 5%;
}

.main-doctor-img {
    max-width: 100%;
    height: auto;
    z-index: 2;
	display: block;
}

/* Glassmorphism Effect */
.glass-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.04);
	width: 220px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 3;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.glass-card .icon {
    background: #0d281c; /* Dark background behind icons */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: #55cde7; /* Icon color matches the button */
}


/* Custom Icon Styling for Hero Glass Cards */
.hero-custom-icon {
    width: 45px;       /* Adjust this size to make icons look bigger/smaller */
    height: 45px;
    object-fit: contain;
    display: block;
}

/* Ensures the icon container stays perfectly circular with images */
.glass-card .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Keeps image edges inside the circle */
}


.glass-card .text h4 {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 2px;
}

.glass-card .text p {
    font-size: 12px;
    color: #c0c0c0;
}

/* Precise positioning of the three cards */
.card-1 {
    top: 25%;
    right: 5%;
}

.card-2 {
    top: 60%;
    left: -15%;
}

.card-3 {
    bottom: 20%;
    right: -10%;
}


/* =========================================
   OUR STORY SECTION (EXACT MATCH CSS)
========================================= */

.os-section {
    background-color: #FAFAFA; /* Off-white background */
    padding: 100px 5%;
    font-family: 'Montserrat', sans-serif;
    color: #000000;
}

.os-container {
    max-width: 1300px;
    margin: 0 auto;
}

/* --- Header Styling --- */
.os-header {
    text-align: center;
    margin-bottom: 50px;
}

.os-tagline {
    color: #6b7a85;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.os-circle {
    display: inline-block;
    width: 10px;
    height: 10px;
    border: 2px solid #48CAE4; 
    border-radius: 50%;
}

.os-title {
    font-size: 46px;
    font-weight: 400; 
    line-height: 1.3;
    color: #111111;
}

/* --- Grid & Column Layout --- */
.os-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr; /* Exact left-heavy proportion */
    gap: 25px;
    align-items: stretch; /* Forces columns to equal height */
}

.os-col-left {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.os-col-right {
    display: flex;
    flex-direction: column;
	height: 572.2px;
}

/* --- Universal Card Logic --- */
.os-card {
    background-color: #F6F5ED; /* Cream card background */
    border-radius: 20px;
    /* THIS IS THE MAGIC NUMBER: 12px creates the exact image border you want */
    padding: 5px; 
    display: flex;
    box-sizing: border-box;
}

/* Adding extra padding ONLY to the text so it aligns perfectly */
.os-text-box {
    padding: 24px 24px 15px 24px; 
}

.os-card-title {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #000000;
}

.os-card-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #333333;
    font-weight: 400;
}

/* --- 1. Mission Card --- */
.os-card-mission {
    flex-direction: column;
}

.os-img-mission {
    background-color: #D3E4A2;
    background-image: url('1051x209.png'); 
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    width: 100%; /* Stretches exactly to the 12px padding boundary */
    aspect-ratio: 1051 / 209; /* Locks your exact dimensions */
}

/* --- 2. Freebies Card --- */
.os-card-freebies {
    flex-direction: row;
    align-items: stretch; /* Makes sure the image fills the vertical space */
    flex: 1; /* Pushes card to match Right Column height */
    gap: 5px; /* Creates the gap between the white boxes and the image */
}

.os-freebies-left {
    flex: 1; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Indents perfectly to align with Mission text above it */
    padding: 24px 0 0px 0px;
}

.os-freebies-list {
    list-style: none;
	align-content: stretch;
    padding: 0;
    margin: 0;
}

.os-freebies-list li {
    background-color: #FFFFFF; 
    padding: 16px 16px 16px 0px;
    border-radius: 16px;
    margin-bottom: 5px; 
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    color: #000000;
    width: 100%; /* Ensures white boxes stretch */
}

.os-freebies-list li:last-child {
    margin-bottom: 0;
}

.os-img-freebies {
    background-color: #D3E4A2;
    background-image: url('469x300.png');
    background-size: cover;
    background-position: center;
    border-radius: 16px;
	height: auto;
    flex: 1.0; /* Takes slightly more than half the card width like in the image */
}

/* --- 3. About Card --- */
.os-card-about {
    flex-direction: column;
    height: 100%;
	text-align: justify;
	letter-spacing: 0.5px;
}

.os-img-about {
    background-color: #D3E4A2;
    background-image: url('501x300.png');
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    width: 100%;
	margin-top: auto;
    height: 237px;;
    flex: none; /* Disables auto-stretching */
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .os-grid { grid-template-columns: 1fr; }
    .os-card-freebies { flex-direction: column; }
    .os-freebies-left { padding: 20px; }
    .os-img-freebies { min-height: 250px; }
}



/* =========================================
   FACULTY SECTION (PIXEL PERFECT)
========================================= */

.fa-section {
	position: relative; /* Add this line */
    z-index: 10;        /* Add this line */
    background-color: #F8F7F2; /* Cream background matching upper sections */
    padding: 100px 5%; /* Side padding matches upper sections for equal margins */
    font-family: 'Montserrat', sans-serif;
}

.fa-container {
    max-width: 1300px; /* Same width as os-container for vertical alignment */
    margin: 0 auto;
}

/* --- Header --- */
.fa-header {
    text-align: left; /* Aligned left per the reference image */
    margin-bottom: 60px;
}

.fa-tagline {
    color: #6b7a85;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.fa-circle {
    display: inline-block;
    width: 10px;
    height: 10px;
    border: 2px solid #48CAE4; 
    border-radius: 50%;
}

.fa-title {
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    color: #111111;
}

/* --- Grid --- */
.fa-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    align-items: stretch; /* Forces all cards to match the tallest one */
}

/* --- Card Styling --- */
.fa-card {
    background-color: #FFFFFF;
    border-radius: 20px;
    padding: 5px;
    display: flex;         /* Added */
    flex-direction: column; /* Added */
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.fa-img-wrapper {
    background-color: #F6F5ED; /* Grey/Cream internal box */
    border-radius: 15px;
    height: auto;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-end; /* Portraits usually sit at the bottom */
}

.fa-img-wrapper img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.fa-info {
   padding: 25px 25px 15px 25px;
    display: flex;
    flex-direction: column;
    flex: 1; /* This pushes the button down by taking up all available space */
}

.fa-info h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #000;
}

.fa-subject {
    font-size: 14px;
    color: #6b7a85;
    margin-bottom: 15px;
}

.fa-exp {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.4;
}

.fa-exp span {
    font-size: 13px;
    color: #555;
    font-weight: 400;
}

/* --- Button --- */
.fa-btn {
  display: block;
    width: 100%;
    padding: 12px 0;
    border: 1px solid #111111;
    border-radius: 10px;
    text-align: center;
    color: #111111;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin-top: auto; /* This only works if the parent (fa-info) has flex: 1 */
    transition: all 0.3s ease;
}

.fa-btn:hover {
    background-color: #111111;
    color: #FFFFFF;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .fa-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .fa-grid { grid-template-columns: 1fr; }
}



/* =========================================
   WHY US SECTION (PIXEL PERFECT)
========================================= */

.wu-section {
    background-color: #FFFFFF; /* Matches the clean white background */
    padding: 100px 5%; /* Matches the exact side margins of the page */
    font-family: 'Montserrat', sans-serif;
}

.wu-container {
    max-width: 1300px; /* Locks it into the exact same column width as upper sections */
    margin: 0 auto;
}

/* --- Header Styling --- */
.wu-header {
    text-align: center;
    margin-bottom: 70px;
}

.wu-tagline {
    color: #6b7a85;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.wu-circle {
    display: inline-block;
    width: 10px;
    height: 10px;
    border: 2px solid #48CAE4; 
    border-radius: 50%;
}

.wu-title {
    font-size: 48px;
    font-weight: 400; 
    line-height: 1.3;
    color: #111111;
}

/* --- Grid Layout --- */
.wu-grid {
    display: grid;
    /* This creates the perfect 3-column split: flexible sides, 480px fixed center */
    grid-template-columns: 1fr 480px 1fr; 
    gap: 50px;
    align-items: center;
}

.wu-col-left, .wu-col-right {
    display: flex;
    flex-direction: column;
    gap: 40px; /* Vertical space between features */
}

/* --- Feature Blocks (Left Side Default) --- */
.wu-feature {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Aligns icon and text to the left */
    text-align: left;
    border-bottom: 1px solid #EAEAEA; /* The subtle line from your UI */
    padding-bottom: 25px;
}

/* --- Feature Blocks (Right Side Override) --- */
.wu-col-right .wu-feature {
    align-items: flex-end; /* Aligns icon and text to the RIGHT */
    text-align: right;
}

.wu-icon {
    width: 45px;
    height: 45px;
    object-fit: contain;
    margin-bottom: 15px;
}

.wu-feature h3 {
    font-size: 22px;
    font-weight: 500;
    color: #111111;
    margin-bottom: 10px;
}

.wu-feature p {
    font-size: 15px;
    color: #888888; /* Soft grey text */
    line-height: 1.6;
    font-weight: 400;
    margin: 0;
}

/* --- Center Circular Image --- */
.wu-img-circle {
    width: 100%;
    aspect-ratio: 1 / 1; /* Forces it to be a perfect square */
    border-radius: 50%; /* Turns the square into a perfect circle */
    background-color: #D3E4A2;
    background-image: url('center-circle.png'); /* Add your image here */
    background-size: cover;
    background-position: center;
}

/* --- Responsive Design for Smaller Screens --- */
@media (max-width: 1100px) {
    .wu-grid { grid-template-columns: 1fr 400px 1fr; gap: 30px; }
}

@media (max-width: 900px) {
    .wu-grid { grid-template-columns: 1fr; }
    .wu-img-circle { max-width: 400px; margin: 0 auto; margin-bottom: 40px; }
    
    /* On mobile, reset the right column to left-align so it stacks cleanly */
    .wu-col-right .wu-feature { align-items: flex-start; text-align: left; }
}



/* =========================================
   FAQ SECTION (PIXEL PERFECT)
========================================= */

.fq-section {
    background-color: #FFFFFF;
    padding: 100px 5%;
    font-family: 'Montserrat', sans-serif;
}

.fq-container {
    max-width: 1300px;
    margin: 0 auto;
}

.fq-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: flex-start;
}

/* --- Header & Tagline --- */
.fq-tagline {
    color: #48CAE4; /* Cyan color */
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.fq-circle {
    display: inline-block;
    width: 8px;
    height: 8px;
    border: 2px solid #48CAE4; 
    border-radius: 50%;
}

.fq-title {
    font-size: 48px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 50px;
    color: #111111;
}

/* --- Support Card --- */
.fq-support-card {
    background-color: #F6F5ED;
    border-radius: 30px;
    padding: 40px;
    max-width: 450px;
}

.fq-support-item {
    margin-bottom: 20px;
}

.fq-support-label {
    font-size: 14px;
    color: #999;
    margin-bottom: 10px;
}

.fq-support-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fq-support-val {
    font-size: 18px;
    font-weight: 600;
    color: #111111;
}

.fq-support-icon {
    font-size: 24px;
    color: #48CAE4;
}

.fq-divider {
    height: 1px;
    background-color: #DDD;
    margin: 20px 0;
}

/* =========================================
   FAQ SECTION (UPDATED)
========================================= */

.fq-section {
    background-color: #FFFFFF;
    padding: 100px 5%;
    font-family: 'Montserrat', sans-serif;
}

.fq-container {
    max-width: 1300px;
    margin: 0 auto;
}

.fq-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: flex-start;
}

.fq-tagline {
    color: #48CAE4;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.fq-circle {
    display: inline-block;
    width: 8px;
    height: 8px;
    border: 2px solid #48CAE4; 
    border-radius: 50%;
}

.fq-title {
    font-size: 48px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 50px;
    color: #111111;
}

.fq-support-card {
    background-color: #F6F5ED;
    border-radius: 30px;
    padding: 40px;
    max-width: 450px;
}

.fq-support-label {
    font-size: 14px;
    color: #999;
    margin-bottom: 10px;
}

.fq-support-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fq-support-val {
    font-size: 16px;
    font-weight: 600;
    color: #111111;
}

.fq-divider {
    height: 1px;
    background-color: #DDD;
    margin: 20px 0;
}

/* Accordion Styles */
.fq-accordion {
    border-top: 1px solid #DDD;
}

.fq-item {
    border-bottom: 1px solid #DDD;
}

.fq-question {
    padding: 30px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    font-weight: 500;
}

.fq-toggle {
    position: relative;
    width: 20px;
    height: 20px;
}

/* Creating the + and - with CSS */
.fq-toggle::before, .fq-toggle::after {
    content: '';
    position: absolute;
    background-color: #000;
    transition: all 0.3s ease;
}

/* Horizontal line */
.fq-toggle::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

/* Vertical line */
.fq-toggle::after {
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

/* Turn + into - */
.fq-item.active .fq-toggle::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

/* Hide answer by default */
.fq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.fq-answer p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
    padding-bottom: 30px;
    margin: 0;
}

/* Show answer when active */
.fq-item.active .fq-answer {
    max-height: 300px; /* Large enough to fit text */
}


/* =========================================
   FINAL FOOTER SECTION (ONE-IMAGE BANNER)
========================================= */

.ft-section {
    background-color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
}

.ft-container {
    max-width: 1300px; /* Matches upper sections */
    margin: 0 auto;
    padding: 0;
    position: relative;
}

/* --- 1. Combined Banner Image --- */
.ft-banner-image {
    /* REPLACE 'footer-banner.jpg' with your actual filename */
    background-image: url('Strip.png'); 
    background-size: cover;
    background-position: center;
    width: 100%;
    min-height: 350px; /* Height of your image strip */
    display: flex;
    align-items: center;
}

.ft-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.ft-banner-left h2 {
    color: #FFFFFF;
    font-size: 54px;
    font-weight: 400;
    line-height: 1.1;
}

.ft-banner-right {
    text-align: right;
    max-width: 350px;
}

.ft-banner-right p {
    color: #FFFFFF;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.ft-btn-cyan {
    display: inline-block;
    background-color: #48CAE4;
    color: #081812;
    padding: 14px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s ease;
}

/* --- 2. Bottom Info Area --- */
.ft-bottom {
    padding: 80px 0 40px 0;
}

.ft-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.ft-label {
    color: #999;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.ft-value {
    color: #111;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 5px;
}

/* --- Logo Styling --- */
.ft-main-logo {
    max-width: 320px;
    height: auto;
    display: block;
    margin-left: -30px; /* Aligns visually with the 'C' in Contact */
}

/* Responsive */
@media (max-width: 992px) {
    .ft-banner-content { flex-direction: column; text-align: center; gap: 30px; }
    .ft-banner-right { text-align: center; }
    .ft-info-grid { grid-template-columns: 1fr; }
}
