:root {
    --gold: #D4AF37;
    --navy: #0B1021;
    --white: #FFFFFF;
    --light-grey: #f8f9fa;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: var(--white);
    color: #333;
    scroll-behavior: smooth;
}

/* Navigation */
nav {
    background: var(--navy);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 2000;
    border-bottom: 2px solid var(--gold);
}

.logo-text {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.nav-link a {
    color: var(--white);
    text-decoration: none;
    margin-left: 25px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.nav-link a:hover {
    color: var(--gold);
}

/* Hero Section */
header {
    height: 100vh;
    background: linear-gradient(rgba(11, 16, 33, 0.75), rgba(11, 16, 33, 0.75)),
        url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2000');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 0 10%;
}

header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin: 0;
    color: var(--gold);
    line-height: 1.2;
}

header p {
    font-size: 1.1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 15px;
}

/* General Section Styling */
section {
    padding: 100px 10%;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.gold-divider {
    width: 80px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto;
}

/* Profile & Mission Section */
.profile-box {
    background: var(--light-grey);
    padding: 50px;
    border-left: 8px solid var(--gold);
    line-height: 1.8;
    text-align: center;
}

.mission-box {
    font-style: italic;
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 40px auto;
    text-align: center;
}

/* Categories / Objects Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.card {
    background: white;
    padding: 40px;
    border: 1px solid #eee;
    transition: 0.4s;
    position: relative;
}

.card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.card h3 {
    color: var(--navy);
    margin-top: 0;
    font-family: 'Playfair Display', serif;
}

.navbar {
    background: var(--navy);
    border-bottom: 2px solid var(--gold);
}

.navbar-brand {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}

.nav-link {
    color: #fff !important;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.logo-text {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.nav-link:hover {
    color: var(--gold) !important;
}

/* "Before & After" Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.img-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 350px;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(50%);
    transition: 0.5s;
}

.img-container:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.label {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gold);
    color: var(--navy);
    padding: 5px 15px;
    font-weight: bold;
    font-size: 0.75rem;
    border-radius: 3px;
}

/* Working Manual SOPs */
.sop-section {
    background: var(--navy);
    color: white;
    padding: 80px 10%;
}

.sop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.sop-item {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sop-item h4 {
    color: var(--gold);
    margin-bottom: 5px;
}

/* Inquiry Form */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: var(--light-grey);
    padding: 50px;
    border-radius: 10px;
}

input,
textarea,
select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    font-family: inherit;
}

.submit-btn {
    background: var(--gold);
    color: var(--navy);
    border: none;
    padding: 15px 30px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    width: 100%;
}

/* Footer */
footer {
    background: #050814;
    color: var(--white);
    padding: 80px 10% 20px;
}

.footer-info p {
    margin: 5px 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    font-size: 0.75rem;
    opacity: 0.5;
}

form label {
    font-weight: 500;
    color: #333;
}

form .form-control,
form .form-check-input {
    border-radius: 6px;
}

.card {
    border-radius: 14px;
    background: #ffffff;
}

.application-form h1 {
    font-family: 'Montserrat', sans-serif;
    /* letter-spacing: 0.5px; */
    color: var(--navy);
}

.application-form .title-primary {
    color: var(--navy);
}

.form-check-input:checked {
    background-color: var(--gold);
    border-color: var(--navy);
}

.form-check-input1:checked {
    background-color: var(--navy);
    border-color: var(--gold);
}

.application-form h5 {
    font-weight: 600;
    border-left: 4px solid var(--gold);
    padding-left: 10px;
}

.application-form1 h5 {
    font-weight: 600;
    border-left: 4px solid white;
    padding-left: 10px;
}

hr {
    opacity: 0.15;
}

.form-check-label {
    font-size: 0.95rem;
}


.box-bg {
    background-color: var(--navy);
    border-radius: 7px;
}


button.btn-primary1 {
    background-color: var(--gold);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

button.btn-primary1:hover {
    background-color: white;
    color: var(--navy);
    transform: translateY(3px);
}

.card-body {
    padding: 3rem;
}

@media (max-width: 768px) {
    .card-body {
        padding: 2rem 1.5rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    .application-form {
        padding: 100px 0;
    }
}


.declaration-section {
    color: #555;
}

.declaration-section h6 {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gold);
}

.signature-line {
    border-bottom: 1px solid #999;
    height: 30px;
    width: 100%;
}

.stamp-box {
    border: 1px dashed #999;
    height: 40px;
    width: 100%;
}

input[type="file"] {
    padding: 6px;
}

.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 .25rem rgba(212, 175, 55, .25);
}

.form-check-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 .25rem rgba(212, 175, 55, .25);
}

.menu-btn li a {
    background-color: var(--gold);
    color: var(--navy);
}

.menu-btn li a:hover {
    border: 1px solid var(--gold);
    color: var(--gold);
}

.form-check .form-check-input {
    float: none !important;
}

#faq .section-title h2 {
    color: var(--gold);
}

.accordion-button:not(.collapsed) {
    background-color: var(--navy);
    color: var(--gold);
}

.accordion-button {
    background-color: var(--navy);
    color: var(--gold);
}

.accordion-button:focus {
    box-shadow: -2px -2px 5px 1px var(--gold);
}

.accordion-button::after {
    color: var(--gold);
}

.accordion-button:not(.collapsed)::after {
    color: var(--gold);
}

.accordion-body {
    color: var(--navy);
}

/* Gold arrow for accordion */
.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d4af37'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d4af37'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-item {
    border: 1px solid var(--gold);
}