

@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap");

/* =========================================================
   01. VARIABLES
   ========================================================= */

:root{
    --primary:#0A2F8F;
    --primary-dark:#082670;
    --primary-soft:#EEF3FF;
    --secondary:#E30613;
    --secondary-dark:#B80510;

    --white:#FFFFFF;
    --black:#111827;
    --heading:#172033;
    --text:#667085;
    --muted:#98A2B3;
    --surface:#F7F9FC;
    --border:#E5EAF2;

    --container:1180px;

    --radius-sm:10px;
    --radius-md:16px;
    --radius-lg:22px;

    --shadow-xs:0 2px 8px rgba(15,23,42,.04);
    --shadow-sm:0 8px 24px rgba(15,23,42,.06);
    --shadow-md:0 18px 50px rgba(15,23,42,.10);
    --shadow-lg:0 28px 80px rgba(15,23,42,.14);

    --transition:.28s ease;

    --topbar-height:40px;
    --navbar-height:78px;
    --navbar-scrolled:70px;
}


*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
    scroll-padding-top:118px;
}

body{
    font-family:"Poppins",sans-serif;
    font-size:15px;
    line-height:1.65;
    background:#fff;
    color:var(--text);
    overflow-x:hidden;
    text-rendering:optimizeLegibility;
    -webkit-font-smoothing:antialiased;
    padding-top:calc(var(--topbar-height) + var(--navbar-height));
}

img{
    display:block;
    width:100%;
    height:auto;
}

a{
    color:inherit;
    text-decoration:none;
    transition:var(--transition);
}

ul{
    list-style:none;
}

button,
input,
textarea,
select{
    font:inherit;
    outline:none;
}

button{
    cursor:pointer;
}

/* =========================================================
   03. SCROLLBAR
   ========================================================= */

::-webkit-scrollbar{
    width:7px;
}

::-webkit-scrollbar-track{
    background:#F3F4F6;
}

::-webkit-scrollbar-thumb{
    background:#CBD5E1;
}

::-webkit-scrollbar-thumb:hover{
    background:var(--primary);
}

/* =========================================================
   04. CONTAINER
   ========================================================= */

.container{
    width:min(100% - 40px,var(--container));
    max-width:var(--container);
    margin-inline:auto;
}

/* =========================================================
   05. TYPOGRAPHY
   ========================================================= */

h1,h2,h3,h4,h5,h6{
    margin:0;
    color:var(--heading);
    font-family:"Montserrat",sans-serif;
    font-weight:700;
    line-height:1.2;
    letter-spacing:-.02em;
}

h1{font-size:56px}
h2{font-size:40px}
h3{font-size:28px}
h4{font-size:22px}
h5{font-size:18px}
h6{font-size:16px}

p{
    margin:0;
    color:var(--text);
    font-size:15px;
}

/* =========================================================
   06. SECTIONS
   ========================================================= */

section{
    position:relative;
    padding:88px 0;
}

.section-padding{
    padding:88px 0!important;
}

.section-title{
    max-width:760px;
    margin:0 auto 50px;
    text-align:center;
}

.section-title.left{
    margin-left:0;
    text-align:left;
}

.section-title>span,
.section-subtitle{
    display:inline-block;
    color:var(--secondary);
    font-size:12px;
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.section-title h2{
    margin-bottom:16px;
}

.section-title p{
    max-width:720px;
    margin:0 auto;
    color:#74809A;
}

/* =========================================================
   07. BUTTONS
   ========================================================= */

.btn,
.project-btn{
    min-height:44px;
    padding:10px 20px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    border:1px solid transparent;
    border-radius:10px;
    font-family:"Poppins",sans-serif;
    font-size:13px;
    font-weight:600;
    line-height:1;
    white-space:nowrap;
    transition:var(--transition);
}

.btn:hover,
.project-btn:hover{
    transform:translateY(-2px);
}

.btn-primary{
    background:var(--primary)!important;
    border-color:var(--primary)!important;
    color:#fff!important;
}

.btn-primary:hover{
    background:var(--primary-dark)!important;
    border-color:var(--primary-dark)!important;
}

.btn-secondary,
.btn-gold{
    background:var(--secondary)!important;
    border-color:var(--secondary)!important;
    color:#fff!important;
}

.btn-secondary:hover,
.btn-gold:hover{
    background:var(--secondary-dark)!important;
    border-color:var(--secondary-dark)!important;
}

.btn-white{
    background:#fff!important;
    border-color:#fff!important;
    color:var(--primary)!important;
}

.btn-outline{
    background:#fff!important;
    border-color:var(--border)!important;
    color:var(--heading)!important;
}

.btn-outline:hover{
    border-color:var(--primary)!important;
    color:var(--primary)!important;
}

.btn-outline-light{
    background:transparent!important;
    border-color:rgba(255,255,255,.65)!important;
    color:#fff!important;
}

.btn-outline-light:hover{
    background:#fff!important;
    color:var(--primary)!important;
}

/* =========================================================
   08. TOP BAR
   ========================================================= */

.top-bar{
    position:fixed;
    top:0;
    left:0;
    right:0;
    width:100%;
    height:var(--topbar-height);
    min-height:var(--topbar-height);
    background:var(--primary);
    color:#fff;
    border-bottom:1px solid rgba(255,255,255,.12);
    box-shadow:0 2px 10px rgba(0,0,0,.06);
    z-index:1100;
}

.top-bar .container{
    height:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.top-contact,
.top-right,
.top-social{
    display:flex;
    align-items:center;
}

.top-contact{
    gap:20px;
    height:100%;
}

.top-contact a,
.top-contact>span{
    display:inline-flex;
    align-items:center;
    gap:7px;
    color:rgba(255,255,255,.92);
    font-size:11px;
    font-weight:500;
    line-height:1;
    white-space:nowrap;
}

.top-contact a:hover{
    color:#fff;
}

.top-contact i{
    font-size:11px;
    color:#fff;
}

.top-right{
    height:100%;
}

.top-social{
    gap:10px;
}

.top-social a{
    width:30px;
    height:30px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
}

.top-social a:hover{
    color:#DCE6FF;
}

/* Language */

.language-dropdown{
    position:relative;
    z-index:1200;
}

.language-btn{
    height:32px;
    display:flex;
    align-items:center;
    gap:7px;
    padding:0 10px;
    border:0;
    background:transparent;
    color:#fff;
    font-size:11px;
    font-weight:600;
}

.language-menu{
    position:absolute;
    top:38px;
    right:0;
    width:150px;
    padding:6px;
    margin:0;
    background:#fff;
    border:1px solid var(--border);
    border-radius:10px;
    box-shadow:var(--shadow-md);
    opacity:0;
    visibility:hidden;
    transform:translateY(5px);
    transition:var(--transition);
    z-index:2000;
}

.language-dropdown:hover .language-menu,
.language-dropdown:focus-within .language-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.language-menu li a{
    display:block;
    padding:10px 12px;
    border-radius:8px;
    color:#344054;
    font-size:12px;
}

.language-menu li a:hover{
    background:var(--surface);
    color:var(--primary);
}

/* =========================================================
   09. NAVBAR
   ========================================================= */

#siteNavbar{
    position:fixed!important;
    top:var(--topbar-height)!important;
    left:0;
    right:0;
    width:100%;
    height:var(--navbar-height);
    background:rgba(255,255,255,.98)!important;
    border:0;
    border-bottom:1px solid #E8ECF3;
    box-shadow:0 4px 18px rgba(15,23,42,.06);
    z-index:1090;
    transition:height .25s ease,box-shadow .25s ease,background .25s ease;
    backdrop-filter:blur(14px);
}

#siteNavbar.scrolled,
#siteNavbar.sticky{
    height:var(--navbar-scrolled);
    box-shadow:0 8px 28px rgba(15,23,42,.10);
}

#siteNavbar .container{
    height:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.navbar-brand{
    height:100%;
    display:flex;
    align-items:center;
    flex:0 0 auto;
}

.navbar-brand img{
    width:62px!important;
    height:62px!important;
    object-fit:contain;
    transition:var(--transition);
}

#siteNavbar.scrolled .navbar-brand img,
#siteNavbar.sticky .navbar-brand img{
    width:56px!important;
    height:56px!important;
}

/* Desktop menu */

.desktop-navigation{
    flex:1;
    justify-content:flex-end;
    gap:25px;
}

.main-nav{
    display:flex;
    align-items:center;
    gap:2px;
}

.main-nav .nav-link{
    position:relative;
    min-height:var(--navbar-height);
    display:inline-flex!important;
    align-items:center;
    padding:0 14px!important;
    color:#344054!important;
    font-size:13px;
    font-weight:600;
}

#siteNavbar.scrolled .main-nav .nav-link,
#siteNavbar.sticky .main-nav .nav-link{
    min-height:var(--navbar-scrolled);
}

.main-nav .nav-link::before{
    content:"";
    position:absolute;
    left:14px;
    right:14px;
    bottom:14px;
    height:2px;
    border-radius:3px;
    background:var(--secondary);
    transform:scaleX(0);
    transition:var(--transition);
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active{
    color:var(--primary)!important;
}

.main-nav .nav-link:hover::before,
.main-nav .nav-link.active::before{
    transform:scaleX(1);
}

/* Right side */

.nav-right{
    display:flex!important;
    align-items:center;
    gap:8px;
    margin-left:14px;
}

.icon-btn{
    width:40px!important;
    height:40px!important;
    display:inline-flex!important;
    align-items:center;
    justify-content:center;
    border:1px solid #E4E8F0;
    border-radius:9px;
    color:var(--primary);
    background:#fff;
}

.icon-btn:hover{
    background:var(--primary-soft);
    border-color:#CCD7F4;
    color:var(--primary);
}

.nav-right .btn-gold{
    min-width:140px;
}

/* Mega menu */

.mega-menu{
    width:650px!important;
    padding:14px!important;
    border:1px solid var(--border)!important;
    border-radius:14px!important;
    box-shadow:var(--shadow-lg)!important;
    background:#fff!important;
}

.mega-project{
    display:block;
    overflow:hidden;
    padding-bottom:15px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:14px;
    transition:var(--transition);
}

.mega-project:hover{
    transform:translateY(-3px);
    box-shadow:var(--shadow-sm);
    border-color:#C9D5F8;
}

.mega-project img{
    width:100%;
    height:125px;
    object-fit:cover;
}

.mega-project h5,
.mega-project p,
.mega-project .mega-badge,
.mega-project a{
    margin-left:15px;
    margin-right:15px;
}

.mega-project h5{
    margin-top:12px;
    margin-bottom:6px;
    font-size:17px;
}

.mega-project p{
    margin-bottom:10px;
    font-size:12px;
    line-height:1.6;
}

.mega-badge{
    display:inline-flex!important;
    margin-top:12px!important;
    padding:5px 9px;
    border-radius:999px;
    background:var(--primary-soft);
    color:var(--primary);
    font-size:10px;
    font-weight:700;
    letter-spacing:.5px;
    text-transform:uppercase;
}

.mega-badge.secondary{
    background:#FFF1F2;
    color:var(--secondary);
}

/* =========================================================
   10. MOBILE MENU
   ========================================================= */

.navbar-toggler{
    border:0!important;
    box-shadow:none!important;
    color:var(--heading)!important;
}

.navbar-toggler-icon-custom{
    width:42px;
    height:42px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border:1px solid var(--border);
    border-radius:10px;
    background:#fff;
}

.mobile-menu{
    width:min(88vw,360px)!important;
    border:0!important;
    box-shadow:-15px 0 50px rgba(15,23,42,.12)!important;
}

.mobile-menu .offcanvas-header{
    min-height:82px;
    padding:20px 24px;
    border-bottom:1px solid var(--border);
}

.mobile-logo img{
    width:58px!important;
    height:58px!important;
    object-fit:contain;
}

.mobile-nav{
    padding:12px 0 0!important;
    margin:0!important;
}

.mobile-nav li{
    border-bottom:1px solid #EEF1F5;
}

.mobile-nav a{
    min-height:48px;
    display:flex!important;
    align-items:center;
    gap:14px;
    padding:14px 4px!important;
    color:var(--heading)!important;
    font-size:14px;
    font-weight:600!important;
}

.mobile-nav a i{
    width:22px;
    color:var(--primary);
    font-size:15px;
}

.mobile-nav a:hover,
.mobile-nav a.active{
    color:var(--primary)!important;
}

.mobile-actions{
    display:grid;
    gap:10px;
    margin-top:16px;
    padding-top:20px;
    border-top:1px solid var(--border);
}

.mobile-btn{
    min-height:44px;
    display:flex;
    align-items:center;
    gap:12px;
    padding:12px 0;
    color:var(--heading);
    font-size:13px;
    font-weight:600;
}

.mobile-btn i{
    width:20px;
    color:var(--primary);
}

/* =========================================================
   11. HERO
   ========================================================= */

.hero{
    position:relative;
    min-height:820px;
    display:flex;
    align-items:center;
    padding:0!important;
    overflow:hidden;
    background:#061A4E;
}

.hero-video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:0;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(4,15,45,.90) 0%,
        rgba(4,15,45,.65) 48%,
        rgba(4,15,45,.40) 100%
    );
    z-index:1;
}

.hero .container{
    position:relative;
    z-index:2;
    padding-top:120px;
    padding-bottom:60px;
}

.hero-content{
    max-width:760px;
}

.hero-badge,
.hero-tag{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:9px 15px;
    border:1px solid rgba(255,255,255,.2);
    border-radius:999px;
    background:rgba(255,255,255,.13);
    color:#fff;
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:20px;
}

.hero h1{
    color:#fff;
    font-size:clamp(42px,5vw,70px);
    line-height:1.08;
    margin-bottom:20px;
}

.hero h1 span{
    display:block;
    color:#BFD1FF;
}

.hero p{
    max-width:720px;
    color:rgba(255,255,255,.83);
    font-size:17px;
}

.hero-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:28px;
}

.hero-card{
    padding:28px;
    background:rgba(255,255,255,.96);
    border:1px solid rgba(255,255,255,.4);
    border-radius:22px;
    box-shadow:var(--shadow-lg);
}

.hero-card-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    color:var(--primary);
    font-size:13px;
    font-weight:700;
}

.hero-card h3{
    margin:14px 0 10px;
    font-size:24px;
}

.hero-card p{
    font-size:13px;
}

.hero-list{
    display:grid;
    gap:10px;
    padding:0;
    margin:18px 0;
}

.hero-list li{
    display:flex;
    align-items:center;
    gap:10px;
    color:var(--heading);
    font-size:13px;
    font-weight:600;
}

.hero-list i{
    color:#16A34A;
}

.hero-card-footer{
    padding-top:18px;
    border-top:1px solid var(--border);
    color:var(--muted);
    font-size:12px;
}

.hero-stats{
    display:flex;
    gap:48px;
    margin-top:60px;
}

.hero-stat{
    display:flex;
    flex-direction:column;
}

.hero-stat h3{
    margin-bottom:4px;
    color:#fff;
    font-size:34px;
}

.hero-stat span{
    color:rgba(255,255,255,.70);
    font-size:14px;
}

.hero-scroll{
    position:absolute;
    left:50%;
    bottom:28px;
    width:24px;
    height:42px;
    border:1px solid rgba(255,255,255,.45);
    transform:translateX(-50%);
}

.hero-scroll::before{
    content:"";
    position:absolute;
    left:50%;
    top:8px;
    width:4px;
    height:8px;
    background:#fff;
    transform:translateX(-50%);
    animation:scroll 2s infinite;
}

@keyframes scroll{
    0%{opacity:0;transform:translate(-50%,0)}
    50%{opacity:1}
    100%{opacity:0;transform:translate(-50%,12px)}
}

/* =========================================================
   12. PAGE HEADER
   ========================================================= */

.page-header{
    padding:120px 0 70px!important;
    background:linear-gradient(135deg,#071F63 0%,#0A2F8F 60%,#124EB9 100%);
    color:#fff;
    overflow:hidden;
}

.page-header::before{
    content:"";
    position:absolute;
    width:360px;
    height:360px;
    right:-120px;
    top:-150px;
    border-radius:50%;
    background:rgba(255,255,255,.07);
}

.page-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,rgba(4,18,58,.25),transparent);
    pointer-events:none;
}

.page-content{
    position:relative;
    z-index:2;
    text-align:center;
}

.page-content h1{
    margin:10px 0 12px;
    color:#fff;
    font-size:clamp(36px,5vw,58px);
}

.page-content p{
    max-width:720px;
    margin:0 auto 18px;
    color:rgba(255,255,255,.82);
}

.page-content nav{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    color:rgba(255,255,255,.75);
    font-size:13px;
}

.page-content nav a{
    color:#fff;
    font-weight:600;
}

/* =========================================================
   13. STATS
   ========================================================= */
/*==========================================================
  STATS
==========================================================*/

.stats {
    position: relative;
    margin-top: -55px;
    z-index: 20;
    padding-bottom: 70px;
}


/*==========================================================
  STATS WRAPPER
==========================================================*/

.stats-wrapper {
    width: 100%;
    background: #ffffff;
    border: 1px solid var(--border, #e8ecf3);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 35, 75, 0.08);
}


/*==========================================================
  STATS CARD
==========================================================*/

.stats-card {
    min-height: 150px;
    height: 100%;

    display: flex;
    align-items: center;
    gap: 18px;

    padding: 26px 24px;

    background: #ffffff;

    border-right: 1px solid var(--border, #e8ecf3);

    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease;
}


/* Remove border from last card */

.stats .col-lg-3:last-child .stats-card {
    border-right: 0;
}


/*==========================================================
  ICON
==========================================================*/

.stats-icon {
    width: 52px;
    min-width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #eef3ff;

    color: var(--primary, #123b9b);

    font-size: 20px;

    transition:
        transform 0.25s ease,
        background-color 0.25s ease;
}


.stats-icon i {
    width: 20px;
    height: 20px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/*==========================================================
  CONTENT
==========================================================*/

.stats-content {
    min-width: 0;
}


.stats-content h2 {
    margin: 0 0 4px;

    color: var(--primary, #123b9b);

    font-family: "Montserrat", sans-serif;

    font-size: 30px;

    font-weight: 800;

    line-height: 1.1;
}


.stats-content p {
    margin: 0;

    color: #69758a;

    font-family: "Poppins", sans-serif;

    font-size: 13px;

    font-weight: 500;

    line-height: 1.4;
}


/*==========================================================
  HOVER
==========================================================*/

.stats-card:hover {
    background: #fbfcff;
}


.stats-card:hover .stats-icon {
    transform: translateY(-2px);

    background: var(--primary, #123b9b);

    color: #ffffff;
}


/*==========================================================
  TABLET
==========================================================*/

@media (max-width: 991.98px) {

    .stats {
        margin-top: -40px;
        padding-bottom: 55px;
    }


    .stats-card {
        min-height: 135px;
        padding: 22px 20px;
    }


    .stats .col-lg-3:nth-child(2) .stats-card {
        border-right: 0;
    }


    .stats .col-lg-3:nth-child(1) .stats-card,
    .stats .col-lg-3:nth-child(2) .stats-card {
        border-bottom: 1px solid var(--border, #e8ecf3);
    }


    .stats-content h2 {
        font-size: 26px;
    }

}


/*==========================================================
  MOBILE
==========================================================*/

@media (max-width: 575.98px) {

    .stats {
        margin-top: -25px;
        padding-bottom: 45px;
    }


    .stats-wrapper {
        border-radius: 14px;
    }


    .stats-card {
        min-height: 125px;

        gap: 12px;

        padding: 18px 14px;

        flex-direction: column;

        justify-content: center;

        text-align: center;

        border-right: 0;

        border-bottom: 1px solid var(--border, #e8ecf3);
    }


    .stats .col-6:nth-child(3) .stats-card,
    .stats .col-6:nth-child(4) .stats-card {
        border-bottom: 0;
    }


    .stats-icon {
        width: 44px;
        min-width: 44px;

        height: 44px;

        border-radius: 10px;

        font-size: 17px;
    }


    .stats-content h2 {
        font-size: 23px;
    }


    .stats-content p {
        font-size: 11px;
    }

}

/* =========================================================
   14. GENERIC ICONS
   ========================================================= */

.service-icon,
.feature-icon,
.stats-icon,
.highlight-icon,
.invest-icon,
.location-icon,
.search-icon,
.vm-icon,
.benefit-card>i,
.process-card>i,
.contact-card .icon,
.department-card .icon{
    width:56px!important;
    height:56px!important;
    min-width:56px;
    display:inline-flex!important;
    align-items:center!important;
    justify-content:center!important;
    border-radius:14px!important;
    background:var(--primary-soft)!important;
    color:var(--primary)!important;
    font-size:22px!important;
}

.service-icon i,
.feature-icon i,
.stats-icon i,
.highlight-icon i,
.invest-icon i,
.location-icon i,
.search-icon i,
.vm-icon i{
    color:var(--primary)!important;
    font-size:22px!important;
}

/* =========================================================
   15. SERVICES
   ========================================================= */

.services{
    background:var(--surface);
}

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

.service-card{
    padding:30px!important;
    background:#fff;
    border:1px solid var(--border);
    border-radius:18px;
    transition:var(--transition);
}

.service-card:hover{
    transform:translateY(-7px);
    border-color:#CFD9F5;
    box-shadow:var(--shadow-md);
}

.service-icon{
    margin-bottom:18px!important;
}

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

.service-card p{
    margin-bottom:20px;
    font-size:14px;
    line-height:1.75;
}

.service-card a{
    color:var(--primary);
    font-size:13px;
    font-weight:600;
}

/* =========================================================
   16. PROJECTS
   ========================================================= */

.projects,
.featured-projects{
    background:#fff;
}

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

.project-row{
    align-items:stretch;
}

.project-col{
    display:flex;
}

.project-card{
    width:100%;
    height:100%;
    min-height:100%;
    display:flex;
    flex-direction:column;
    overflow:hidden!important;
    background:#fff!important;
    border:1px solid var(--border)!important;
    border-radius:18px!important;
    box-shadow:var(--shadow-sm)!important;
    transition:var(--transition)!important;
}

.project-card:hover{
    transform:translateY(-6px);
    border-color:#D4DDF5!important;
    box-shadow:var(--shadow-md)!important;
}

.project-image{
    position:relative;
    display:block;
    width:100%;
    aspect-ratio:16/10;
    overflow:hidden;
    background:#E9EEF6;
}

.project-image img{
    width:100%!important;
    height:100%!important;
    object-fit:cover!important;
    object-position:center;
    transition:transform .45s ease!important;
}

.project-card:hover .project-image img{
    transform:scale(1.045)!important;
}

.project-image::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(6,22,58,.18),transparent 55%);
    pointer-events:none;
}

.project-content{
    flex:1 1 auto;
    display:flex;
    flex-direction:column;
    padding:22px!important;
}

.project-topline{
    min-height:27px;
    margin-bottom:8px;
}

.project-badge{
    display:inline-flex!important;
    align-items:center;
    justify-content:center;
    min-height:27px;
    padding:5px 10px!important;
    border-radius:999px!important;
    background:var(--primary-soft)!important;
    color:var(--primary)!important;
    font-size:10px!important;
    line-height:1!important;
    font-weight:700!important;
    letter-spacing:.35px;
    text-transform:uppercase;
}

.project-content h3{
    margin:0 0 9px!important;
    font-size:20px!important;
    line-height:1.3!important;
}

.project-content h4{
    margin-bottom:10px;
}

.project-content>p{
    margin:0 0 17px!important;
    color:var(--text)!important;
    font-size:13px!important;
    line-height:1.7!important;
}

.project-category{
    display:inline-block;
    margin-bottom:12px;
    color:var(--primary);
    font-size:11px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
}

.project-info{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin:0!important;
    padding:14px 0 0!important;
    border-top:1px solid var(--border)!important;
    color:#5D687B;
    font-size:11px;
}

.project-info span{
    display:inline-flex;
    align-items:center;
    gap:7px;
    padding:7px 9px;
    border-radius:8px;
    background:#F7F9FC;
}

.project-info i{
    width:16px;
    color:var(--secondary);
    text-align:center;
}

.project-btn{
    align-self:flex-start;
    min-width:140px;
    margin-top:20px;
    background:var(--primary);
    border-color:var(--primary);
    color:#fff!important;
}

.project-btn:hover{
    background:var(--primary-dark);
    border-color:var(--primary-dark);
}

.project-link{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:var(--primary);
    font-size:13px;
    font-weight:600;
}

.projects-more{
    margin-top:34px;
    text-align:center;
}

/* =========================================================
   17. PROJECT DETAIL
   ========================================================= */

.project-hero{
    min-height:680px;
    display:flex;
    align-items:flex-end;
    padding:0!important;
    overflow:hidden;
    background:#071A4D;
}

.project-banner{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.project-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(4,16,49,.92),
        rgba(4,16,49,.48),
        rgba(4,16,49,.28)
    );
}

.project-hero .container{
    position:relative;
    z-index:2;
    padding-top:150px;
    padding-bottom:80px;
}

.project-label{
    display:inline-flex;
    padding:8px 12px;
    border:1px solid rgba(255,255,255,.2);
    border-radius:999px;
    background:rgba(255,255,255,.12);
    color:#fff;
    font-size:11px;
    font-weight:800;
    letter-spacing:1.5px;
}

.project-hero h1{
    margin:18px 0;
    color:#fff;
    font-size:clamp(40px,5vw,64px);
}

.project-hero p{
    max-width:800px;
    color:rgba(255,255,255,.82);
}

.project-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:25px;
}

.overview-card{
    padding:26px!important;
    background:#fff;
    border:1px solid var(--border);
    border-radius:18px;
    box-shadow:var(--shadow-sm);
}

.overview-card ul{
    margin:0;
    padding:0;
}

.overview-card li{
    display:flex;
    flex-direction:column;
    gap:4px;
    padding:14px 0;
    border-bottom:1px solid var(--border);
}

.overview-card li:last-child{
    border-bottom:0;
}

.overview-card strong{
    color:var(--primary);
    font-size:12px;
    letter-spacing:.7px;
    text-transform:uppercase;
}

.overview-card span{
    color:var(--heading);
    font-size:14px;
    font-weight:600;
}

.highlight-card{
    height:100%;
    padding:28px!important;
    text-align:center;
    background:#fff;
    border:1px solid var(--border);
    border-radius:18px;
    box-shadow:var(--shadow-sm);
}

/* =========================================================
   18. LOCATION + MAP
   ========================================================= */

.project-location{
    background:#F8FAFC;
}

.project-location .row{
    align-items:stretch!important;
}

.project-location .location-content{
    height:100%;
    display:flex;
    flex-direction:column;
    gap:12px;
}

.project-location .location-item{
    flex:1;
    min-height:110px;
    display:flex;
    align-items:center;
    gap:16px;
    padding:18px;
    background:#fff;
    border:1px solid var(--border)!important;
    border-radius:16px!important;
    box-shadow:var(--shadow-xs);
    transition:var(--transition);
}

.project-location .location-item:hover{
    transform:translateY(-3px);
    border-color:#D5DEF0!important;
    box-shadow:var(--shadow-sm);
}

.project-location .location-icon{
    flex:0 0 48px;
    width:48px!important;
    height:48px!important;
    min-width:48px;
    margin:0!important;
    border-radius:13px!important;
}

.project-location .location-item h5{
    margin:0 0 5px;
    font-size:15px;
}

.project-location .location-item p{
    margin:0;
    font-size:12px;
    line-height:1.65;
}

.project-location .map-wrapper{
    width:100%;
    height:100%;
    min-height:460px;
    overflow:hidden;
    border:1px solid #E1E6EF;
    border-radius:18px;
    background:#E9EEF5;
    box-shadow:var(--shadow-sm);
}

.project-location .map-wrapper iframe{
    width:100%;
    height:100%;
    min-height:460px;
    display:block;
    border:0;
}

/* =========================================================
   19. ABOUT
   ========================================================= */

.about{
    background:#fff;
}

.about-grid{
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:80px;
    align-items:center;
}

.about-image{
    position:relative;
}

.about-image img{
    height:560px;
    object-fit:cover;
    border:1px solid var(--border);
    border-radius:18px;
}

.about-badge{
    position:absolute;
    left:30px;
    bottom:30px;
    padding:18px 22px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:12px;
    box-shadow:var(--shadow-sm);
}

.about-badge h3{
    margin-bottom:4px;
    color:var(--primary);
}

.about-content{
    max-width:560px;
}

.about-content h2{
    margin-bottom:20px;
}

.about-content p{
    margin-bottom:18px;
}

.about-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin:35px 0;
}

.about-list li{
    display:flex;
    align-items:center;
    gap:12px;
    color:var(--heading);
    font-size:14px;
}

.about-list i{
    color:var(--primary);
}

/* =========================================================
   20. GALLERY
   ========================================================= */

.gallery-filter{
    display:flex!important;
    justify-content:center;
    flex-wrap:wrap;
    gap:10px!important;
    margin-bottom:35px!important;
}

.gallery-filter button{
    padding:10px 20px!important;
    border:1px solid var(--border)!important;
    border-radius:999px!important;
    background:#F3F6FF!important;
    color:#4A5873!important;
    font-size:12px!important;
    font-weight:700!important;
}

.gallery-filter button.active,
.gallery-filter button:hover{
    background:var(--primary)!important;
    border-color:var(--primary)!important;
    color:#fff!important;
}

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:18px!important;
    padding:0!important;
}

.gallery-item>a{
    position:relative;
    display:block;
    height:100%;
    overflow:hidden;
    border-radius:18px;
}

.gallery-item img{
    height:320px!important;
    object-fit:cover;
    transition:transform .5s ease!important;
}

.gallery-hover{
    position:absolute!important;
    inset:0!important;
    display:flex!important;
    align-items:center;
    justify-content:center;
    background:linear-gradient(180deg,rgba(10,47,143,.08),rgba(10,47,143,.72))!important;
    opacity:0;
    transition:var(--transition)!important;
}

.gallery-hover i{
    width:56px;
    height:56px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#fff;
    color:var(--primary);
}

.gallery-item:hover img{
    transform:scale(1.06);
}

.gallery-item:hover .gallery-hover{
    opacity:1;
}

/* =========================================================
   21. CONTACT + DEPARTMENTS
   ========================================================= */

.contact-card,
.department-card{
    height:100%;
    padding:28px!important;
    background:#fff;
    border:1px solid var(--border);
    border-radius:18px;
    box-shadow:var(--shadow-xs);
    transition:var(--transition);
}

.contact-card:hover,
.department-card:hover{
    transform:translateY(-6px);
    box-shadow:var(--shadow-md);
}

.contact-card .icon,
.department-card .icon{
    margin-bottom:18px;
}

.contact-card h4,
.department-card h4{
    margin-bottom:10px;
    font-size:19px;
}

.contact-info{
    display:grid;
    gap:18px;
}

.office-info{
    padding:28px;
    background:var(--surface);
    border-radius:20px;
}

/* =========================================================
   22. FORMS
   ========================================================= */

.form-box,
.reservation-info,
.contact-form-box{
    padding:32px!important;
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    box-shadow:var(--shadow-sm);
}

.form-box .section-title{
    margin:0 0 28px;
    text-align:left;
}

.form-box .section-title h2{
    font-size:30px;
}

.form-label{
    color:var(--heading);
    font-size:13px;
    font-weight:600;
}

.form-control,
.form-select{
    min-height:52px;
    padding:12px 15px!important;
    border:1px solid #DCE2EB!important;
    border-radius:10px!important;
    color:var(--heading)!important;
    background:#fff!important;
    box-shadow:none!important;
}

.form-control:focus,
.form-select:focus{
    border-color:#6F8DE8!important;
    box-shadow:0 0 0 4px rgba(10,47,143,.08)!important;
}

textarea.form-control{
    min-height:150px;
    resize:vertical;
}

.reservation-info{
    background:linear-gradient(180deg,#F8FAFF,#fff);
}

.reservation-info h3{
    margin-bottom:20px;
    font-size:24px;
}

.reservation-info ul{
    display:grid;
    gap:14px;
    padding:0;
    margin:0;
}

.reservation-info li{
    display:flex;
    gap:10px;
    font-size:13px;
    line-height:1.6;
}

.reservation-info i{
    margin-top:4px;
    color:#16A34A;
}

/* =========================================================
   23. FAQ
   ========================================================= */

.accordion-item{
    margin-bottom:12px;
    overflow:hidden;
    border:1px solid var(--border)!important;
    border-radius:14px!important;
    box-shadow:var(--shadow-xs);
}

.accordion-button{
    padding:20px!important;
    color:var(--heading);
    background:#fff!important;
    box-shadow:none!important;
    font-weight:600;
}

.accordion-button:not(.collapsed){
    color:#fff;
    background:var(--primary)!important;
}

.accordion-body{
    padding:20px!important;
    color:var(--text);
    line-height:1.8;
}

/* =========================================================
   24. CTA
   ========================================================= */

.cta-wrapper,
.cta-box{
    padding:48px!important;
    border-radius:24px!important;
    background:linear-gradient(135deg,#0A2F8F,#145CC7)!important;
    color:#fff;
    box-shadow:var(--shadow-md);
}

.cta-wrapper h2,
.cta-box h2{
    color:#fff;
}

.cta-wrapper p,
.cta-box p{
    color:rgba(255,255,255,.8);
}

.cta-tag{
    color:#CFE0FF;
    font-size:11px;
    font-weight:800;
    letter-spacing:2px;
}

.cta-buttons{
    display:flex;
    justify-content:flex-end;
    gap:10px;
    flex-wrap:wrap;
}

/* =========================================================
   25. FOOTER
   ========================================================= */

.site-footer{
    padding:76px 0 0!important;
    background:#071633;
    color:#AEBBD2;
}

.site-footer h4{
    margin-bottom:22px;
    color:#fff;
    font-size:17px;
}

.footer-brand{
    display:inline-block;
    margin-bottom:18px;
}

.footer-logo{
    width:72px!important;
    height:72px!important;
    object-fit:contain;
    padding:5px;
    background:#fff;
    border-radius:50%;
}

.footer-about{
    max-width:390px;
    color:#AEBBD2;
    font-size:13px;
    line-height:1.9;
}

.footer-social{
    display:flex;
    gap:9px;
    margin-top:20px;
}

.footer-social a{
    width:38px;
    height:38px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,255,255,.12);
    border-radius:10px;
    color:#fff;
}

.footer-social a:hover{
    background:var(--secondary);
    border-color:var(--secondary);
    transform:translateY(-3px);
}

.footer-links,
.footer-contact{
    display:grid;
    gap:10px;
    padding:0;
    margin:0;
}

.footer-links li,
.footer-links a,
.footer-contact li{
    color:#AEBBD2;
    font-size:13px;
    line-height:1.7;
}

.footer-links a:hover{
    padding-left:4px;
    color:#fff;
}

.footer-contact{
    gap:14px;
}

.footer-contact li{
    display:flex;
    align-items:flex-start;
    gap:10px;
}

.footer-contact i{
    width:18px;
    margin-top:4px;
    color:#FF6972;
}

.footer-contact a:hover{
    color:#fff;
}

.footer-bottom{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:20px;
    margin-top:50px;
    padding:20px 0;
    border-top:1px solid rgba(255,255,255,.1);
    font-size:12px;
}

.footer-bottom p{
    margin:0;
    color:#8492AC;
}

/* =========================================================
   26. PRELOADER / PROGRESS / BACK TO TOP
   ========================================================= */

#preloader{
    position:fixed;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    z-index:3000;
    transition:opacity .35s,visibility .35s;
}

#preloader.hide{
    opacity:0;
    visibility:hidden;
}

.loader-content{
    text-align:center;
}

.loader-logo{
    width:85px!important;
    height:85px!important;
    object-fit:contain;
    margin:0 auto 20px;
}

.loader-spinner,
.preloader-spinner{
    width:48px;
    height:48px;
    margin:auto;
    border:4px solid #E7ECF5;
    border-top-color:var(--primary);
    border-radius:50%;
    animation:spin .8s linear infinite;
}

@keyframes spin{
    to{transform:rotate(360deg)}
}

#progress-bar{
    position:fixed;
    top:0;
    left:0;
    width:0;
    height:3px;
    background:var(--secondary);
    z-index:4000;
}

#backToTop,
.back-to-top{
    position:fixed;
    right:22px;
    bottom:22px;
    width:46px;
    height:46px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:0;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    box-shadow:var(--shadow-md);
    opacity:0;
    visibility:hidden;
    transform:translateY(12px);
    transition:var(--transition);
    z-index:1020;
}

#backToTop.show,
.back-to-top.show{
    opacity:1;
    visibility:visible;
    transform:none;
}

#backToTop:hover,
.back-to-top:hover{
    background:var(--secondary);
    transform:translateY(-3px);
}

/* =========================================================
   27. ERROR / PRIVACY / TERMS / SEARCH
   ========================================================= */

.error-page{
    padding-top:120px!important;
}

.error-number{
    display:block;
    color:var(--primary);
    font-family:"Montserrat",sans-serif;
    font-size:clamp(100px,18vw,190px);
    font-weight:800;
    line-height:.9;
    opacity:.12;
}

.error-content h1{
    margin-top:-45px;
}

.error-buttons{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:12px;
    margin-top:25px;
}

.quick-card{
    height:100%;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    padding:28px;
    text-align:center;
    border:1px solid var(--border);
    border-radius:18px;
    background:#fff;
    color:var(--heading);
    box-shadow:var(--shadow-xs);
}

.quick-card i{
    margin-bottom:12px;
    color:var(--primary);
    font-size:28px;
}

.quick-card:hover{
    color:var(--primary);
    transform:translateY(-5px);
}

.terms-box,
.privacy-box{
    padding:40px!important;
    background:#fff;
    border:1px solid var(--border);
    border-radius:18px;
    box-shadow:var(--shadow-xs);
}

.terms-box h2,
.privacy-box h2{
    margin-top:28px;
    font-size:24px;
}

.terms-box li,
.privacy-box li{
    margin-bottom:8px;
    color:var(--text);
}

.last-update{
    color:var(--muted);
    font-size:13px;
}

/* =========================================================
   28. UTILITIES
   ========================================================= */

.bg-light{background:var(--surface)!important}
.text-primary{color:var(--primary)!important}
.text-secondary{color:var(--secondary)!important}
.radius{border-radius:var(--radius-md)}
.shadow{box-shadow:var(--shadow-sm)}

.fade-up{
    opacity:0;
    transform:translateY(10px);
    animation:fadeUp .6s ease forwards;
}

@keyframes fadeUp{
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* Google Translate */
.goog-te-banner-frame.skiptranslate{
    display:none!important;
}

.goog-logo-link,
.goog-te-gadget span{
    display:none!important;
}

.goog-te-gadget{
    font-size:0!important;
}

body{
    top:0!important;
}

/* =========================================================
   29. RESPONSIVE
   ========================================================= */

@media(max-width:1199px){

    :root{
        --navbar-height:72px;
    }

    body{
        padding-top:var(--topbar-height);
    }

    #siteNavbar{
        top:var(--topbar-height)!important;
        height:72px;
    }

    #siteNavbar.scrolled,
    #siteNavbar.sticky{
        height:68px;
    }

    .desktop-navigation{
        display:none!important;
    }

    .navbar-toggler{
        display:inline-flex!important;
        align-items:center;
        justify-content:center;
    }

    .main-nav .nav-link{
        min-height:72px;
    }

    .top-contact{
        gap:14px;
    }

    .stats-wrapper{
        grid-template-columns:repeat(2,1fr);
    }

    .projects-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .about-grid{
        grid-template-columns:1fr;
        gap:50px;
    }

    .about-image img{
        height:420px;
    }

    .hero{
        min-height:760px;
    }

    .hero .container{
        padding-top:100px;
    }

    .hero-card{
        margin-top:35px;
    }

    .project-location .map-wrapper,
    .project-location .map-wrapper iframe{
        min-height:400px;
    }
}

@media(max-width:991px){

    h1{font-size:42px}
    h2{font-size:34px}

    section{
        padding:70px 0;
    }

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

    .hero-stats{
        gap:24px;
        flex-wrap:wrap;
    }

    .featured-image img{
        height:400px;
    }

    .cta-buttons{
        justify-content:flex-start;
        margin-top:20px;
    }
}

@media(max-width:767px){

    :root{
        --topbar-height:36px;
        --navbar-height:68px;
    }

    body{
        padding-top:calc(var(--topbar-height) + var(--navbar-height));
    }

    h1{font-size:34px}
    h2{font-size:28px}

    section,
    .section-padding{
        padding:60px 0!important;
    }

    .container{
        width:min(100% - 28px,720px);
    }

    /* Mobile topbar stays fixed */
    .top-bar{
        height:36px;
        min-height:36px;
    }

    .top-bar .container{
        height:36px;
    }

    .top-contact{
        gap:10px;
        overflow:hidden;
    }

    .top-contact a,
    .top-contact>span{
        font-size:10px;
    }

    .top-contact a:nth-child(2),
    .top-contact>span{
        display:none;
    }

    .top-right{
        margin-left:auto;
    }

    .language-btn{
        font-size:10px;
    }

    /* Mobile navbar remains below topbar */
    #siteNavbar{
        top:36px!important;
        height:68px;
    }

    #siteNavbar.scrolled,
    #siteNavbar.sticky{
        height:64px;
    }

    .navbar-brand img{
        width:52px!important;
        height:52px!important;
    }

    .navbar-toggler-icon-custom{
        width:40px;
        height:40px;
    }

    /* Hero */
    .hero{
        min-height:auto;
        padding:110px 0 70px!important;
    }

    .hero .container{
        padding-top:20px;
        padding-bottom:0;
    }

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

    .hero p{
        font-size:15px;
    }

    .hero-buttons{
        display:grid;
        width:100%;
    }

    .hero-buttons .btn{
        width:100%;
    }

    .hero-card{
        padding:22px;
    }

    .hero-stats{
        display:grid;
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }

    /* Stats */
    .stats-wrapper{
        grid-template-columns:1fr;
    }

    /* Services / Projects */
    .services-grid,
    .projects-grid{
        grid-template-columns:1fr;
    }

    .project-content{
        padding:20px!important;
    }

    .project-content h3{
        font-size:19px!important;
    }

    .project-content>p{
        font-size:12.5px!important;
    }

    .project-image{
        aspect-ratio:16/10;
    }

    .project-btn{
        width:100%;
    }

    .projects-more .btn{
        width:100%;
    }

    /* About */
    .about-list{
        grid-template-columns:1fr;
    }

    .about-image img{
        height:360px;
    }

    /* Page header */
    .page-header{
        padding:110px 0 58px!important;
    }

    .page-content h1{
        font-size:36px;
    }

    /* Gallery */
    .gallery-item img{
        height:250px!important;
    }

    /* Map */
    .project-location .location-item{
        min-height:auto;
        padding:16px;
    }

    .project-location .map-wrapper,
    .project-location .map-wrapper iframe{
        min-height:330px;
    }

    /* Project detail */
    .project-hero{
        min-height:650px;
    }

    .project-hero .container{
        padding-top:130px;
        padding-bottom:60px;
    }

    .project-buttons{
        display:grid;
    }

    .project-buttons .btn{
        width:100%;
    }

    .featured-image img{
        height:300px;
    }

    /* Forms */
    .form-box,
    .reservation-info,
    .contact-form-box,
    .terms-box,
    .privacy-box{
        padding:22px!important;
    }

    /* CTA */
    .cta-wrapper,
    .cta-box{
        padding:28px!important;
    }

    .cta-buttons{
        display:grid;
        width:100%;
    }

    .cta-buttons .btn{
        width:100%;
    }

    /* Footer */
    .footer-bottom{
        flex-direction:column;
    }

    /* Back top */
    #backToTop,
    .back-to-top{
        right:15px;
        bottom:15px;
    }
}

@media(max-width:575px){

    .container{
        width:min(100% - 24px,720px);
    }

    .mobile-menu{
        width:88vw!important;
    }

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

    .hero-stats{
        gap:14px;
    }

    .stats-card{
        padding:20px!important;
    }
}

/* =========================================================
   30. REDUCED MOTION
   ========================================================= */

@media(prefers-reduced-motion:reduce){

    *,
    *::before,
    *::after{
        scroll-behavior:auto!important;
        transition:none!important;
        animation:none!important;
    }
}

/* =========================================================
   END OF MAIN STYLESHEET
   ========================================================= */

   /*==========================================================
MASTER PLAN
==========================================================*/

.master-plan {
    background: #f7f9fc;
}

.master-plan-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.master-plan-buttons .btn {
    min-width: 160px;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 600;
}

.master-plan-viewer {
    width: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e1e5ec;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(15, 35, 70, .08);
}

.master-plan-viewer-header {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    background: #fff;
    border-bottom: 1px solid #e8ebf0;
}

.master-plan-file {
    display: flex;
    align-items: center;
    gap: 12px;
}

.master-plan-file-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: #fff0f0;
    color: #e21b23;
    font-size: 18px;
}

.master-plan-file strong {
    display: block;
    color: #17213a;
    font-size: 14px;
}

.master-plan-file span {
    display: block;
    margin-top: 2px;
    color: #7a8392;
    font-size: 12px;
}

.master-plan-expand {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e1e5ec;
    border-radius: 8px;
    color: #123d9c;
    text-decoration: none;
}

.master-plan-expand:hover {
    background: #123d9c;
    color: #fff;
}

.master-plan-frame {
    width: 100%;
    height: 760px;
    background: #edf0f4;
}

.master-plan-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.master-plan-empty {
    max-width: 650px;
    margin: auto;
    padding: 55px 30px;
    text-align: center;
    background: #fff;
    border: 1px solid #e5e8ee;
    border-radius: 16px;
}

.master-plan-empty-icon {
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #f1f3f6;
    color: #8992a2;
    font-size: 25px;
}

.master-plan-empty h3 {
    margin-bottom: 8px;
    color: #17213a;
    font-size: 21px;
}

.master-plan-empty p {
    margin: 0 0 8px;
    color: #6f7786;
    font-size: 14px;
}

.master-plan-empty small {
    color: #9aa2af;
    font-size: 12px;
}

@media (max-width: 767.98px) {

    .master-plan-buttons {
        flex-direction: column;
    }

    .master-plan-buttons .btn {
        width: 100%;
    }

    .master-plan-frame {
        height: 520px;
    }

    .master-plan-viewer-header {
        padding: 10px 12px;
    }

}