* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #f1f5f9;
    color: #1f2937;
}

h1, h2, h3, h4, h6 {
    /*font-family: 'Playfair Display', serif;*/
}

.container {
    max-width: 1300px;
    margin: auto;
    padding: 0 24px;
}

/* HEADER */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 0 24px;
    background: #fffffff2;
    border-bottom: 1px solid #e5e7eb;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    gap: 10px;
    align-items: center;
}

.logo-badge {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 8px;
    border-radius: 6px;
}

.logo-badge img {
    height: 32px; 
    width: auto;
    object-fit: contain;
}

.logo strong {
    display: block;
    font-size: 16px;
}

.logo small {
    font-size: 12px;
    color: #cbd5e1;
}

nav {
    display: flex;
    gap: 22px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #334155;
    font-size: 14px;
}

.btn-primary {
    background: #0284c5;
    color: #fff;
    padding: 8px 28px;
    border-radius: 6px;
}

.btn-outline {
    border: 1px solid #fff;
    color: #fff;
    padding: 8px 28px;
    border-radius: 6px;
    background: #ffffff24;
}

/* HERO */
.hero {
    background:
        linear-gradient(
            hsla(215, 24%, 26%, 0.75),
            hsla(215, 24%, 26%, 0.75)
        ),
        url("../images/hero_banner.jpg") center/cover;
    color: #fff;
    padding: 50px 0;
    padding-top: 100px;
}

.hero-content {
    max-width: 780px;
    padding: 0 24px;

}

.pill {
    background: #0284c533;
    padding: 10px 18px;
    border-radius: 20px;
    font-size: 13px;
    border: 1px solid #0284c54d;
}

.hero h1 {
    font-size: 60px;
    margin: 20px 0;
    line-height: 1;
}

.hero .explore {
    font-size: 20px;
    color: #0284c5;
    padding-top: 10px;
}

.hero p {
    font-size: 18px; 
    color: #e5e7eb;
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin: 24px 0;
}

.hero-actions a {
    text-decoration: none;
}

.hero-stats {
    display: flex;
    gap: 60px;
    margin-top: 30px;
    justify-content: space-between;
    flex-wrap: wrap; 
}

.hero-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-group i {
    font-size: 18px;
    padding: 8px;
    color: #0284c5;
    background: #0284c533;
    border-radius: 8px;
}

.hero-group strong {
    font-size: 22px;
}

.hero-group span {
    font-size: 16px;
    color: #d3cccc;
}

/* ABOUT */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 70px 0;
}

.about h6 {
    color: #0284c5;
    font-size: 15px;
    margin: 0;
}

.about h2 {
    font-size: 35px;
}

.about p {
    line-height: 1.7;
    font-size: 18px;
}

.about ul {
    padding-left: 18px;
    font-size: 18px;
    line-height: 1.7;
}

.cards{
    display: flex;
    gap: 20px;
}

.info-card {
    background: #f8fafc;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid #0284c529;
}

.info-card i {
    color: #0284c5;
    background: #0284c526;
    padding: 8px;
    border-radius: 10px;
    font-size: 20px;
}

.info-card h4 {
    font-size: 20px;
}

.info-card p {
    font-size: 14px;
}

.expertise {
    padding: 20px;
    background: #324052;
    border-radius: 10px;
    color: #fff;
}

.expertise h4 {
    font-size: 20px;
    margin-top: 10px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 10px;
}

.expertise-grid p {
    padding: 10px;
    background: #ffffff33;
    border-radius: 5px;
    margin: 0;
    font-size: 16px;
    line-height: 1.3;
}

.expertise-grid p span {
    color: #bfbaba;
    font-size: 14px;
}

/* DIRECTOR */
.director {
    padding: 70px 10px;
    background: #f8fafc;
}

.director h6 {
    color: #0284c5;
    font-size: 15px;
    margin: 0px;
}

.director h2 {
    font-size: 35px;
    margin-top: 10px;
}

.director-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    align-items: center;
}

.director-photo {
    position: relative;
    width: 100%;
}

.director-photo img {
    width: 100%;
    border-radius: 14px;
    display: block;
}

.director-name {
    position: absolute;
    bottom: 16px;        /* move text up/down */
    left: 16px;          /* left alignment */
    color: #fff;
    text-align: left;
}

.director-name strong {
    display: block;
    font-size: 18px;
    font-weight: 600;
}

.director-name span {
    display: block;
    font-size: 14px;
    opacity: 0.9;
}

.loc, .reg {
    margin: 8px;    
}

.loc i, .reg i {
    padding-right: 10px;    
}

.director-content p {
    padding: 15px;
    line-height: 1.5;
    background: #f1f5f9;
    border: 1px solid #c8d3df;
    border-radius: 10px;
}

.profession {
    padding: 15px;
    background: #f1f5f9;
    border: 1px solid #c8d3df;
    border-radius: 10px;
    margin-bottom: 15px;
}

.profession h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.title {
    display: flex;
    align-items: center;
    gap: 15px;
}

.title i {
    color: #0284c5;
    background: #0284c526;
    padding: 8px;
    border-radius: 10px;
    font-size: 18px;
}

.tags {
    padding-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px; 
}

.tags span {
    background: #324052;
    color: #fff;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 13px;
    white-space: nowrap;
}

.academic {
    padding: 15px;
    background: #f1f5f9;
    border: 1px solid #c8d3df;
    border-radius: 10px;
    margin-bottom: 15px;
}

.academic h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.education {
    padding-top: 14px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
}

.edu-details {
    padding: 10px;
    background: #d4dce5;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 500;
}

.edu-details span {
    font-size: 13px;
    font-weight: 400;
}

.professional {
    padding: 15px;
    background: #f1f5f9;
    border: 1px solid #c8d3df;
    border-radius: 10px;
    margin-bottom: 15px;
}

.professional h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.memberships {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 10px;
}

.memberships li {
    font-size: 14px;
}

/* SERVICES */
.services {
    padding: 70px 0;
}

.services h6 {
    color: #0284c5;
    font-size: 15px;
    margin: 0px;
}

.services h2 {
    font-size: 35px;
    margin-top: 10px;
}

.center-text {
    max-width: 700px;
    margin: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
    margin-top: 40px;
}

.service-card {
    background: #f8fafc;
    border: 1px solid #c8d3df;
    padding: 22px;
    border-radius: 12px;
}

.service-card i {
    color: #0284c5;
    background: #0284c526;
    padding: 12px;
    border-radius: 10px;
    font-size: 20px;
}

.service-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    margin: 0;
}

.service {
    padding-left: 18px;
    font-size: 14px;
    line-height: 1.7;
}

/* INFO */
.info {
    background: #324052;
    color: #fff;
    padding: 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 70px;
}

.info-details {
    display: flex;
    color: #fff;
    font-size: 18px;
}

.info-details i {
    padding: 15px;
    background: #ffffff38;
    margin-right: 10px;
    border-radius: 10px;    
}

.info-details span {
    font-size: 14px;
    color: #bfbfbf;
}

/* CONTACT */
.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 70px 10px;
    background: #f8fafc;
}

.contact h6 {
    color: #0284c5;
    font-size: 15px;
    margin: 0px;
}

.contact h2 {
    font-size: 35px;
    margin-top: 10px;
}

.contact-details {
    padding: 5px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-details i {
    color: #0284c5;
    background: #0284c526;
    padding: 12px;
    border-radius: 10px;
    font-size: 20px;
}

.contact-details span {
    font-size: 13px;
}

.contact-details p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

.contact-form {
    background: #f1f5f9;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #c8d3df;
    max-width: 700px;
}

.contact-form h3 {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #0f172a;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #c8d3df;
    border-radius: 6px;
    background: #f8fafc;
    font-size: 14px;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn-primary {
    margin-top: 10px;
    width: 100%;
    padding: 14px;
    background: #0284c7;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.submit-btn-primary:hover {
    background: #0369a1;
}

/* FOOTER */
.site-footer {
    background: #324052;
    color: #e5e7eb;
    padding: 50px 40px 20px;
    font-size: 14px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1.3fr 1.3fr;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.footer-col h4 {
    font-size: 15px;
    margin-bottom: 14px;
    color: #ffffff;
}

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

.footer-col ul li {
    margin-bottom: 10px;
    color: #d1d5db;
}

.footer-col ul li a {
    color: #d1d5db;
    text-decoration: none;
}

.footer-col ul li a:hover {
    text-decoration: underline;
}

.brand p {
    line-height: 1.6;
    margin-bottom: 14px;
}

.registered {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #7dd3fc;
    font-size: 13px;
}

/* Contact */
.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-list i {
    color: #38bdf8;
    margin-top: 3px;
}

/* Bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 40px;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
    color: #cbd5e1;
}

.tagline {
    font-style: italic;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        text-align: center;
        justify-content: center;
    }
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .about,
    .director-grid,
    .contact {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    nav {
        display: none;
    }

    .hero h1 {
        font-size: 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Hero Banner */
.quote-hero-banner {
    position: relative;
    height: 260px;
    background: url("../images/quote.jpg")
                center/cover no-repeat;
}

.quote-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.65);
}

/* Quote Section */
.quote-section {
    padding: 50px 80px;
}

.quote-section h2 {
    margin: 0;
    font-size: 35px;
}

.quote-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    max-width: 800px;
    padding-top: 50px
}

.quote-form select,
.quote-form input,
.quote-form textarea {
    width: 100%;
    padding: 12px;
    background: #d9d9d9;
    border: none;
    font-size: 14px;
}

.quote-form textarea {
    grid-column: span 2;
    height: 100px;
    resize: none;
}

.quote-form button {
    width: fit-content;
    background: #0b3b6f;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}
