/* ========================== VARIABLES ========================== */
:root {
    --font-base: "Poppins", sans-serif;
    --color-dark: #000000;
    --color-body: #727272;
    --color-brand: #5704ae;
    --color-brand-light: #6d00d0;
    --color-brand-gradient-rgb: 139, 1, 211, 1;
    --color-brand-rgb: 197, 255, 0;
    --box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.08);
    --transition: all 0.5s ease;
}

/* ========================== RESET & BASE ========================== */
body {
    font-family: var(--font-base);
    line-height: 1.7;
    color: var(--color-body);
    background-color: #fff;
}

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: var(--color-brand);
}

a:hover {
    color: var(--color-brand-light);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    color: var(--color-dark);
}

.text-brand {
    color: var(--color-brand);
}

.bg-brand {
    background-color: var(--color-brand);
    color: white;
}

.bg-brand-light {
    background-color: var(--color-brand-light);
    color: white;
}

/* ========================== UTILITIES ========================== */
.section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
}

.section-title {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.section-title h6 {
    color: var(--color-brand);
}

.theme-shadow {
    box-shadow: var(--box-shadow);
}

/* ========================== BUTTONS ========================== */
.btn {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 0;
    padding: 10px 24px;
}

.btn-brand {
    background-color: var(--color-brand);
    border-color: var(--color-brand);
    color: white;
}

.btn-brand:hover {
    background-color: var(--color-brand-light);
    border-color: var(--color-brand-light);
    color: black;
}

.btn-outline-brand {
    background-color: transparent;
    color: var(--color-brand);
    border: 2px solid var(--color-brand);
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-brand:hover {
    background-color: var(--color-brand);
    border-color: var(--color-brand);
    color: white;
}

.border-brand {
    border-color: var(--color-brand) !important;
}

.btn-appintment {
    background-color: var(--color-brand);
    border-color: var(--color-brand);
    color: white !important;
    border-radius: 10px;
}

.btn-appintment:hover {
    background-color: transparent;
    border-color: var(--color-brand);
    color: var(--color-brand) !important;
    outline: var(--color-brand) 3px solid;
}


/* ========================== CARD ========================== */
.card-move-up {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-move-up:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* ========================== NAVBAR ========================== */
.navbar {
    box-shadow: var(--box-shadow);
    background-color: #000000;
}

.navbar-brand img {
    height: 50px;
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: #000;
    margin-left: 15px;
    position: relative;
    transition: var(--transition);
}

/* Hover + active */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--color-brand-light);
}

/* Dropdown menu style */
.dropdown-menu {
    background-color: #111;
    border: none;
    padding: 10px 0;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.dropdown-menu .dropdown-item {
    color: #ffffff;
    padding: 10px 20px;
    transition: var(--transition);
}

.dropdown-menu .dropdown-item:hover {
    background-color: var(--color-brand-light);
    color: #ffffff;
}

/* Hover open dropdown on desktop */
@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
        animation: fadeDown 0.3s ease-in-out;
    }
}

/* Animation for dropdown */
@keyframes fadeDown {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.blink {
    animation: blinkText 0.7s infinite;
    transition: opacity 0.2s ease;
}

.blink:hover {
    animation: none;
    opacity: 1 !important;
}

@keyframes blinkText {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
    }
}

/* ========================== FOOTER ========================== */

footer {
    padding-top: 80px;
}

.footer-top {
    padding-bottom: 40px;
    border-bottom: 1px solid rgb(255, 255, 255, 0.1);
}

.footer-bottom {
    padding-top: 30px;
    padding-bottom: 30px;
}

footer li,
footer p,
footer a {
    color: rgb(255, 255, 255, 0.7);
}

footer ul {
    list-style: none;
    padding: 0;
}

footer .line {
    width: 45px;
    height: 4px;
    background: linear-gradient(90deg, #6500D3, #C600DC);
    ;
    margin-top: 12px;
    margin-bottom: 24px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(255, 255, 255, 0.1);
    border-radius: 100px;
}

.social-icons a:hover {
    background-color: var(--color-brand);
    color: black;
}

.footer-icon {
    color: var(--color-brand);
}

footer .form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: var(--color-brand-light);
}


/* ========================== FLOATING BUTTONS ========================== */

/* Floating Buttons Container */
.floating-buttons {
    position: fixed;
    right: 15px;
    bottom: 20%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

/* Each Button */
.fab-btn {
    background: #000;
    color: #fff;
    font-size: 22px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: background 0.3s;
}

/* Button Hover Effects */
.fab-btn:hover {
    color: #000;
}

/* Color Themes */
.whatsapp-btn {
    background: #1ebe57;
}

.call-btn {
    background: #0d6efd;
}

.email-btn {
    background: #ff9800;
}

/* Responsive */
@media (max-width: 768px) {
    .fab-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}


/* ========================== INDEX PAGE ========================== */

.hero-section {
    height: 100vh;
}

@media (max-width: 768px) {
    .hero-section {
        height: 80vh;
    }
}

.object-fit-cover {
    object-fit: cover;
    object-position: center;
}


/* OUR SOLUTIONS */
.category-img img {
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
    transition: transform 0.4s ease;
}

/* Optional subtle zoom on image hover */
.category-img img:hover {
    transform: scale(1.02);
    transition: 0.3s ease-in-out;
}


/* ------------- ABOUT US ---------------- */

/* Our values */
.value-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.1);
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
}

/* Color Variants */
.bg-purple {
    background: #7b2cff;
}

.bg-green {
    background: #28a745;
}

.bg-orange {
    background: #fd7e14;
}

.bg-blue {
    background: #0d6efd;
}

.bg-teal {
    background: #20c997;
}

.bg-red {
    background: #dc3545;
}


/* contact details */
/* Section Height */
.min-vh-75 {
    min-height: 75vh;
}

/* Left Info Panel */
.info-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.time-row {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 16px;
}

.contact-item i {
    font-size: 20px;
    color: var(--color-brand);
}

/* Map */
.map-wrapper {
    position: relative;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .min-vh-75 {
        min-height: auto;
    }

    .info-panel {
        padding: 2rem !important;
    }

    .map-wrapper iframe {
        height: 350px;
    }
}

/* ------------------ INFRASTRUCTURE ------------------ */
.infra-hero {
    background: url('/assets/images/infrastructure-hero.jpg') center/cover no-repeat;
    position: relative;
}

.infra-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.75) 100%,
            rgba(0, 0, 0, 0.5) 40%,
            rgba(0, 0, 0, 0.1) 0%);
}

.min-vh-75 {
    min-height: 75vh;
}

.infra-hero .badge {
    border-radius: 30px;
}



/* medical infra */
.infra-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.infra-card:hover {
    transform: translateY(-4px);
}

.infra-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.infra-content {
    padding: 16px;
}

.infra-content h6 {
    font-weight: 600;
    margin-bottom: 6px;
}

.infra-content p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

/* aesthetic */
.aesthetic-card {
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.aesthetic-img {
    position: relative;
}

.aesthetic-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.aesthetic-title {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.aesthetic-content {
    padding: 16px;
}

.aesthetic-content p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

/* CTA */
.cta-section {
    background: linear-gradient(90deg, #6500D3, #C600DC);
    padding: 40px 0;
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 991px) {
    .cta-section {
        padding: 50px 20px;
    }
}

/* safety */
.safety-card {
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.safety-card:hover {
    transform: translateY(-4px);
}

.safety-card i {
    font-size: 36px;
    color: #6f42c1;
    margin-bottom: 12px;
}

.safety-card h6 {
    font-weight: 600;
    margin-bottom: 8px;
}

.safety-card p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

/* ------------------ OUR TEAM ------------------ */
/* TEAM HERO SECTION */
.team-hero {
    background: linear-gradient(90deg, #6500D3, #C600DC);
}

/* leaders section */
/* LEADERSHIP SECTION */
.leadership-section {
    background: #fafafa;
}

.leader-name {
    font-size: 26px;
    font-weight: 600;
    color: #2c2c2c;
}

.leader-degree {
    font-size: 16px;
    font-weight: 500;
    color: #666;
}


.leader-role {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #7b2cbf;
    letter-spacing: 1px;
    margin-top: 5px;
}

.leader-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.leader-quote {
    margin-top: 20px;
    padding-left: 20px;
    border-left: 4px solid #7b2cbf;
    font-style: italic;
    color: #333;
    font-size: 15px;
}

.leader-img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    max-width: 90%;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .leader-name {
        font-size: 22px;
    }

    .leader-img {
        max-width: 100%;
    }
}


/* ------------------ OUR CARE ------------------ */

.accordion-button:focus {
    box-shadow: none;
    outline: none;
}

/* Active (opened) accordion header */
.accordion-button:not(.collapsed) {
    background-color: var(--color-brand);
    /* Bootstrap primary color */
    color: #fff;
    box-shadow: none;
}

/* Arrow icon color (active state) */
.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}


/* our care recap section */
.services-recap-scroller {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: .25rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.recap-card {
    flex: 0 0 auto;
    width: 280px;
    scroll-snap-align: start;
}


body{
  font-family: 'Segoe UI', sans-serif;
}

/* Section BG */
.section-bg{
  background: linear-gradient(135deg,#f5f7ff,#eef1ff);
}

/* Card Design */
.service-card{
  border-radius: 16px;
  transition: all 0.3s ease;
  background: #fff;
}

.service-card:hover{
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Icon Circle */
.icon-box{
  width:70px;
  height:70px;
  border-radius:50%;
  background: linear-gradient(135deg,#6f42c1,#a855f7);
  display:flex;
  align-items:center;
  justify-content:center;
  margin:auto;
  margin-bottom:15px;
  color:#fff;
  font-size:28px;
}

/* Title */
.section-title{
  font-weight:700;
}


@media (min-width: 768px) {
    .recap-card {
        width: 320px;
    }
}