﻿:root {
    --main: #064E3B;
    --main2: #0F766E;
    --gold: #C9A227;
    --dark: #1F2937;
    --gray: #6B7280;
    --light: #F8FAFC;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Tahoma, Arial, sans-serif;
    background: #fff;
    color: var(--dark);
}

a {
    text-decoration: none;
}

.topbar {
    background: var(--main);
    color: #fff;
    padding: 9px 0;
    font-size: 14px;
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-header {
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    min-height: 86px;
    display: flex;
    align-items: center;
    gap: 25px;
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
    color: var(--main);
}

.logo-mark {
    width: 54px;
    height: 54px;
    background: var(--main);
    color: #fff;
    display: grid;
    place-items: center;
    border-radius: 8px;
    font-size: 28px;
    font-weight: bold;
}

.logo-text strong {
    display: block;
    font-size: 22px;
    font-weight: 900;
}

.logo-text small {
    color: var(--gray);
    font-size: 12px;
}

.menu {
    display: flex;
    align-items: center;
    gap: 22px;
    flex: 1;
    justify-content: center;
}

.menu a {
    color: var(--dark);
    font-weight: bold;
    font-size: 15px;
    transition: 0.3s;
}

.menu a:hover {
    color: var(--gold);
}

.admin-link {
    background: var(--gold);
    color: #fff;
    padding: 11px 22px;
    border-radius: 6px;
    font-weight: bold;
    white-space: nowrap;
}

.admin-link:hover {
    background: var(--main);
    color: #fff;
}

.footer {
    background: #052E24;
    color: #fff;
    margin-top: 0;
}

.footer-content {
    padding: 55px 0 35px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 35px;
}

.footer h4 {
    color: var(--gold);
    margin-bottom: 18px;
    font-weight: bold;
}

.footer p {
    line-height: 1.9;
    color: #e5e7eb;
}

.footer a {
    display: block;
    color: #e5e7eb;
    margin-bottom: 10px;
}

.footer a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);
    text-align: center;
    padding: 16px;
    color: #e5e7eb;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 992px) {
    .header-content {
        flex-direction: column;
        padding: 18px 0;
    }

    .menu {
        flex-wrap: wrap;
        gap: 14px;
    }

    .admin-link {
        margin-top: 5px;
    }
}

@media (max-width: 768px) {
    .topbar-content {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .menu {
        justify-content: center;
    }
}
.hero {
    min-height: 620px;
    background:
        linear-gradient(90deg, rgba(6,78,59,.95), rgba(6,78,59,.55)),
        url('../Images/hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero-box {
    max-width: 760px;
}

.hero-box span {
    color: var(--gold);
    font-weight: bold;
}

.hero-box h1 {
    font-size: 54px;
    font-weight: 900;
    line-height: 1.5;
    margin: 15px 0;
}

.hero-box p {
    font-size: 20px;
    line-height: 2;
    margin-bottom: 30px;
}

.hero-btn,
.hero-btn-outline {
    display: inline-block;
    padding: 13px 30px;
    border-radius: 6px;
    font-weight: bold;
    margin-left: 10px;
}

.hero-btn {
    background: var(--gold);
    color: #fff;
}

.hero-btn-outline {
    border: 1px solid #fff;
    color: #fff;
}

.about-home {
    padding: 85px 0;
}

.section-title {
    margin-bottom: 35px;
}

.section-title span {
    color: var(--gold);
    font-weight: bold;
}

.section-title h2 {
    color: var(--main);
    font-weight: 900;
    margin-top: 10px;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.about-grid p {
    color: var(--gray);
    font-size: 18px;
    line-height: 2;
}

.read-link {
    color: var(--main);
    font-weight: bold;
}

.about-list {
    background: var(--main);
    color: #fff;
    padding: 30px;
    border-radius: 8px;
}

.about-list div {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,.15);
}

.services-home {
    background: var(--light);
    padding: 70px 0;
}

.services-home .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #fff;
    border: 1px solid #eee;
}

.service-box {
    padding: 35px 25px;
    border-left: 1px solid #eee;
}

.service-box strong {
    color: var(--gold);
    font-size: 28px;
}

.service-box h3 {
    color: var(--main);
    font-size: 21px;
    font-weight: 900;
    margin: 15px 0;
}

.service-box p {
    color: var(--gray);
    line-height: 1.8;
}

.quality-home {
    padding: 90px 0;
    text-align: center;
}

.quality-home h2 {
    color: var(--main);
    font-weight: 900;
}

.quality-home p {
    color: var(--gray);
    max-width: 760px;
    margin: 20px auto;
    line-height: 2;
    font-size: 18px;
}

.quality-items {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.quality-items span {
    border: 1px solid #eee;
    padding: 12px 22px;
    color: var(--main);
    font-weight: bold;
    border-radius: 6px;
}

@media(max-width:768px) {
    .hero {
        min-height: auto;
        padding: 90px 0;
    }

    .hero-box h1 {
        font-size: 34px;
    }

    .about-grid,
    .services-home .container {
        grid-template-columns: 1fr;
    }

    .service-box {
        border-left: none;
        border-bottom: 1px solid #eee;
    }
}
.page-title {
    padding: 90px 0;
    background: linear-gradient(90deg, rgba(6,78,59,.95), rgba(6,78,59,.70)), url('../Images/page-header.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
}

.page-title span {
    color: var(--gold);
    font-weight: bold;
}

.page-title h1 {
    font-size: 46px;
    font-weight: 900;
    margin: 12px 0;
}

.page-title p {
    font-size: 18px;
    margin: 0;
}

.content-section {
    padding: 85px 0;
}

.two-col {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.content-section h2 {
    color: var(--main);
    font-weight: 900;
    line-height: 1.6;
}

.content-section p {
    color: var(--gray);
    line-height: 2;
    font-size: 17px;
}

.info-box {
    background: var(--main);
    color: #fff;
    padding: 35px;
    border-radius: 8px;
}

.info-box h3 {
    color: var(--gold);
    font-weight: bold;
}

.info-box p {
    color: #fff;
}

.cards-section {
    padding: 80px 0;
    background: var(--light);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.simple-card {
    background: #fff;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 8px;
}

.simple-card h3 {
    color: var(--main);
    font-weight: 900;
    margin-bottom: 15px;
}

.simple-card p {
    color: var(--gray);
    line-height: 1.9;
}

.service-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 18px;
}

@media(max-width:768px) {
    .two-col,
    .cards-grid {
        grid-template-columns: 1fr;
    }

    .page-title h1 {
        font-size: 34px;
    }
}
.news-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 16px;
}

.date {
    color: var(--gold);
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.details-box {
    max-width: 900px;
    margin: auto;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 35px;
}

.details-img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 22px;
}

.details-box h2 {
    color: var(--main);
    font-weight: 900;
    margin-bottom: 18px;
}

.details-box p {
    color: var(--gray);
    line-height: 2;
    font-size: 17px;
}

.gallery-card {
    position: relative;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-card div {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    padding: 25px;
    color: #fff;
    background: linear-gradient(transparent, rgba(0,0,0,.8));
}

.gallery-card h3 {
    font-weight: 900;
}

.gallery-card span {
    color: var(--gold);
    font-weight: bold;
}
.contact-grid,
.jobs-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 35px;
    align-items: start;
}

.contact-info,
.form-box,
.job-box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 30px;
}

.contact-info {
    background: var(--main);
    color: #fff;
}

.contact-info h2 {
    color: var(--gold);
    font-weight: 900;
    margin-bottom: 20px;
}

.contact-info p {
    color: #fff;
    line-height: 2;
}

.form-box h2,
.block-title {
    color: var(--main);
    font-weight: 900;
    margin-bottom: 22px;
}

.form-box label {
    font-weight: bold;
    color: var(--dark);
}

.form-control {
    border-radius: 6px;
    padding: 11px;
    border: 1px solid #ddd;
}

.form-control:focus {
    border-color: var(--main);
    box-shadow: none;
}

.main-btn {
    background: var(--gold);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: bold;
}

.main-btn:hover {
    background: var(--main);
}

.job-box {
    margin-bottom: 18px;
}

.job-box h3 {
    color: var(--main);
    font-weight: 900;
}

.job-box p {
    color: var(--gray);
    line-height: 1.8;
}

.job-box span {
    color: var(--gold);
    font-weight: bold;
}

@media(max-width:768px) {
    .contact-grid,
    .jobs-grid {
        grid-template-columns: 1fr;
    }
}
.login-page {
    min-height: 100vh;
    background:
        linear-gradient(90deg, rgba(6,78,59,.95), rgba(6,78,59,.65)),
        url('../Images/hero.jpg');
    background-size: cover;
    background-position: center;
    display: grid;
    place-items: center;
    padding: 25px;
}

.login-card {
    width: 420px;
    max-width: 100%;
    background: #fff;
    padding: 38px;
    border-radius: 10px;
    box-shadow: 0 25px 70px rgba(0,0,0,.25);
}

.login-logo {
    text-align: center;
    margin-bottom: 25px;
}

.login-mark {
    width: 62px;
    height: 62px;
    background: var(--main);
    color: #fff;
    display: grid;
    place-items: center;
    border-radius: 10px;
    font-size: 32px;
    font-weight: bold;
    margin: 0 auto 12px;
}

.login-logo h2 {
    color: var(--main);
    font-weight: 900;
    margin: 0;
}

.login-logo p {
    color: var(--gray);
    margin: 5px 0 0;
}

.login-card label {
    font-weight: bold;
    margin-bottom: 6px;
}

.login-input {
    margin-bottom: 15px;
    height: 46px;
}

.login-button {
    width: 100%;
    background: var(--gold);
    color: #fff;
    border: none;
    padding: 13px;
    border-radius: 6px;
    font-weight: bold;
    margin-top: 5px;
}

.login-button:hover {
    background: var(--main);
}

.login-msg {
    display: block;
    margin-bottom: 12px;
    color: #dc3545;
    font-weight: bold;
    text-align: center;
}

.back-home {
    display: block;
    text-align: center;
    margin-top: 18px;
    color: var(--main);
    font-weight: bold;
}
.admin-layout {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 280px 1fr;
    background: #f4f6f8;
}

.admin-sidebar {
    background: #052E24;
    color: #fff;
    padding: 25px;
}

.admin-brand {
    text-align: center;
    margin-bottom: 30px;
}

.admin-mark {
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: #fff;
    display: grid;
    place-items: center;
    margin: auto;
    border-radius: 10px;
    font-size: 30px;
    font-weight: bold;
}

.admin-brand h4 {
    margin: 12px 0 4px;
    font-weight: 900;
}

.admin-brand p {
    color: #d1d5db;
}

.admin-sidebar a {
    display: block;
    color: #e5e7eb;
    padding: 13px 15px;
    border-radius: 6px;
    margin-bottom: 8px;
    font-weight: bold;
}

.admin-sidebar a:hover,
.admin-sidebar a.active {
    background: var(--gold);
    color: #fff;
}

.admin-main {
    padding: 35px;
}

.admin-top {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.admin-top h2 {
    color: var(--main);
    font-weight: 900;
    margin: 0;
}

.admin-top p {
    margin: 5px 0 0;
    color: var(--gray);
}

.admin-view-btn {
    background: var(--main);
    color: #fff;
    padding: 11px 22px;
    border-radius: 6px;
    font-weight: bold;
}

.admin-view-btn:hover {
    color: #fff;
    background: var(--gold);
}

.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 25px;
}

.dash-card {
    background: #fff;
    padding: 28px;
    border-radius: 10px;
    border: 1px solid #eee;
}

.dash-card span {
    color: var(--gray);
    font-weight: bold;
}

.dash-card h3 {
    color: var(--main);
    font-size: 38px;
    font-weight: 900;
    margin-top: 12px;
}

.admin-panel {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #eee;
}

.admin-panel h3 {
    color: var(--main);
    font-weight: 900;
    margin-bottom: 20px;
}

.admin-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.admin-actions a {
    background: var(--light);
    color: var(--main);
    padding: 18px;
    border-radius: 8px;
    font-weight: bold;
    border: 1px solid #eee;
}

.admin-actions a:hover {
    background: var(--main);
    color: #fff;
}

@media(max-width: 992px) {
    .admin-layout {
        grid-template-columns: 1fr;
    }

    .dashboard-cards,
    .admin-actions {
        grid-template-columns: 1fr;
    }

    .admin-top {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
.lang-btn {
    border: 1px solid #ddd;
    color: var(--main);
    padding: 9px 14px;
    border-radius: 6px;
    font-weight: bold;
    margin-right: 6px;
}

.lang-btn:hover {
    background: var(--main);
    color: #fff;
}
.header-content {
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.menu {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 22px;
}

.header-actions{
    min-width:320px;
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:12px;
}

.language-switcher {
    display: flex;
    background: #f5f7fa;
    border: 1px solid #e5e7eb;
    border-radius: 30px;
    padding: 4px;
}

.language-switcher a {
    padding: 8px 16px;
    text-decoration: none;
    color: #374151;
    font-weight: 700;
    border-radius: 25px;
    transition: .3s;
}

.language-switcher a:hover {
    color: var(--main);
}

.active-lang {
    background: var(--main);
    color: #fff !important;
}

.admin-btn-modern {
    background: linear-gradient(135deg,#C9A227,#E0B93B);
    color: #fff;
    padding: 11px 20px;
    border-radius: 30px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: .3s;
    box-shadow: 0 6px 18px rgba(201,162,39,.35);
}

.admin-btn-modern:hover {
    background: var(--main);
    color: #fff;
    transform: translateY(-2px);
}
/* ===== HEADER V2 ===== */

.main-header{
    padding:0;
}

.header-content{
    min-height:85px;
}
/*.header-content{
    min-height:90px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:25px;
}*/

.logo-box{
    flex-shrink:0;
}

.menu{
    flex:1;
    display:flex;
    justify-content:center;
    gap:25px;
}

.menu a{
    position:relative;
    padding:8px 0;
}

.menu a:after{
    content:"";
    position:absolute;
    bottom:-5px;
    right:0;
    width:0;
    height:3px;
    background:var(--gold);
    transition:.3s;
}

.menu a:hover:after{
    width:100%;
}

.header-actions{
    display:flex;
    align-items:center;
    gap:12px;
    flex-shrink:0;
}

.language-switcher{
    display:flex;
    background:#f8fafc;
    border:1px solid #e5e7eb;
    border-radius:50px;
    overflow:hidden;
}

.language-switcher a{
    padding:10px 18px;
    font-size:14px;
    font-weight:700;
}

.active-lang{
    background:var(--main);
    color:#fff !important;
}

.admin-btn-modern{
    background:linear-gradient(135deg,#C9A227,#e6c85f);
    color:#fff;
    padding:12px 22px;
    border-radius:50px;
    font-weight:800;
    box-shadow:0 10px 25px rgba(201,162,39,.25);
}

.admin-btn-modern:hover{
    background:var(--main);
    color:#fff;
}

/* Mobile */

@media(max-width:991px){

    .header-content{
        flex-direction:column;
        padding:15px 0;
    }

    .menu{
        flex-wrap:wrap;
        gap:12px;
    }

    .header-actions{
        width:100%;
        justify-content:center;
    }
}
.logo-box,
.menu,
.header-actions {
    white-space: nowrap;
}

.header-content {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

.menu {
    flex: 1;
    display: flex !important;
    justify-content: center !important;
    gap: 18px;
}

.header-actions {
    display: flex !important;
    align-items: center !important;
    gap: 10px;
}

@media(max-width:1200px) {
    .menu {
        gap: 10px;
    }

    .menu a {
        font-size: 14px;
    }

    .admin-btn-modern {
        padding: 10px 14px;
    }
}
.header-actions{
    display:flex !important;
    align-items:center !important;
    gap:10px !important;
}

.language-switcher{
    display:flex !important;
    border:1px solid #ddd;
    border-radius:50px;
    overflow:hidden;
    background:#f8f8f8;
}

.language-switcher a{
    padding:8px 15px;
    text-decoration:none;
    color:#333 !important;
    font-weight:bold;
}

.language-switcher .active-lang{
    background:#064E3B;
    color:#fff !important;
}

.admin-btn-modern{
    background:#C9A227 !important;
    color:#fff !important;
    padding:10px 18px !important;
    border-radius:30px !important;
    text-decoration:none !important;
    font-weight:bold !important;
    display:inline-block !important;
}

.admin-btn-modern:hover{
    background:#064E3B !important;
}
.site-logo{
    height:70px;
    width:auto;
}
/* ===== LOGIN NEW DESIGN ===== */

.login-new{
    min-height:100vh;
    background:#f4f7f6;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:35px;
}

.login-wrapper{
    width:1050px;
    max-width:100%;
    min-height:620px;
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    display:grid;
    grid-template-columns:1.1fr .9fr;
    box-shadow:0 30px 90px rgba(0,0,0,.16);
}

.login-side{
    position:relative;
    background:
        linear-gradient(135deg, rgba(6,78,59,.95), rgba(15,118,110,.82)),
        url('../Images/hero.jpg');
    background-size:cover;
    background-position:center;
    color:#fff;
    display:flex;
    align-items:flex-end;
    padding:55px;
}

.login-side:before{
    content:"";
    position:absolute;
    inset:0;
    background:radial-gradient(circle at top left, rgba(201,162,39,.35), transparent 35%);
}

.login-side-content{
    position:relative;
    z-index:2;
}

.login-side-content h1{
    font-size:48px;
    font-weight:900;
    margin-bottom:12px;
}

.login-side-content p{
    font-size:20px;
    margin-bottom:28px;
    color:#f3f4f6;
}

.login-side-content ul{
    list-style:none;
    padding:0;
    margin:0;
}

.login-side-content li{
    background:rgba(255,255,255,.14);
    border:1px solid rgba(255,255,255,.18);
    padding:13px 18px;
    border-radius:12px;
    margin-bottom:12px;
    backdrop-filter:blur(8px);
}

.login-form-area{
    display:flex;
    align-items:center;
    justify-content:center;
    padding:45px;
}

.login-box-new{
    width:100%;
    max-width:390px;
}

.login-logo-new{
    text-align:center;
    margin-bottom:28px;
}

.login-logo-new img{
    max-width:180px;
    height:auto;
    margin-bottom:15px;
}

.login-logo-new h2{
    color:var(--main);
    font-weight:900;
    margin-bottom:6px;
}

.login-logo-new p{
    color:var(--gray);
    margin:0;
}

.input-group-custom{
    margin-bottom:18px;
}

.input-group-custom label{
    font-weight:800;
    color:var(--dark);
    margin-bottom:8px;
    display:block;
}

.input-group-custom .form-control{
    height:48px;
    border-radius:12px;
    border:1px solid #d1d5db;
    padding:10px 14px;
}

.input-group-custom .form-control:focus{
    border-color:var(--main);
    box-shadow:0 0 0 4px rgba(6,78,59,.10);
}

.login-submit{
    width:100%;
    border:none;
    background:linear-gradient(135deg,#064E3B,#0F766E);
    color:#fff;
    height:50px;
    border-radius:12px;
    font-weight:900;
    margin-top:8px;
    box-shadow:0 12px 25px rgba(6,78,59,.25);
}

.login-submit:hover{
    background:linear-gradient(135deg,#C9A227,#E0B93B);
}

.login-back{
    display:block;
    text-align:center;
    margin-top:18px;
    color:var(--main);
    font-weight:800;
}

.login-error{
    display:block;
    text-align:center;
    color:#dc2626;
    font-weight:800;
    margin-bottom:15px;
}

@media(max-width:900px){
    .login-wrapper{
        grid-template-columns:1fr;
    }

    .login-side{
        min-height:280px;
    }
}