
:root {
    --primary: #0f3b57;
    --secondary: #f59e0b;
    --dark: #0b1f2a;
    --light-bg: #f8fafc;
    --text-muted: #6b7280;
    --border-color: #e5e7eb;
    --primary-light: #00509e;
    --accent: #037bfc;
    --bg: #f4f4f4;
    --card: #ffffff;
    --text: #1f2937;
    --muted: #6d7481;
    --border: #d9e2ec;
    --success: #eaf4ff;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #111827;
}

.navbar {
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.navbar-brand {
    font-weight: 800;
    color: var(--primary) !important;
    font-size: 1.35rem;
    line-height: 1.2;
}

.navbar-brand small {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--secondary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-link {
    font-weight: 500;
    color: #1f2937 !important;
    margin-left: 10px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary) !important;
}

main {
    min-height: 65vh;
}

.footer {
    background: linear-gradient(135deg, #0b1f2a, #12384e);
    color: #f9fafb;
    padding-top: 60px;
    margin-top: 60px;
}

.footer h5,
.footer h6 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 18px;
}

.footer p,
.footer li,
.footer a,
.footer small {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
}

.footer a:hover {
    color: #fbbf24;
}

.footer .footer-logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.footer .footer-logo span {
    color: #fbbf24;
}

.footer .contact-box {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    height: 100%;
}

.footer .list-unstyled li {
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 35px;
    padding: 18px 0;
    text-align: center;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
}

.top-strip {
    background: var(--primary);
    color: #fff;
    font-size: 0.9rem;
    padding: 8px 0;
}

.top-strip span {
    margin-right: 20px;
}

@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.1rem;
    }

    .footer {
        padding-top: 40px;
    }
}

.banner {
    background-image: url("../images/Banner.jpg");
    background-size: cover;
    background-position: center;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    border-radius: 8px;
}

.banner-text {
    color: coral;
    font-size: 42px;
    font-weight: bold;
    text-shadow: 2px 2px 5px black;
    padding: 20px;
}

.service-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 10px;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner-subtext {
    color: white;
    font-size: 22px;
    text-shadow: 1px 1px 3px black;
}

.site-logo {
    width: 60px;
    height: 60px;
}

.about-hero {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #fff;
}

.about-hero .lead {
    max-width: 900px;
    margin: 0 auto;
}

.rounded-4 {
    border-radius: 1.25rem !important;
}

.hero-section {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.88), rgba(30, 41, 59, 0.55));
    z-index: 1;
}

.hero-image-card img {
    transition: transform 0.4s ease;
}

.hero-image-card:hover img {
    transform: scale(1.04);
}

.rounded-4 {
    border-radius: 1.2rem !important;
}

.card:hover {
    transform: translateY(-6px);
    transition: all 0.3s ease;
}

section {
    position: relative;
}

.hero-section {
    background: linear-gradient(135deg, #0f172a, #1e3a5f);
}

.hero-img {
    height: 430px;
    width: 100%;
    object-fit: cover;
}

.team-card {
    background: var(--card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    transition: all  0.3s ease;
}

.service-card,
.feature-box,
.industry-card,
.why-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-card:hover,
.feature-box:hover,
.industry-card:hover,
.team-card:hover,
.why-card:hover {
    transform: translateY(-6px);
}

.service-card h4,
.feature-box h3,
.industry-card h5,
.why-card h5 {
    font-weight: 700;
    margin-bottom: 14px;
    color: #0f172a;
}

.service-card p,
.feature-box p,
.industry-card p,
.why-card p {
    color: #6b7280;
    margin-bottom: 0;
}

.service-card ul {
    padding-left: 18px;
    margin-bottom: 0;
}

.service-card ul li {
    margin-bottom: 8px;
    color: #374151;
}

.tag-item {
    display: block;
    background: #f3f4f6;
    color: #111827;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 500;
}

.why-section {
    background: linear-gradient(135deg, #111827, #1f2937);
}

.why-card {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.why-card h5,
.why-card p {
    color: #fff;
}

@media (max-width: 768px) {
    .hero-img {
        height: 300px;
    }

    .info-card,
    .form-card,
    .contact-side-card {
        padding: 22px;
    }
}


.contact-hero {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.contact-side-card {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
}

.info-card,
.form-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 32px;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
    border: 1px solid #eef2f7;
    height: 100%;
}

.info-item {
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid #e5e7eb;
}

.info-item h6 {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.info-item p {
    color: #6b7280;
    margin-bottom: 0;
    line-height: 1.7;
}

.custom-input {
    border-radius: 14px;
    border: 1px solid #dbe3ec;
    padding: 14px 16px;
    min-height: 52px;
    box-shadow: none;
}

textarea.custom-input {
    min-height: 140px;
    resize: vertical;
}

.pdf-container {
    width: 100%;
    height: calc(100vh - 70px);
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.download-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 4px;
}

.download-btn:hover {
    background: #0056b3;
}

.custom-input:focus {
    border-color: #f59e0b;
    box-shadow: 0 0 0 0.2rem rgba(245, 158, 11, 0.15);
}

.form-label {
    color: #111827;
    margin-bottom: 8px;
}

.btn-warning {
    border-radius: 14px;
}

.justify-row {
    display: flex;
    justify-content: space-between;
    align-items: start;
}

header {
    background-color: var(--primary);
    color: white;
    text-align: center;
    padding: 22px 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

header h1 {
    margin: 0;
    font-size: 2rem;
}

.profile-link {
            display: inline-block;
            text-decoration: none;
            color: var(--accent);
            font-weight: bold;
            font-size: 0.95rem;
        }

.profile-link:hover {
    text-decoration: underline;
}
.hero-subtitle {
    max-width: 760px;
    margin: 10px auto 0;
    font-size: 1rem;
    opacity: 0.95;
}
.top-actions {
            margin-top: 14px;
            display: flex;
            justify-content: center;
            gap: 10px;
            flex-wrap: wrap;
        }
.action-btn {
    display: inline-block;
    padding: 10px 16px;
    background: #0379f8;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.95rem;
    transition: background 0.2s ease;
}

.action-btn:hover {
    background: #0056b3;
}

.section-intro {
    /*background: #fff;*/
    border-radius: 10px;
    padding: 24px;
    margin-bottom: 28px;
    border: 1px solid var(--border);
    background-color: var(--primary);
    font-weight: bold;
}

.section-intro h2 {
    margin: 0 0 10px;
    color: white;
}

.section-intro p {
    margin: 0;
    color: var(--muted);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}


.member-photo {
    width: 100%;
    /*aspect-ratio: 3/4;*/
    object-fit: contain;
    background: #eef4fb;
    display: block;
}

.card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.member-name {
    margin: 0;
    font-size: 1.35rem;
    color: #0379f8;
}

.member-role {
    margin: 5px 0 0;
    font-weight: lighter;
}

.member-bio {
    margin: 0;
    color: var(--muted);
    font-size: 0.96rem;
}

.achievement-box {
    background: var(--success);
    border-left: 4px solid var(--primary-light);
    padding: 14px 14px 14px 16px;
    border-radius: 6px;
}

.achievement-box h3 {
    margin: 0 0 10px;
    font-size: 1rem;
    color: var(--primary);
}

.achievement-box ul {
    margin: 0;
    padding-left: 18px;
}

.achievement-box li {
    margin-bottom: 8px;
    color: #334155;
    font-size: 0.94rem;
}

.card-footer {
    margin-top: auto;
    padding-top: 4px;
}

.profile-link {
    display: inline-block;
    text-decoration: none;
    color: var(--accent);
    font-weight: bold;
    font-size: 0.95rem;
}

.profile-link:hover {
    text-decoration: underline;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin: 28px 0 28px;

}

.stat-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 18px;
    text-align: center;
}

.stat-card strong {
    display: block;
    font-size: 1.6rem;
    color: var(--primary);
}

.stat-card span {
    color: var(--muted);
    font-size: 0.95rem;
}

footer {
    margin-top: 40px;
    text-align: center;
    color: var(--muted);
    font-size: 0.92rem;
    padding: 16px;
}

@media (max-width: 640px) {
    header h1 {
        font-size: 1.7rem;
    }

    main {
        padding: 24px 14px 40px;
    }

    .section-intro,
    .card-body,
    .stat-card {
        padding: 18px;

    }
}