﻿body {
    background-color: #fff7d8;
}

/* 🔹 HEADER */
/*.main-header {
    background: url('/images/bg.png') center/cover no-repeat;
    position: relative;
    padding: 20px 10px 80px;
    text-align: center;
}*/
.main-header {
    width: 100%;
    height: 300px;
    background-image: url('../images/bg.jpeg');
    background-size: contain; /* 🔥 IMPORTANT */
    background-position: center;
    background-repeat: no-repeat;
    background-color: #fff7d8; /* fills empty space */
    margin-top: -15px;
    margin-bottom: -20px;
}

/* Container */
.header-container {
    position: relative;
}
.welcome-title {
    font-size: 42px;
    font-weight: 700;
    color: black; /* 🔥 contrast with red background */
    letter-spacing: 1px;
    text-transform:;
    display: inline-block;
    padding: 10px 25px;
    background: #ffe7bb; /* your theme */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.welcome-icon {
    margin-right: 10px;
}
/* 🔹 Logos */
.logo {
    position: absolute;
    top: 10px;
    height: 60px;
}

.left-logo {
    left: 10px;
}

.right-logo {
    right: 10px;
}

/* 🔹 Leaders */
.leaders {
    position: absolute;
    left: 120px;
    top: 10px;
    display: flex;
    gap: 10px;
}

/* 🔹 PM */
.pm-section {
    position: absolute;
    right: 120px;
    top: 10px;
}

/* 🔹 Person Sizes */
.person.small {
    height: 80px;
}

.person.medium {
    height: 100px;
}

.person.large {
    height: 130px;
}

/* 🔹 Diamond Icons */
.dham-icons {
    margin-top: 20px;
}

.diamond {
    width: 70px;
    height: 70px;
    transform: rotate(45deg);
    margin: 10px;
    object-fit: cover;
}
.advisory-title {
    font-size: 32px;
    font-weight: bold;
    color: #c0392b; /* deep red */
    border-bottom: 3px solid #c0392b;
    display: inline-block;
    padding-bottom: 5px;
    letter-spacing: 1px;
}
   
/* 🔹 Title */
.header-text {
    margin-top: 30px;
}

    .header-text h1 {
        color: #d35400;
        font-weight: bold;
    }

    .header-text h5 {
        color: #2c3e50;
       
    }

/* 🔹 Footer */
.footer-strip {
    background: #c3cdd3;
    color: #b03a2e;
    text-align: center;
    padding: 10px;
    font-weight: bold;
    
}
.developer-credit {
    font-size: 12px;
    opacity: 0.8;
    color:black;
}

/* Floating button widget*/


.cardbg {
    background: #ffe7bb;
}
    .cardbg p {
        text-transform: capitalize;
    }

/* Container */
.floating-call {
    position: fixed;
    right: 15px;
    z-index: 9999;
    font-family: Arial, sans-serif;
    transition: all 0.3s ease;
}

/* OPEN → Center Right */
.floating-call.active {
    top: 60%;
    transform: translateY(-50%);
}

/* CLOSED → Bottom Right */
.floating-call:not(.active) {
    bottom: 20px;
}

/* Toggle Button */
.call-toggle {
    width: 55px;
    height: 55px;
    background: #ff6f00;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 55px;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);

    /*added later*/
    position: absolute;
    right: -10px; /* move outside to right */
    top:-25px;
    transform: translateY(-50%);
}

/* Options */
.call-options {
    display: none;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 12px;
}

/* Show when active */
.floating-call.active .call-options {
    display: flex;
}

/* Buttons */
.call-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 30px;
    background: white;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    min-width: 120px;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    transition: all 0.2s ease;
}

    /* Click effect */
    .call-btn:active {
        transform: scale(0.95);
    }

/* Icon Styling (BIGGER) */
.icon {
    font-size: 26px;
    line-height: 1;
}

/* Number text */
.call-btn span:last-child {
    font-weight: 600;
    font-size: 15px;
}

/* Icon colors */
.ambulance {
    color: #d32f2f;
}
/* red */
.emergency {
    color: #f57c00;
}
/* orange */
.health {
    color: #2e7d32;
}
/* green */

.image-card img {
    height: 160px;
    width: 100%;
    object-fit: cover;
    transition: all 0.25s ease;
}

.image-card:hover img {
    transform: scale(1.05);
}

.image-card p {
    font-size: 14px;
    color: #333;
}