﻿* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.cssf4{font-size: 4pt;}

body {
    margin: 0;
    padding-bottom: 80px; /* Space for fixed footer */
    font-size: 16pt;
}

.cssPageTitle {
    color: #808080;
    font-size: 20pt;
    font-weight: bold;
}
.cssPageSubTitle {
    color: #808080;
    font-size: 17pt;
    font-weight: bold;
}
.cssAbout {
    font-size: 17pt;
}
.cssReadMore {
    color: gray;
}
.cssReadMore a, visited {    color: gray;}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #eee;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 1000;
}

    header .logo {
        font-size: 24px;
        font-weight: bold;
    }

.logo span {
    color: red;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.content {
    max-width: 900px;
    margin: 100px auto 0;
    padding: 20px;
}

    .content h1 {
        font-size: 48px;
        margin-bottom: 10px;
    }

.divider {
    width: 200px;
    height: 2px;
    background: linear-gradient(to right, black 40%, red 50%, lightblue 60%);
    margin: 20px 0;
}

.contact-details {
    font-size: 16px;
    margin-bottom: 30px;
}

    .contact-details b {
        color: #444;
    }

.contact-img {
    max-width: 100%;
    border-radius: 4px;
}
.header-inner {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #eee;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    gap: 80px;
    align-items: center;
    height: 60px;
    box-shadow: 0 -2px 4px rgba(0,0,0,0.1);
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

    .footer-item i {
        background: red;
        color: white;
        border-radius: 50%;
        padding: 8px;
        font-style: normal;
    }

/* Responsive (optional) */
@media (max-width: 600px) {
    header, footer {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
    }

    footer {
        gap: 20px;
    }
}

img.centered {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.cssCentered {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #c00; /* red */
    display: flex;
    align-items: center;
    justify-content: center;
}

    .icon-circle img {
        width: 24px;
        height: 24px;
        object-fit: contain;
    }


.circle-row {
    display: flex;
    align-items: center;
}

.circle-container {
    padding-top:20px;
    padding-bottom:40px;
    position: relative;
    width: 150px;
    height: 150px;
    border: 5px solid red;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #666;
    font-family: sans-serif;
    background: white;
    box-shadow: 0 0 6px rgba(0,0,0,0.1);
}

    .circle-container .icon-overlay {
        position: absolute;
        top: -20px; /* Fine-tune placement */
        left: -20px; /* Fine-tune placement */
        width: 40px;
        height: 40px;
    }

.circle-label {
    margin-left: 50px;
    font-size: 16px;
    color: #333;
    max-width: 600px;
}

a {
    text-decoration: none; /* Remove underline */
    color: #c00; /* Set a clean, accessible link color */
    font-weight: 500; /* Slightly bolder text for clarity */
    transition: color 0.2s ease; /* Smooth hover transition */
}

    a:hover,
    a:focus {
        color: #900; /* Darker red on hover/focus */
        text-decoration: underline; /* Optional: underline on hover for clarity */
    }

    a:visited {
        color: #800000; /* Visited state, subtle but visible */
    }

    a:active {
        color: #600; /* Optional: different color on click */
    }

    a.cssReadMore {
        display: inline-block;
        margin-top: 5px;
        font-size: 14px;
        color: #c00;
        font-weight: bold;
    }



.team-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin: 40px auto;
    max-width: 1200px;
}

.team-card {
    background-color: #eee;
    padding: 30px;
    width: 300px;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

    .team-card h2 {
        font-size: 24px;
        margin-bottom: 5px;
        color: #222;
    }

    .team-card h4 {
        font-size: 16px;
        font-weight: normal;
        margin-bottom: 15px;
        color: #555;
    }

    .team-card p {
        font-size: 15px;
        color: #555;
        line-height: 1.5;
    }




.hero-box {
    max-width: 1060px;
    width: 1060px;
    margin: 40px auto;
    padding: 40px 20px;
    text-align: center;
    background: linear-gradient(to bottom, #f8f9fa, #e4e9ec);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 8px;
}

    .hero-box h2 {
        font-size: 28px;
        color: #555;
        font-weight: 600;
        margin-bottom: 20px;
    }

    .hero-box p {
        font-size: 16px;
        color: #444;
        line-height: 1.6;
        margin: 10px 0;
    }

.icon-row {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 3px solid red;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    justify-content: center;
    transition: transform 0.2s ease;
}

    .icon-box img {
        width: 32px;
        height: 32px;
        margin-bottom: 8px;
    }

    .icon-box div {
        font-size: 14px;
        color: #333;
    }

    .icon-box:hover {
        transform: scale(1.05);
    }

    .cssPhotoPad {
        padding:30px;        
    }